Skip to content
VS Code

easy notion for VS Code

io.github.misterwigglesworth/easy-notion

Markdown-first Notion MCP server. ~6-7x fewer response tokens vs official Notion MCP. 43 tools.

client:VS Code transport:stdio runtime:npm

Install easy notion in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "notion-token",
      "description": "NOTION_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "notion-root-page-id",
      "description": "NOTION_ROOT_PAGE_ID",
      "password": true
    }
  ],
  "servers": {
    "easy-notion": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "easy-notion-mcp"
      ],
      "env": {
        "NOTION_TOKEN": "${input:notion-token}",
        "NOTION_ROOT_PAGE_ID": "${input:notion-root-page-id}"
      }
    }
  }
}

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

easy notion in other clients