Notion Query MCP Server

Notion Query MCP 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 advanced property-based filtering and database schema discovery beyond the capabilities of standard connectors.

Category
Visit Server

README

notion-query

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

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured