Stats
Actions
Tags
From kraken-cli
Provides access to Kraken cryptocurrency exchange for market data and paper trading via APIs. Runs locally as stdio subprocess. Requires KRAKEN_API_KEY and KRAKEN_API_SECRET.
Copy this JSON into your .mcp.json to enable this server
Add to your .mcp.json:
{
"mcpServers": {
"kraken": {
"command": "kraken",
"args": [
"mcp",
"-s",
"market,paper"
],
"env": {
"KRAKEN_API_KEY": "${user_config.api_key}",
"KRAKEN_API_SECRET": "${user_config.api_secret}"
}
}
}
}Replace placeholder values for: KRAKEN_API_KEY, KRAKEN_API_SECRET
Review these signals before enabling this server
This MCP server needs API keys or credentials. Configure them in your environment before use.
Server configuration and connection parameters
krakenCommand-line arguments passed to the server process
Environment variables set when the server starts
KRAKEN_API_KEY=${user_config.api_key}KRAKEN_API_SECRET=${user_config.api_secret}Sensitive values you must provide — never committed to source control
npx claudepluginhub krakenfx/kraken-cli