• Instructions to Ask a Question

    Click on the "Ask a Question" button and select the application for which you would like to ask questions.

    We have 5 different products namely - Pabbly Connect, Pabbly Subscription Billing, Pabbly Email Marketing, Pabbly Form Builder, Pabbly Email Verification.

    The turnaround time is 24 hrs (Business Hours - 10.00 AM to 6.00 PM IST, Except Saturday and Sunday). So your kind patience will be highly appreciated!

    🚀🚀Exclusive Discount Offer

    Just in case you're looking for any ongoing offers on Pabbly, you can check the one-time offers listed below. You just need to pay once and use the application forever -
     

    🔥 Pabbly Connect One Time Plan for $249 (🏆Lifetime Access) -  View offer 

    🔥 Pabbly Subscription Billing One Time Plan for $249 (🏆Lifetime Access) - View offer

Pabbly Connect MCP Server (Beta)

Status
Not open for further replies.
Model Context Protocol (MCP) server in Pabbly Connect allows you to seamlessly execute workflow actions using AI clients like Claude. This integration enables AI assistants to directly interact with your workflow steps, whether it's adding leads to a CRM, sending messages, drafting emails, or fetching data for analysis.

Setting Up an MCP Tool

Step 1: Add Your Action to MCP Server
  • Navigate to your desired action in the Pabbly Connect workflow
  • Click the dropdown menu for the action and select "Add to MCP server"
  • A popup window will appear to configure your MCP tool
1744632564911.png


Step 2: Configure Your MCP Tool

In the "Add MCP Tool" popup window:
  • Enter a MCP Server Tool Name (Required)
    • Must start with alphabets.
    • Cannot contain spaces or special characters.
    • Maximum 64 characters.
    • Use kebab-case format (e.g., add-lead-to-crm or send-email-notification).
  • Enter a MCP Tool Description (Required)
    • Provide a clear, concise explanation of what the tool does.
    • Must contain a minimum of 50 character.s
    • Be specific about the tool's functionality and purpose.
    • Click the Add button to create your MCP tool.

      1744632551778.png


Step 3: Access Your MCP Server URL

After adding one or more tools:

1744632542230.png



Connecting Claude Desktop to Pabbly MCP Server


Step 1: Prerequisite
  • Make sure that node.js is installed on the computer.
  • Check the node installation by running the following command -
  • Bash:
    node -v
    
    //or
    
    node --version

Step 2: Update Claude Desktop Configuration
  • Open Claude Desktop application.
  • Navigate to the Developer Settings.
  • Open the configuration file for editing.
  • Add the following JSON configuration:
JavaScript:
{
  "mcpServers": {
    "pabblymcpserver": {
      "command": "npx",
      "args": [
        "pabbly-mcp-remote",
        "YOUR_MCP_SERVER_URL"
      ]
    }
  }
}


Step 3: Activate the Connection
  • Save the configuration file.
  • Restart the Claude Desktop application.
  • Your Pabbly Connect tools should now appear in the Claude Desktop client.

Using MCP Tools with Claude

Once connected, you can -
  • Interact with your tools using natural language.
  • Provide necessary data as prompted by Claude.
  • Execute workflow actions directly through the Claude interface.
Important
  • Security: Your MCP Server URL functions like a password - keep it secure.
  • URL Validity: Generating a new API token will invalidate your current MCP Server URL.
  • Tool Naming: Choose clear, descriptive names for your tools to improve usability.
  • Tool Description: Write detailed descriptions to help Claude understand each tool's purpose.
  • Data Format: Ensure you provide data in the format expected by your workflow actions.
Troubleshooting

If your tools are not appearing in Claude Desktop -
  • Verify your MCP Server URL is correct.
  • Ensure the configuration file is properly formatted.
  • Check that Claude Desktop has been restarted after configuration.
  • Confirm your tools have been correctly added to the MCP server.
Bonus Tips

You can connect with multiple servers at the same time including multiple MCP server providers.
Example Claude Desktop Configuration -
JavaScript:
{
  "mcpServers": {
    "pabblymcpserver_1": {
      "command": "npx",
      "args": [
        "pabbly-mcp-remote",
        "YOUR_MCP_SERVER_URL_1"
      ]
    },
    "pabblymcpserver_2": {
      "command": "npx",
      "args": [
        "pabbly-mcp-remote",
        "YOUR_MCP_SERVER_URL_2"
      ]
    },
    "pabblymcpserver_3": {
      "command": "npx",
      "args": [
        "pabbly-mcp-remote",
        "YOUR_MCP_SERVER_URL_3"
      ]
    }
  }
}

 
Last edited by a moderator:
Status
Not open for further replies.
Top