mcp-server-with-bun logo

mcp-server-with-bun

by jeremytandjung

This is an mcp server built using Bun.sh. It's designed to connect with Claude Desktop and requires configuration with a Notion token.

View on GitHub

Last updated: N/A

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"
      }
    },
  },
}