Skip to content
VS Code

mne docs for VS Code

io.github.weiyongxu/mne-docs

MCP server for MNE-Python documentation, source code, GitHub issues, and forum

client:VS Code transport:stdio runtime:npm

Install mne docs in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "mne-github-token",
      "description": "MNE_GITHUB_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mne-transport",
      "description": "MNE_TRANSPORT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mne-python-path",
      "description": "MNE_PYTHON_PATH",
      "password": true
    }
  ],
  "servers": {
    "mne-docs": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mne-docs-mcp"
      ],
      "env": {
        "MNE_GITHUB_TOKEN": "${input:mne-github-token}",
        "MNE_TRANSPORT": "${input:mne-transport}",
        "MNE_PYTHON_PATH": "${input:mne-python-path}"
      }
    }
  }
}

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

mne docs in other clients