my-notion-mcp-server

my-notion-mcp-server

0

The MCP server with Bun is a project using `bun.sh`, which is a fast, all-in-one JavaScript runtime. This project includes scripts for installing, running, and debugging an MCP server.

mcp-server-with-bun

This is an mcp server using bun.sh.

Scripts

To install dependencies:

bun install

To run:

bun server

Inpsect/debug mcp server:

bun debug

This project was created using bun init in bun v1.2.5. Bun is a fast all-in-one JavaScript runtime.

Connecting to Claude Desktop

Make sure to include this config in your claude_desktop_config.json file.

{
  "mcpServers": {
    "mcp-server-playground": {
      "command": "PATH-to-bun",
      "args": [
        "PATH-to-index.ts"
      ],
      "env": {
        "NOTION_TOKEN": "YOUR_NOTION_TOKEN"
      }
    },
  },
}