Skip to main content

Setting Up NoClick MCP

NoClick provides an MCP (Model Context Protocol) server that lets you interact with your workflows, databases, and applications directly from AI coding assistants like Claude Code or Cursor.

What is MCP?

MCP (Model Context Protocol) is an open standard that allows AI assistants to securely connect to external tools and data sources. With NoClick MCP, your AI assistant can:
  • Create and manage workflow automations
  • Query and modify your databases
  • Execute workflows and retrieve results
  • Manage your NoClick applications

Setup for Claude Code

1

Open Claude Code Settings

In Claude Code, open your MCP server configuration file. You can find this at:
  • macOS/Linux: ~/.config/claude-code/settings.json
  • Windows: %APPDATA%\claude-code\settings.json
Or run the command: claude mcp add
2

Add NoClick MCP Server

Add the following configuration to your MCP servers:
{
  "mcpServers": {
    "noclick": {
      "url": "https://api.noclick.com/mcp"
    }
  }
}
3

Authenticate

When you first use a NoClick MCP tool, you’ll be prompted to authenticate:
  1. Claude Code will open a browser window
  2. Click “Continue with NoClick” on the consent page
  3. Log in with your NoClick account (or create one)
  4. Approve the connection
Your authentication is saved automatically for future sessions.
4

Start Using NoClick

You’re all set! Try asking Claude Code:
  • “List my NoClick workflows”
  • “Create a new workflow that reads from Google Sheets”
  • “Show me my database tables”

Setup for Cursor

1

Open Cursor Settings

Go to Cursor SettingsFeaturesMCP Servers
2

Add NoClick Server

Click “Add MCP Server” and enter:
  • Name: noclick
  • URL: https://api.noclick.com/mcp
3

Authenticate

When prompted, authenticate with your NoClick account in the browser window that opens.

Configuration Options

Custom Server URL

If you’re running a self-hosted NoClick instance, you can point to your own server:
{
  "mcpServers": {
    "noclick": {
      "url": "https://your-noclick-instance.com/mcp"
    }
  }
}

Troubleshooting

  • Make sure you have a NoClick account at noclick.com
  • Check that pop-ups aren’t blocked in your browser
  • Try clearing your browser cookies for noclick.com and re-authenticating
  • Verify your internet connection
  • Check if https://api.noclick.com is accessible from your network
  • If using a corporate network, you may need to configure proxy settings
  • Restart your AI assistant after adding the MCP configuration
  • Verify the JSON syntax in your settings file is valid
  • Check the MCP server logs for any errors

Next Steps