trackmcp
Back to directory
illgatesmusic

click-funnels-mcp-shared

View on GitHub

Nonfunctioning ClickFunnels MCP for debug

0 stars TypeScriptDeveloper Kits Updated Mar 19, 2025

Documentation

ClickFunnels MCP Framework

This is a Model Context Protocol (MCP) server for integrating ClickFunnels with Claude Desktop.

Setup Instructions

1. Clone this repository:

bash
git clone https://github.com/illGATESmusic/click-funnels-mcp-shared.git
cd click-funnels-mcp-shared

2. Install dependencies:

bash
npm install

3. Update the `.env` file with your ClickFunnels API credentials:

code
PORT=3002
CLICKFUNNELS_API_BASE=https://your-domain.myclickfunnels.com/api/v2
CLICKFUNNELS_WORKSPACE_ID=123456
CLICKFUNNELS_API_TOKEN=YOUR_API_TOKEN_HERE
CLICKFUNNELS_WORKSPACE_SUBDOMAIN=your-subdomain
NODE_ENV=production

4. Build the project:

bash
npm run build

5. Update your Claude Desktop config:

Edit your Claude Desktop config file (located at `~/Library/Application Support/Claude/claude_desktop_config.json` on Mac or appropriate location for your OS) to include this server:

json
{
  "mcpServers": {
    "clickfunnels-mcp-framework": {
      "command": "node",
      "args": ["/absolute/path/to/click-funnels-mcp-shared/dist/index.js"],
      "env": {
        "PORT": "3002",
        "CLICKFUNNELS_API_BASE": "https://your-domain.myclickfunnels.com/api/v2",
        "CLICKFUNNELS_WORKSPACE_ID": "123456",
        "CLICKFUNNELS_API_TOKEN": "YOUR_API_TOKEN_HERE",
        "CLICKFUNNELS_WORKSPACE_SUBDOMAIN": "your-subdomain",
        "NODE_ENV": "production",
        "MCP_LOG_LEVEL": "debug",
        "MCP_LOG_TO_CONSOLE": "true",
        "MCP_LOG_TO_FILE": "true",
        "MCP_LOG_DIR": "/absolute/path/to/click-funnels-mcp-shared/logs",
        "NODE_OPTIONS": "--max-old-space-size=256"
      },
      "cwd": "/absolute/path/to/click-funnels-mcp-shared"
    }
  },
  "mcpServerConnections": [
    {
      "url": "http://localhost:3002/sse"
    }
  ]
}

6. Restart Claude Desktop to apply the changes.

Troubleshooting

If you encounter any issues, check the logs at:

  • `/Users/username/Library/Logs/Claude/mcp-server-clickfunnels-mcp-framework.log`

Common issues:

1. "No such file or directory" error:

    2. Server disconnects immediately:

      3. API connection errors:

        If all else fails, run the `TROUBLESHOOTING.md` script to collect diagnostic information.

        Available Tools

        This MCP server provides the following tools:

        • `debug` - Provides debugging information about the current environment
        • `list_funnels` - Lists all funnels from your ClickFunnels account
        • `get_funnel` - Gets a specific funnel by ID
        • `list_contacts` - Lists contacts from your ClickFunnels account

        Contributing

        If you encounter any issues or have suggestions, please open an issue or submit a pull request.

        License

        MIT

        Frequently asked questions

        What is click-funnels-mcp-shared?

        click-funnels-mcp-shared is Nonfunctioning ClickFunnels MCP for debug

        How do I install click-funnels-mcp-shared?

        Open the GitHub repository and follow its README. Most MCP servers are added to your client's MCP config, then called by your agent.

        Is click-funnels-mcp-shared open source?

        Yes — it is hosted on GitHub at https://github.com/illgatesmusic/click-funnels-mcp-shared.

        Related MCP tools

        Run your own MCP server? See who uses it and what to fix.

        Measure it with TrackMCP