Skip to content
VS Code

python version for VS Code

io.github.manoharanrajesh/python-version

An MCP server that provides [describe what your server does]

client:VS Code transport:stdio runtime:pypi

Install python version in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "your-api-key",
      "description": "YOUR_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "python-version": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "transactions-mcp"
      ],
      "env": {
        "YOUR_API_KEY": "${input:your-api-key}"
      }
    }
  }
}

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

python version in other clients