Skip to content
VS Code

verso for VS Code

io.github.nvlang/verso

MCP server to read Verso-generated documentation sites (e.g., the Lean Language Reference).

client:VS Code transport:stdio runtime:pypi

Install verso in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "verso-mcp-sites",
      "description": "VERSO_MCP_SITES",
      "password": true
    }
  ],
  "servers": {
    "verso": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "verso-mcp"
      ],
      "env": {
        "VERSO_MCP_SITES": "${input:verso-mcp-sites}"
      }
    }
  }
}

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

verso in other clients