drio
Open app

systemprompt-mcp-notion

Source

This an Model Context Protocol (MCP) server that integrates Notion into your AI workflows. This server enables seamless access to Notion through MCP, allowing AI agents to interact with pages, databases, and comments.

Catalog onlyCatalog onlySTDIO

Overview

SystemPrompt MCP Notion is a high-performance Model Context Protocol (MCP) server that integrates Notion into AI workflows, allowing AI agents to interact with Notion pages, databases, and comments seamlessly.

To use the server, you need to install it via npm, configure your API keys in a .env file, and set up your MCP configuration to include the Notion server.

  • Comprehensive content management with rich text formatting and search capabilities. - Developer-friendly with extensive test coverage, TypeScript support, and detailed logging.
  1. Automating content updates in Notion.
  2. Integrating Notion with AI agents for enhanced productivity.
  3. Managing databases and pages programmatically.

Add to your AI client

Use these steps to connect systemprompt-mcp-notion in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "systemprompt-mcp-notion-ejb503": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-systemprompt-mcp-notion-ejb503"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "systemprompt-mcp-notion-ejb503": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-systemprompt-mcp-notion-ejb503"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "systemprompt-mcp-notion-ejb503": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-systemprompt-mcp-notion-ejb503"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "systemprompt-mcp-notion-ejb503": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-systemprompt-mcp-notion-ejb503"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "systemprompt-mcp-notion-ejb503": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-systemprompt-mcp-notion-ejb503"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "systemprompt-mcp-notion-ejb503": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-systemprompt-mcp-notion-ejb503"
      ]
    }
  }
}