Référence de l'API
MCP Server (Claude, Cursor)
Connect Claude Desktop, Cursor, and other MCP hosts to your Cryptohopper.AI account so an AI assistant can build projects for you.
Dernière mise à jour :
MCP Server
The Cryptohopper.AI MCP server lets AI assistants that speak the Model Context Protocol — such as Claude Desktop and Cursor — build, deploy, and manage your projects on your behalf. It wraps the same Public API as a set of tools the assistant can call.
It is open source and distributed from github.com/cryptohopper/cryptohopperai-mcp.
Requirements
- Node.js 18+ (the server runs via
npx) - An account API key — requires an active Hero subscription. Create one from Account → API Keys (see Managing API Keys).
Configure Claude Desktop or Cursor
Add the server to your MCP host configuration, passing your API key as CRYPTOHOPPER_API_KEY:
{
"mcpServers": {
"cryptohopper": {
"command": "npx",
"args": ["-y", "github:cryptohopper/cryptohopperai-mcp"],
"env": {
"CRYPTOHOPPER_API_KEY": "flp_your_api_key_here"
}
}
}
}Restart your MCP host. The assistant can now list your projects, create and refine them from a prompt, trigger deploys, check build status, and manage project secrets — all scoped to your account by the API key.
Security
The API key grants full programmatic access to your account, so treat it like a password: store it only in your MCP host’s config, never commit it to version control, and revoke it from Account → API Keysif it is ever exposed. Review what an assistant proposes before letting it deploy — especially for bots that connect to real funds.