Skip to content
VS Code

ari mcp py for VS Code

io.github.antmanbuilds/ari-mcp-py

Python MCP server: fair-price checks, leaderboards, Ed25519 receipt verification for x402/MPP.

client:VS Code transport:stdio runtime:pypi

Install ari mcp py in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "ari-api-base-url",
      "description": "ARI_API_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "ari-mcp-py": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "ari-mcp-py"
      ],
      "env": {
        "ARI_API_BASE_URL": "${input:ari-api-base-url}"
      }
    }
  }
}

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

ari mcp py in other clients