Skip to content
VS Code

better notion mcp for VS Code

io.github.n24q02m/better-notion-mcp

Markdown-first MCP server for Notion API with 8 composite tools and 39 actions.

client:VS Code transport:stdio runtime:npm

Install better notion mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "notion-token",
      "description": "NOTION_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "better-notion-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@n24q02m/better-notion-mcp"
      ],
      "env": {
        "NOTION_TOKEN": "${input:notion-token}"
      }
    }
  }
}

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

better notion mcp in other clients