notion-proxy
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@notion-proxyRead this Notion page: https://www.notion.so/My-Page-abc123"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
notion-proxy
An MCP server that proxies Notion's internal API using your browser cookies. This lets Claude Code (or any MCP client) read and write Notion pages where you're a guest — something the official Notion API and Notion MCP integration cannot do.
Why?
The official Notion API only works with pages in workspaces where you have an integration installed. If you're a guest on someone else's workspace, you can't:
Use the Notion API (no integration access)
Use the official Notion MCP plugin (requires OAuth to a workspace you don't own)
This proxy solves that by using your browser session cookies directly, giving you the same access you have in the browser.
Related MCP server: notion-mcp-server
Features
read-page — Read page content as markdown (with block IDs for editing)
read-comments — Read all discussions/comments with authors and timestamps
add-comment — Create new discussions or reply to existing ones
edit-block — Update any text block's content
add-block — Append new blocks to a page
delete-block — Remove blocks from a page
add-image — Add an image (external URL or local file upload)
create-page — Create a child page
Setup
1. Install dependencies
npm install2. Cookie authentication
The server automatically reads cookies from your Firefox browser's cookie store. Just be logged into Notion in Firefox — no manual cookie export needed.
Cookies are cached for 60 seconds and re-read from Firefox's cookies.sqlite on each refresh, so session renewals are picked up automatically.
Fallback: If Firefox isn't available, create a .env file:
NOTION_COOKIE=<full cookie header string from browser devtools>3. Register as a global MCP server
Add to ~/.claude.json under mcpServers:
{
"mcpServers": {
"notion-proxy": {
"command": "node",
"args": ["/path/to/notion-proxy/server.mjs"],
"type": "stdio"
}
}
}Restart Claude Code. The notion-proxy tools will be available in every project.
Usage
Once configured, ask Claude Code to interact with any Notion page by URL:
Read this page: https://www.notion.so/My-Page-abc123...Block IDs are included in read-page output (e.g. [block:uuid]), so you can reference specific blocks for editing or commenting.
Limitations
macOS + Firefox only for auto cookie refresh (reads
~/Library/Application Support/Firefox/Profiles/*/cookies.sqlite)Cookies expire when your Firefox session expires — just log in again
Write access depends on your actual Notion permissions (guest with read-only can only read)
Platform support
Auto cookie refresh currently only works on macOS. On other platforms, use the .env fallback.
Firefox stores cookies.sqlite at different paths per OS:
OS | Path |
macOS |
|
Linux |
|
Windows |
|
Adding cross-platform support is a small change to findFirefoxProfile() in server.mjs — just detect process.platform and use the appropriate path.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceEnables interaction with Notion workspaces through the Notion API. Provides tools to search, read, create, and update Notion pages and databases with real-time synchronization.2,228MIT
- AlicenseCqualityDmaintenanceEnables natural language interaction with Notion workspace, including search, page/database management, markdown conversion, and productivity shortcuts.27MIT
- AlicenseCqualityCmaintenanceEnables AI assistants to export Notion pages as markdown using Notion's unofficial API.191MIT
- AlicenseAqualityAmaintenanceUnofficial Notion MCP server built on Notion's private API (token_v2 cookie). Gives LLM agents full read/write access to the entire workspace — no integration token and no per-page sharing.11164MIT
Related MCP Connectors
MCP-native open-source Notion alternative: read & write pages, databases and kanban boards.
Browser MCP for logged-in tasks. Uses your Chrome — credentials stay local. Zero-token replay.
Interact with your HackMD notes and teams seamlessly. Manage your notes, view reading history, and…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/bibstha/notion-proxy'
If you have feedback or need assistance with the MCP directory API, please join our Discord server