Overview
The Jmpy.me MCP server is hosted athttps://jmpy.me/mcp and follows the Model Context Protocol (MCP) specification. You can connect any MCP-compatible client to interact with your Jmpy.me account.
Prerequisites
- An active Jmpy.me account
- MCP API key from API Key Settings
- An MCP-compatible client (Claude Desktop, n8n, etc.)
Getting Your MCP API Key
1
Sign In
Log in to your Jmpy.me account at jmpy.me/login
2
Access Developer Settings
Navigate to Dashboard → API Keys or go to jmpy.me/dashboard/api-keys
3
Create MCP API Key
Click Create New API Key and select MCP permissions
4
Copy Your Key
Copy the API key starting with
jmpy_ - you’ll need it for configurationConfiguration
Claude Desktop
Add the Jmpy.me MCP server to yourclaude_desktop_config.json:
n8n Integration
To use Jmpy.me with n8n’s MCP node:1
Add MCP Node
Add an MCP node to your n8n workflow
2
Configure Connection
Set the MCP Server URL to:
https://jmpy.me/mcp3
Add Authentication
Add header
x-mcp-key with your Jmpy.me MCP API keyDirect HTTP API
You can also interact with the MCP server directly via HTTP:MCP Endpoints
| Endpoint | Method | Description |
|---|---|---|
/mcp | POST | Main JSON-RPC 2.0 protocol endpoint |
/mcp | GET | Server identification and info |
/mcp/tools | GET | List available tools |
/mcp/resources | GET | List available resources |
/mcp/prompts | GET | List available prompts |
/mcp/health | GET | Server health check |
Authentication
The MCP server uses thex-mcp-key header for authentication:
MCP API keys have specific rate limits based on your subscription plan. Check your API Key Settings for current limits.
Verification
After configuration, verify the connection:1. Check Server Status
2. List Available Tools
3. Test a Simple Command
Troubleshooting
401 Unauthorized Error
401 Unauthorized Error
403 Forbidden Error
403 Forbidden Error
- Your plan may not include MCP access
- Check your plan limits in Developer Settings
- Upgrade to Pro or Enterprise for MCP access
Rate Limit Exceeded
Rate Limit Exceeded
- MCP operations are rate-limited per your plan
- Wait for the rate limit window to reset
- Consider upgrading for higher limits
Connection Timeout
Connection Timeout
- Verify network connectivity to jmpy.me
- Check if your firewall allows HTTPS connections
- Try the health endpoint:
https://jmpy.me/mcp/health