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
Sign In
Log in to your Jmpy.me account at app.jmpy.me/login
Access Developer Settings
Navigate to Dashboard → API Keys or go to app.jmpy.me/dashboard/api-keys
Configuration
The Jmpy.me MCP server supports multiple connection methods to ensure compatibility with all AI assistants and automation tools. Choose the configuration that matches your client.1. AI Assistants (Using JSON Config)
Many modern AI assistants and IDE extensions use aconfig.json file for MCP server management.
Pro Tip: If your client gives an error like
serverURL or command must be specified, ensure you are using the serverURL property name instead of url.2. Automation Tools (n8n, Make, Zapier)
For workflow automation, use the standard HTTP or SSE transport provided by the tool.n8n Integration
- Add an MCP Node
- Set URL to
https://jmpy.me/mcp - Add header
x-mcp-key
Custom Webhooks
- Use
POST https://jmpy.me/mcp - Send JSON-RPC 2.0 payload
- Header:
x-mcp-key
3. Connection Property Reference
If you are building your own client or using a custom app, refer to these property mappings to handle different SDK implementations:| Requirement | Property Name | Value / Endpoint |
|---|---|---|
| SSE Connection URL | serverURL or url | https://jmpy.me/mcp/sse |
| HTTP API Endpoint | baseUrl or path | https://jmpy.me/mcp |
| Transport Type | type | sse or stdio (via wrapper) |
| Authentication Header | headers | x-mcp-key: jmpy_... |
| Env Variable | env | JMPY_API_KEY |
4. Direct HTTP API (Manual Exploration)
You can interact with the MCP server directly via raw HTTP requests for testing: 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
Available Tools
View the complete list of MCP tools
Resources
Learn about MCP resources