Notion Weaver
Enables AI workflows to integrate with Notion workspaces, supporting page and database creation, queries with filters and sorting, content updates, and workspace-wide search operations.
README
Notion Weaver
A production-ready Model Context Protocol (MCP) server for Notion workspace automation. Seamlessly integrate Notion into your AI workflows with full TypeScript support.
Features
-
6 Powerful Tools: Complete Notion API coverage
create_page- Create new pages in databases or as child pagescreate_database- Create new databases with custom schemasquery_database- Query databases with filters and sortingupdate_page- Update page properties and contentget_page- Retrieve specific pages by IDsearch_content- Search across your entire workspace
-
Type-Safe: Full TypeScript strict mode implementation
-
Production-Ready: Comprehensive error handling and validation
-
Standards-Compliant: Implements MCP JSON-RPC 2.0 protocol
-
Well-Documented: Extensive examples and setup guides
Installation
npm install notion-weaver
Or clone and build from source:
git clone https://github.com/consigcody94/notion-weaver.git
cd notion-weaver
npm install
npm run build
Setup
1. Get Your Notion API Key
- Go to Notion Integrations
- Click "+ New integration"
- Name your integration and select the workspace
- Copy the "Internal Integration Token"
2. Share Pages/Databases with Your Integration
- Open the Notion page or database you want to access
- Click the "..." menu in the top right
- Scroll to "Add connections"
- Select your integration
3. Configure Environment Variable
export NOTION_API_KEY="your_integration_token_here"
For persistent configuration, add to your shell profile (~/.bashrc, ~/.zshrc, etc.):
echo 'export NOTION_API_KEY="your_integration_token_here"' >> ~/.bashrc
source ~/.bashrc
Configuration for Claude Desktop
Add to your Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
Linux: ~/.config/Claude/claude_desktop_config.json
{
"mcpServers": {
"notion-weaver": {
"command": "node",
"args": ["/path/to/notion-weaver/dist/index.js"],
"env": {
"NOTION_API_KEY": "your_integration_token_here"
}
}
}
}
Or if installed globally:
{
"mcpServers": {
"notion-weaver": {
"command": "notion-weaver",
"env": {
"NOTION_API_KEY": "your_integration_token_here"
}
}
}
}
Usage Examples
Create a Page
// In a database
{
"tool": "create_page",
"arguments": {
"parent_database_id": "abc123...",
"title": "New Project",
"content": "Project description goes here"
}
}
// As a child page
{
"tool": "create_page",
"arguments": {
"parent_page_id": "xyz789...",
"title": "Meeting Notes",
"content": "Discussion points..."
}
}
Create a Database
{
"tool": "create_database",
"arguments": {
"parent_page_id": "xyz789...",
"title": "Task Tracker",
"properties": {
"Name": { "title": {} },
"Status": {
"select": {
"options": [
{ "name": "Not Started", "color": "red" },
{ "name": "In Progress", "color": "yellow" },
{ "name": "Complete", "color": "green" }
]
}
},
"Due Date": { "date": {} }
}
}
}
Query a Database
{
"tool": "query_database",
"arguments": {
"database_id": "abc123...",
"filter": {
"property": "Status",
"select": {
"equals": "In Progress"
}
},
"sorts": [
{
"property": "Due Date",
"direction": "ascending"
}
]
}
}
Update a Page
{
"tool": "update_page",
"arguments": {
"page_id": "page123...",
"properties": {
"Status": {
"select": {
"name": "Complete"
}
}
}
}
}
Get a Page
{
"tool": "get_page",
"arguments": {
"page_id": "page123..."
}
}
Search Content
{
"tool": "search_content",
"arguments": {
"query": "project requirements",
"filter": {
"property": "object",
"value": "page"
}
}
}
Finding Page and Database IDs
From URL
When viewing a page or database in Notion, the ID is in the URL:
https://www.notion.so/My-Page-abc123def456...
^----- This is the ID
Using search_content
Search for pages/databases by title:
{
"tool": "search_content",
"arguments": {
"query": "My Database Name"
}
}
Development
# Install dependencies
npm install
# Build TypeScript
npm run build
# Watch mode for development
npm run watch
Requirements
- Node.js >= 18.0.0
- Notion API Key
- TypeScript 5.7+
Security
- Never commit your
NOTION_API_KEYto version control - Use environment variables for sensitive credentials
- Regularly rotate your API keys
- Limit integration permissions to only required pages/databases
Troubleshooting
"Error: NOTION_API_KEY environment variable is required"
- Ensure you've set the
NOTION_API_KEYenvironment variable - Check that the variable is available in the process environment
"Object not found" errors
- Verify the page/database ID is correct
- Ensure your integration has been added to the page/database
- Check that the page/database hasn't been deleted
"Validation failed" errors
- Verify property types match the database schema
- Check that required properties are included
- Ensure property names are spelled correctly
Contributing
Contributions are welcome! Please see CONTRIBUTING.md for guidelines.
License
MIT License - see LICENSE file for details.
Links
Support
For bugs and feature requests, please use GitHub Issues.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。