Skip to content
VS Code

cryptyx mcp server for VS Code

io.github.cryptyx-ai/cryptyx-mcp-server

Institutional crypto intelligence for agents. 30 tools: signals, backtests, regime, triggers.

client:VS Code transport:stdio runtime:npm

Install cryptyx mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "cryptyx-api-key",
      "description": "CRYPTYX_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cryptyx-api-url",
      "description": "CRYPTYX_API_URL",
      "password": true
    }
  ],
  "servers": {
    "cryptyx-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@cryptyx/mcp-server"
      ],
      "env": {
        "CRYPTYX_API_KEY": "${input:cryptyx-api-key}",
        "CRYPTYX_API_URL": "${input:cryptyx-api-url}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

cryptyx mcp server in other clients