Notion Chakra MCP

by thestumonkey

233 downloads
Not rated
GitHub

About

fastmcp implementation of notion-mcp server with support for extensible custom objects and functions

Details

Author
thestumonkey
Downloads
233
Categories
Knowledge Base

- List and query Notion databases
- Create and update Notion pages
- Search Notion content
- Manage blocks and children
- Support for both stdio and SSE transports

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name Notion Chakra MCP
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Configure Notion Chakra MCP as an MCP server in your client’s mcp.json (e.g., ~/.cursor/mcp.json), using a Docker container. Set the NOTION_API_KEY environment variable and optionally choose stdio or sse transport. Alternatively, use Docker Compose or direct Docker commands. A data directory must exist for persistence.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "notion chakra mcp": {
            "notion-chakra-mcp": {
                "command": "docker",
                "args": [
                    "run",
                    "--rm",
                    "-i",
                    "-v",
                    "/path/to/notion-chakra-mcp/data:/app/data",
                    "-e",
                    "TRANSPORT",
                    "-e",
                    "NOTION_API_KEY",
                    "-e",
                    "HOST",
                    "-e",
                    "PORT",
                    "-e",
                    "PYTHONPATH=/app/src",
                    "notion-chakra-mcp"
                ],
                "env": {
                    "TRANSPORT": "stdio",
                    "NOTION_API_KEY": "your_notion_api_key",
                    "HOST": "0.0.0.0",
                    "PORT": "8050"
                }
            }
        }
    }
}

McpServers

{
    "notion-chakra-mcp": {
        "command": "docker",
        "args": [
            "run",
            "--rm",
            "-i",
            "-v",
            "/path/to/notion-chakra-mcp/data:/app/data",
            "-e",
            "TRANSPORT",
            "-e",
            "NOTION_API_KEY",
            "-e",
            "HOST",
            "-e",
            "PORT",
            "-e",
            "PYTHONPATH=/app/src",
            "notion-chakra-mcp"
        ],
        "env": {
            "TRANSPORT": "stdio",
            "NOTION_API_KEY": "your_notion_api_key",
            "HOST": "0.0.0.0",
            "PORT": "8050"
        }
    }
}

Notion Chakra MCP

This is a Notion integration service that provides MCP (Message Control Protocol) endpoints for interacting with Notion databases and pages.

Features

- List and query Notion databases - Create and update pages - Search Notion content - Manage blocks and children - Support for both stdio and SSE transports

Setup Options

1. MCP Client Configuration (Recommended)

Add the following to your ~/.cursor/mcp.json:
{
  "mcpServers": {
    "notion-chakra-mcp": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "-v",
        "/path/to/notion-chakra-mcp/data:/app/data",
        "-e",
        "TRANSPORT",
        "-e",
        "NOTION_API_KEY",
        "-e",
        "HOST",
        "-e",
        "PORT",
        "-e",
        "PYTHONPATH=/app/src",
        "notion-chakra-mcp"
      ],
      "env": {
        "TRANSPORT": "stdio",
        "NOTION_API_KEY": "your_notion_api_key",
        "HOST": "0.0.0.0",
        "PORT": "8050"
      }
    }
  }
}

Make sure to:
1. Replace /path/to/notion-chakra-mcp with your actual project path
2. Set your NOTION_API_KEY value
3. Create a data directory in your project root: mkdir -p data

2. Docker Compose Setup

For development or standalone usage, you can use Docker Compose:

```bash

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.