Pages, databases, blocks, search via Notion's official MCP
Use with AI AssistantsMCP
Connect Claude, Cursor, or any MCP-compatible client — then call tools directly
① Add This MCP Server
Paste into your AI client config — then all its tools are available instantly.
{
"mcpServers": {
"notion-workspace": {
"url": "https://mcp.aerostack.dev/s/aerostack/mcp-notion",
"headers": {
"Authorization": "Bearer YOUR_AEROSTACK_TOKEN"
}
}
}
}Replace YOUR_AEROSTACK_TOKEN with your API token from the dashboard.
② Call a Tool
Ask your AI assistant to call a specific tool, or send raw JSON-RPC:
Natural Language Prompt
“Use the _ping tool to verify notion credentials by calling a lightweight read endpoint. used internally by aerostack to validate credentials”
Using a Workspace?
Add this MCP to your Workspace — your team shares one token, secrets are stored securely, and every AI agent in the workspace can call it without per-user setup.
Official proxy MCP — Pages, databases, blocks, search via Notion's official MCP
Live endpoint: https://mcp.aerostack.dev/s/aerostack/mcp-notion
Notion Workspace is a proxy MCP server that forwards requests directly to the official Notion MCP endpoint at https://mcp.notion.com/mcp. All tools are maintained by Notion — new tools are available immediately without any Aerostack update.
Type: Proxy (hosted by Notion)
Auth: Bearer token via NOTION_API_KEY
Notion's MCP endpoint requires an OAuth access token. Internal integration tokens (ntn_...) will NOT work — you'll get a 401 "Invalid token format" error.
https://yoursite.com/callback)https://api.notion.com/v1/oauth/authorize?client_id=YOUR_CLIENT_ID&response_type=code&owner=user&redirect_uri=YOUR_REDIRECT_URI
code parametercurl -X POST https://api.notion.com/v1/oauth/token \
-H "Content-Type: application/json" \
-u "YOUR_CLIENT_ID:YOUR_CLIENT_SECRET" \
-d '{"grant_type": "authorization_code", "code": "YOUR_CODE", "redirect_uri": "YOUR_REDIRECT_URI"}'
access_token from the response — this is your NOTION_API_KEYSee: developers.notion.com/docs/authorization
| Variable | Required | Description | How to Get |
|---|---|---|---|
NOTION_API_KEY | Yes | Notion OAuth Access Token | See "How to Get a Notion OAuth Token" above |
NOTION_API_KEY — stored encrypted, injected automaticallyOnce added, every AI agent in your workspace can use Notion tools automatically.
"List all my Notion items and summarize the most recent ones"
"Find anything related to [keyword] in Notion"
"Create a new entry with the following details: ..."
curl -X POST https://mcp.aerostack.dev/s/aerostack/mcp-notion \
-H 'Content-Type: application/json' \
-H 'X-Mcp-Secret-NOTION-API-KEY: your-oauth-token' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_pages","arguments":{"query":"test"}}}'
MIT
Live Endpoint
https://mcp.aerostack.dev/s/aerostack/mcp-notion
Sub-50ms globally · Zero cold start
@aerostack
Pre-built functions for the most common MCP tool patterns. Clone, extend, and deploy.
by @aerostack
Turn your Airtable bases into an AI-queryable database — create, update, search, and analyze records with natural language.
by @aerostack
Query collections, insert documents, and run aggregation pipelines on your MongoDB Atlas database — AI-native document database access.
by @aerostack
Get, set, and manage keys, hashes, and lists in your Upstash Redis database — AI-native key-value store access.
by @aerostack
Query Postgres tables, manage storage buckets, and interact with your Supabase backend — AI-native database access.
by @aerostack
Execute SQL queries, manage tables, and interact with your Turso (LibSQL) edge database — AI-native SQLite at the edge.
by @aerostack
Query, put, update, delete, and scan items in Amazon DynamoDB tables — AI-native NoSQL database access for any agent.
Yes. The Notion Workspace MCP includes a create_page tool that lets Claude create pages in your Notion Workspace account from a plain-English prompt. You can also update and delete pages — no Notion Workspace UI needed.
Yes. The Notion Workspace MCP has search and list tools for databases. Ask Claude to find databases by any criteria and it runs the Notion Workspace API query for you, returning results directly in the conversation.
Yes. The Notion Workspace MCP uses the open Model Context Protocol standard, so it works in Claude, Cursor, Windsurf, and any other MCP-compatible AI tool. All 9 Notion Workspace tools are available everywhere you connect it — install once on Aerostack.
Yes. The Notion Workspace MCP includes tools to update pages in your Notion Workspace account. Tell Claude what to change in plain English — it reads the current state and applies the update via the Notion Workspace API.