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.
记忆与知识 分类下的更多 MCP 服务器
RAG Documentation MCP Server
hannesrudolphAn MCP server implementation that provides tools for retrieving and processing documentation through vector search, enabling AI assistants to augment their responses with relevant documentation context.
🧠 Ultimate MCP Server
DicklesworthstoneComprehensive MCP server exposing dozens of capabilities to AI agents: multi-provider LLM delegation, browser automation, document processing, vector ops, and cognitive memory systems
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.
Docs MCP Server
araboldGrounded Docs MCP Server: Open-Source Alternative to Context7, Nia, and Ref.Tools
Obsidian MCP Server
StevenStavrakisA simple MCP server for Obsidian
评论