Skip to content
VS Code

actually for VS Code

io.github.sofiia7/actually

Matches news to Polymarket markets and returns the market's probability. Optional capped trading.

client:VS Code transport:stdio runtime:npm

Install actually in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "polymarket-private-key",
      "description": "POLYMARKET_PRIVATE_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "actually-max-order-usd",
      "description": "ACTUALLY_MAX_ORDER_USD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "actually-daily-limit-usd",
      "description": "ACTUALLY_DAILY_LIMIT_USD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "actually-enable-redeem",
      "description": "ACTUALLY_ENABLE_REDEEM",
      "password": true
    },
    {
      "type": "promptString",
      "id": "actually-search-fallback",
      "description": "ACTUALLY_SEARCH_FALLBACK",
      "password": true
    },
    {
      "type": "promptString",
      "id": "actually-spend-state-path",
      "description": "ACTUALLY_SPEND_STATE_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "actually-worker-url",
      "description": "ACTUALLY_WORKER_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "actually-worker-secret",
      "description": "ACTUALLY_WORKER_SECRET",
      "password": true
    }
  ],
  "servers": {
    "actually": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "actually-mcp-server"
      ],
      "env": {
        "POLYMARKET_PRIVATE_KEY": "${input:polymarket-private-key}",
        "ACTUALLY_MAX_ORDER_USD": "${input:actually-max-order-usd}",
        "ACTUALLY_DAILY_LIMIT_USD": "${input:actually-daily-limit-usd}",
        "ACTUALLY_ENABLE_REDEEM": "${input:actually-enable-redeem}",
        "ACTUALLY_SEARCH_FALLBACK": "${input:actually-search-fallback}",
        "ACTUALLY_SPEND_STATE_PATH": "${input:actually-spend-state-path}",
        "ACTUALLY_WORKER_URL": "${input:actually-worker-url}",
        "ACTUALLY_WORKER_SECRET": "${input:actually-worker-secret}"
      }
    }
  }
}

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

actually in other clients