Command Palette

Search for a command to run...

UnylyUnyly
Browse all

Notion Proxy

FreeNot checked

Enables reading and writing Notion pages as a guest using browser cookies, bypassing the official API's limitations.

GitHubEmbed

About

Enables reading and writing Notion pages as a guest using browser cookies, bypassing the official API's limitations.

README

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.

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 install

2. 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 ~/Library/Application Support/Firefox/Profiles/*/cookies.sqlite
Linux ~/.mozilla/firefox/*/cookies.sqlite
Windows %APPDATA%\Mozilla\Firefox\Profiles\*\cookies.sqlite

Adding cross-platform support is a small change to findFirefoxProfile() in server.mjs — just detect process.platform and use the appropriate path.

from github.com/bibstha/notion-proxy

Installing Notion Proxy

This server has no published package — it is built from source. Open the repository and follow its README.

▸ github.com/bibstha/notion-proxy

FAQ

Is Notion Proxy MCP free?

Yes, Notion Proxy MCP is free — one-click install via Unyly at no cost.

Does Notion Proxy need an API key?

No, Notion Proxy runs without API keys or environment variables.

Is Notion Proxy hosted or self-hosted?

Self-hosted: the server runs locally on your machine via the install command above.

How do I install Notion Proxy in Claude Desktop, Claude Code or Cursor?

Open Notion Proxy on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.

Related MCPs

Playwright

Browser automation, scraping, screenshots

Microsoftby Microsoft

Puppeteer

Browser automation and web scraping.

modelcontextprotocolby modelcontextprotocol

opentabs-dev/opentabs

Plugin-based MCP server + Chrome extension that gives AI agents access to web applications through the user's authenticated browser session. 100+ plugins with a

opentabs-devby opentabs-dev

robhunter/agentdeals

1,500+ developer infrastructure deals, free tiers, and startup programs across 54 categories. Search deals, compare vendors, plan stacks, and track pricing chan

robhunterby robhunter

hlydecker/ucsc-genome-mcp

MCP server to interact with the UCSC Genome Browser API, letting you find genomes, chromosomes, and more.

hlydeckerby hlydecker

34892002/bilibili-mcp-js

A MCP server that supports searching for Bilibili content. Provides LangChain integration examples and test scripts.

34892002by 34892002

achiya-automation/safari-mcp

Native Safari browser automation for AI agents with 80+ tools. No Chrome dependency, optimized for Apple Silicon with 60% less CPU overhead.

achiya-automationby achiya-automation

agent-infra/mcp-server-browser

Browser automation capabilities using Puppeteer, both support local and remote browser connection.

bytedanceby bytedance

aparajithn/agent-scraper-mcp

Web scraping MCP server for AI agents. 6 tools: clean content extraction, structured scraping with CSS selectors, full-page screenshots via Playwright, link ext

aparajithnby aparajithn

apireno/DOMShell

Browse the web using filesystem commands (ls, cd, grep, click). 38 MCP tools map Chrome's Accessibility Tree to a virtual filesystem via a Chrome Extension.

apirenoby apireno

Compare Notion Proxy with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All browse MCPs