Notion MCP Client
@phoenine
Notion MCP Client について
A simple MCP server that integrates with Notion's API to manage my personal habit track.
基本情報
設定
以下の設定を使って、このサーバーを MCP 対応クライアントに追加してください。
{
"mcpServers": {
"notion-mcp": {
"command": "uvx",
"args": [
"notion-mcp"
],
"env": {
"NOTION_TOKEN": "",
"ROOT_PAGE_ID": ""
}
}
}
}ツール
ツールは検出されませんでした
ツールは README から自動的に抽出されます。メンテナーは ## Tools という見出しの下に記載することで、このタブに反映できます。
概要
What is Notion MCP Client?
Notion MCP Client is a Model Context Protocol (MCP) client for interacting with the Notion API, designed for use in AI tools like Claude that support MCP. It can also fall back to a standard HTTP API when MCP is not available.
How to use Notion MCP Client?
Install via pip install notion-mcp (or with MCP support: pip install notion-mcp[mcp]). Configure a .env file with your Notion token and root page ID. Run the CLI with notion-mcp or start the server with notion-mcp-server --host 0.0.0.0 --port 8000. You can also supply a JSON configuration file.
Key features of Notion MCP Client
- Asynchronous API operations with retry logic
- Concurrency control to respect Notion API rate limits
- Environment-based and JSON-based configuration
- Flexible server implementation with MCP support
- Falls back to standard HTTP API when MCP is unavailable
- Supports custom operations like
fill_web_url
Use cases of Notion MCP Client
- Use with Claude to manipulate Notion databases and pages via natural language
- Automate filling URL fields across pages in selected databases
- Integrate with any web framework using the
NotionRequestHandlerclass - Run as a standalone HTTP server for custom clients
FAQ from Notion MCP Client
What dependencies or runtime are required?
Python 3.x and the packages installed via pip. For MCP support, install with the [mcp] extra.
What API credentials are needed?
A Notion API token (NOTION_TOKEN) and a root page ID (ROOT_PAGE_ID) are required, set via environment variables or a JSON configuration file.
Where does data live?
Data remains in Notion. The client reads and writes to your Notion workspace through the Notion API; no data is stored locally beyond configuration.
What transport protocols are supported?
MCP (Model Context Protocol) when available; otherwise, the server falls back to a standard HTTP API that accepts POST requests at /notion.
Are there any known limits?
The client uses configurable concurrency limits and retry delays (e.g., CONCURRENCY_LIMIT=5, RETRY_DELAYS=1,3,5) to respect Notion API rate limits. Only one operation (fill_web_url) is documented; more are planned.
「メモリとナレッジ」の他のコンテンツ
Context Portal MCP (ConPort)
GreatScottyMacContext Portal (ConPort): A memory bank MCP server building a project-specific knowledge graph to supercharge AI assistants. Enables powerful Retrieval Augmented Generation (RAG) for context-aware development in your IDE.
Semantic Scholar MCP Server
YUZongminA FastMCP server implementation for the Semantic Scholar API, providing comprehensive access to academic paper data, author information, and citation networks.
MCP server for Obsidian
MarkusPfundsteinMCP server that interacts with Obsidian via the Obsidian rest API community plugin

Memory
modelcontextprotocolModel Context Protocol Servers
Ultimate Google Docs & Drive MCP Server
a-bonusThe Ultimate Google Docs, Sheets, Drive, Gmail, & Google Calendar MCP Server. This MCP (primarily for use in Claude Desktop) gains full access to your google suite and lets claude do its thing.
コメント