Skip to content
VS Code

Warm for VS Code

io.github.jasonstockman/warmio

Context and automation MCP server for Warm financial data and approved write operations.

client:VS Code transport:stdio runtime:npm

Install Warm in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "warm-context-api-key",
      "description": "WARM_CONTEXT_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "warm-context-api-key-file",
      "description": "WARM_CONTEXT_API_KEY_FILE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "warm-automation-api-key",
      "description": "WARM_AUTOMATION_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "warm-automation-api-key-file",
      "description": "WARM_AUTOMATION_API_KEY_FILE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "warm-config-dir",
      "description": "WARM_CONFIG_DIR",
      "password": true
    },
    {
      "type": "promptString",
      "id": "warm-api-url",
      "description": "WARM_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "warm-api-timeout-ms",
      "description": "WARM_API_TIMEOUT_MS",
      "password": true
    }
  ],
  "servers": {
    "warmio": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@warmio/mcp"
      ],
      "env": {
        "WARM_CONTEXT_API_KEY": "${input:warm-context-api-key}",
        "WARM_CONTEXT_API_KEY_FILE": "${input:warm-context-api-key-file}",
        "WARM_AUTOMATION_API_KEY": "${input:warm-automation-api-key}",
        "WARM_AUTOMATION_API_KEY_FILE": "${input:warm-automation-api-key-file}",
        "WARM_CONFIG_DIR": "${input:warm-config-dir}",
        "WARM_API_URL": "${input:warm-api-url}",
        "WARM_API_TIMEOUT_MS": "${input:warm-api-timeout-ms}"
      }
    }
  }
}

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

Warm in other clients