Notion_mcp_server
@grainne-b
关于 Notion_mcp_server
暂无概览
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"notion-mcp-server-grainne-b": {
"command": "uv",
"args": [
"run",
"<your_script.py>"
]
}
}
}工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
What is Notion_mcp_server?
Notion_mcp_server is a Model Context Protocol server that enables AI agents such as Claude to interact with Notion via the Notion API. It requires a Notion integration API key, page-level permissions, and the uv Python package manager. This server is designed for developers who want to give LLMs read/write access to Notion pages.
How to use Notion_mcp_server?
After installing uv (e.g., brew install uv), set up a Notion integration to get an API key, share the target Notion page with that integration, and copy the page ID. Update the PAGE_ID in notion_sdk.py. Run uv run mcp dev server.py to test, or uv run mcp install server.py to register the server with Claude Desktop. The API key must be set as the environment variable NOTION_API_KEY in the Claude configuration.
Key features of Notion_mcp_server
- Uses the official
notion-clientPython library. - Registers tools via FastMCP’s
@mcp.tool()decorator. - Authenticates with a Notion integration bearer token.
- Supports creating pages under a specified parent page.
- Designed for the MCP transport layer (stdio).
- Requires the
uvpackage manager to run.
Use cases of Notion_mcp_server
- Creating new Notion pages from an AI assistant’s output.
- Automating note-taking or documentation updates via LLM conversations.
- Allowing an AI agent to read and organize existing Notion content.
- Integrating Notion as a knowledge store for MCP‑enabled applications.
FAQ from Notion_mcp_server
How do I create a Notion API key?
Go to Notion Integrations, click “New Integration”, fill in the details, and copy the generated API key. Store it securely.
How do I give the integration access to a Notion page?
Open the target page in Notion, click the “Share” button, invite your integration by name, and ensure it has the required read/write permissions.
Where does the API key need to be placed?
The API key must be hardcoded as the NOTION_API_KEY environment variable in the MCP server configuration (e.g., claude_desktop_config.json). The README explicitly notes that “when installing in Claude, the key needs to be hardcoded”.
What dependencies are required?
The server uses the notion-client Python package. The recommended runtime is uv, which can be installed via Homebrew. A Python virtual environment may also be used (example shows .venv activation).
What transport does this server use?
The server runs over stdio (standard input/output), which is the default transport for MCP servers started with uv run mcp. No HTTP or WebSocket transport is mentioned.
记忆与知识 分类下的更多 MCP 服务器
Notion MCP Integration
danhilseA simple MCP integration that allows Claude to read and manage a personal Notion todo list
MCP Apple Notes
RafalWilinskiTalk with your notes in Claude. RAG over your Apple Notes using Model Context Protocol.
Context7 MCP - Up-to-date Docs For Any Cursor Prompt
upstashContext7 Platform -- Up-to-date code documentation for LLMs and AI code editors
minutes
silversteinEvery meeting, every idea, every voice note — searchable by your AI. Open-source, privacy-first conversation memory layer.
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.
评论