Skip to content
VS Code

AIMarket Oracle Gateway for VS Code

io.github.alexar76/aimarket-oracle-gateway

Stdio MCP: 17 verifiable AIMarket oracles, 35 pay-per-call tools for AI agents.

client:VS Code transport:stdio runtime:pypi

Install AIMarket Oracle Gateway in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "aimarket-hub-url",
      "description": "AIMARKET_HUB_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "aimarket-oracle-url",
      "description": "AIMARKET_ORACLE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "aimarket-max-per-call-usd",
      "description": "AIMARKET_MAX_PER_CALL_USD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "aimarket-max-spend-usd",
      "description": "AIMARKET_MAX_SPEND_USD",
      "password": true
    }
  ],
  "servers": {
    "aimarket-oracle-gateway": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "aimarket-oracle-gateway"
      ],
      "env": {
        "AIMARKET_HUB_URL": "${input:aimarket-hub-url}",
        "AIMARKET_ORACLE_URL": "${input:aimarket-oracle-url}",
        "AIMARKET_MAX_PER_CALL_USD": "${input:aimarket-max-per-call-usd}",
        "AIMARKET_MAX_SPEND_USD": "${input:aimarket-max-spend-usd}"
      }
    }
  }
}

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

AIMarket Oracle Gateway in other clients