Command Palette

Search for a command to run...

UnylyUnyly
Весь каталог

Notion Query Server

БесплатноНе проверен

Provides structured, SQL-style query access to Notion databases, allowing Claude to filter, sort, and update pages through the Notion REST API. It enables advan

GitHubEmbed

Описание

Provides structured, SQL-style query access to Notion databases, allowing Claude to filter, sort, and update pages through the Notion REST API. It enables advanced property-based filtering and database schema discovery beyond the capabilities of standard connectors.

README

MCP server for structured Notion queries.

The problem

Claude's built-in Notion connector only does semantic search, returning at most 10 fuzzy results. It cannot filter by property values (status, date, module, type), sort results, or paginate through large databases. If you want Claude to answer "show me all overdue tasks where Status is In Progress", the default connector can't do it.

How it works

Wraps the Notion REST API and exposes four MCP tools:

  • query_database -- filter, sort, and paginate any database (WHERE + ORDER BY + LIMIT)
  • get_page -- fetch a single page with all its properties
  • update_page -- modify page properties (status, dates, text, etc.)
  • list_databases -- discover accessible databases and their schemas

Tech stack

  • TypeScript on Cloudflare Workers
  • MCP SDK (@modelcontextprotocol/sdk) with SSE and Streamable HTTP transports
  • Zod for input validation
  • Notion REST API (internal integration)

Setup

1. Create a Notion integration

  1. Go to notion.so/profile/integrations
  2. Click New integration, name it whatever you want
  3. Enable Read content and Update content
  4. Copy the Internal Integration Secret (starts with ntn_)

2. Share your databases

Open each Notion database you want Claude to query. Click ... > Connections > Connect to and select your integration.

3. Deploy to Cloudflare

git clone <this-repo>
cd notion-query-mcp
npm install

npx wrangler login
npx wrangler secret put NOTION_API_KEY
# Paste your ntn_XXXXX token when prompted

npx wrangler secret put MCP_AUTH_TOKEN
# Paste a strong random token (e.g. openssl rand -hex 32)

npm run deploy

This gives you a URL like https://notion-query-mcp.<your-subdomain>.workers.dev.

4. Connect to Claude

All requests require a bearer token. Set your MCP_AUTH_TOKEN as a Cloudflare secret (step 3), then configure your MCP client to send it.

Claude Desktop / claude.ai config:

{
  "mcpServers": {
    "notion-query": {
      "url": "https://notion-query-mcp.your-subdomain.workers.dev/sse",
      "headers": {
        "Authorization": "Bearer YOUR_MCP_AUTH_TOKEN"
      }
    }
  }
}

Claude Code config (~/.claude.json or project .mcp.json):

{
  "mcpServers": {
    "notion-query": {
      "type": "sse",
      "url": "https://notion-query-mcp.your-subdomain.workers.dev/sse",
      "headers": {
        "Authorization": "Bearer YOUR_MCP_AUTH_TOKEN"
      }
    }
  }
}

Replace YOUR_MCP_AUTH_TOKEN with the same token you set via wrangler secret put.

Example queries

Once connected, try in a Claude conversation:

  • "List all my Notion databases"
  • "Show me all tasks where Status is 'Not started', sorted by due date"
  • "Mark task X as Done"
  • "What's overdue in my coursework database?"

Development

npm run dev          # local dev server
npm run type-check   # TypeScript validation
npm run deploy       # deploy to Cloudflare

Security

  • Bearer token auth on all endpoints (npx wrangler secret put MCP_AUTH_TOKEN)
  • CORS locked to https://claude.ai
  • Rate limited: 60 req/min via Cloudflare Rate Limiting
  • All IDs validated as UUIDs; filters validated against a structured Zod schema; property updates capped at 50 fields
  • Notion API errors logged server-side only; clients get generic error codes

Cost

Free. Cloudflare Workers free tier (100k req/day) + Notion API (free for internal integrations).

License

MIT

from github.com/advitrocks9/notion-query

Установка Notion Query Server

У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.

▸ github.com/advitrocks9/notion-query

FAQ

Notion Query Server MCP бесплатный?

Да, Notion Query Server MCP бесплатный — установка в пару кликов через Unyly без оплаты.

Нужен ли API-ключ для Notion Query Server?

Нет, Notion Query Server работает без API-ключей и переменных окружения.

Notion Query Server — hosted или self-hosted?

Доступен hosted-вариант: Unyly запускает сервер в облаке, локальная установка не обязательна.

Как установить Notion Query Server в Claude Desktop, Claude Code или Cursor?

Открой Notion Query Server на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.

Похожие MCP

wenb1n-dev/SmartDB_MCP

A universal database MCP server supporting simultaneous connections to multiple databases. It provides tools for database operations, health analysis, SQL optim

wenb1n-devавтор: wenb1n-dev

Postgres Server

This server enables interaction with PostgreSQL databases through the Model Context Protocol, optimized for the AWS Bedrock AgentCore Runtime. It provides tools

madhurprashавтор: madhurprash

Postgres

Query your database in natural language

Anthropicавтор: Anthropic

PostgreSQL

Read-only database access with schema inspection.

modelcontextprotocolавтор: modelcontextprotocol

Redis

Interact with Redis key-value stores.

modelcontextprotocolавтор: modelcontextprotocol

SQLite

Database interaction and business intelligence capabilities.

modelcontextprotocolавтор: modelcontextprotocol

mxcp

Open-source framework for building enterprise-grade MCP servers using just YAML, SQL, and Python, with built-in auth, monitoring, ETL and policy enforcement.

raw-labsавтор: raw-labs

tadas-github/a2asearch-mcp

MCP server to search 4,800+ MCP servers, AI agents, CLI tools and agent skills. Install: npx -y a2asearch-mcp. Ask Claude: "Find MCP servers for database access

tadas-githubавтор: tadas-github

julien040/anyquery

Query more than 40 apps with one binary using SQL. It can also connect to your PostgreSQL, MySQL, or SQLite compatible database. Local-first and private by desi

julien040автор: julien040

drakonkat/wizzy-mcp-tmdb

A MCP server for The Movie Database API that enables AI assistants to search and retrieve movie, TV show, and person information.

drakonkatавтор: drakonkat

Compare Notion Query Server with

Не уверен что выбрать?

Найди свой стек за 60 секунд

Автор?

Embed-бейдж для README

Похожее

Все в категории data