Notion Advisor
Provides tools for searching, reading, creating, updating, and archiving Notion pages, databases, and blocks, including content management with markdown support and user information retrieval.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Notion Advisorsearch for meeting notes from last week"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Notion Advisor
An MCP (Model Context Protocol) server that provides AI assistants with full access to Notion workspaces. Enables Claude to search, read, create, and update pages, databases, and blocks.
Features
Search & Discovery: Search across all pages and databases in your workspace
Page Operations: Create, read, update, and archive pages
Content Management: Add, update, and delete content blocks with markdown support
Database Operations: Query databases with filters and sorts, create new databases
User Management: List workspace users and get user details
Rate Limiting: Built-in rate limiting to respect Notion API limits (3 req/sec)
Markdown Conversion: Automatic conversion between markdown and Notion blocks
Related MCP server: notion-mcp-server
Installation
npm install -g @m2ai-mcp/notion-advisorOr use directly with npx (no install required):
npx @m2ai-mcp/notion-advisorConfiguration
1. Create a Notion Integration
Go to Notion Integrations
Click "New integration"
Select "Internal integration"
Grant required capabilities:
Read content
Update content
Insert content
Read user information (optional)
Copy the "Internal Integration Token"
2. Share Content with Integration
For the integration to access pages and databases:
Open the page or database in Notion
Click the "..." menu in the top right
Click "Add connections"
Select your integration
3. Set Environment Variable
export NOTION_API_KEY=secret_your_integration_token_hereOr create a .env file:
NOTION_API_KEY=secret_your_integration_token_hereUsage with Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"notion": {
"command": "npx",
"args": ["@m2ai-mcp/notion-advisor"],
"env": {
"NOTION_API_KEY": "secret_your_token_here"
}
}
}
}Or if installed globally:
{
"mcpServers": {
"notion": {
"command": "notion-advisor",
"env": {
"NOTION_API_KEY": "secret_your_token_here"
}
}
}
}Available Tools
Search & Discovery
Tool | Description |
| Search across all pages and databases by keyword or title |
Page Operations
Tool | Description |
| Retrieve a page's properties and metadata |
| Create a new page in a database or as child of another page |
| Update a page's properties (not content blocks) |
| Retrieve all content blocks from a page |
Block Operations
Tool | Description |
| Add new content blocks to a page (supports markdown) |
| Update an existing block's content |
| Delete (archive) a block |
Database Operations
Tool | Description |
| Retrieve database schema and properties |
| Query a database with filters and sorts |
| Create a new database as child of a page |
User Operations
Tool | Description |
| List all users in the workspace |
| Get details about a specific user |
Markdown Support
The server supports conversion of common markdown to Notion blocks:
Headings (H1, H2, H3)
Bold, italic, strikethrough, inline code
Bullet and numbered lists
Checkboxes / todo items
Code blocks with language
Links
Blockquotes
Horizontal rules
Example
# My Page Title
This is a paragraph with **bold** and *italic* text.
- Bullet item 1
- Bullet item 2
1. Numbered item
2. Another item
- [ ] Todo item
- [x] Completed item
> A blockquote
\`\`\`javascript
const greeting = "Hello, World!";
\`\`\`Examples
Search for Pages
{
"query": "meeting notes",
"filter_type": "page",
"page_size": 10
}Create a Page in a Database
{
"parent_id": "database-id-here",
"parent_type": "database_id",
"title": "New Task",
"properties": {
"Status": { "select": { "name": "In Progress" } }
},
"content": "## Task Description\n\nThis is the task content."
}Query a Database
{
"database_id": "database-id-here",
"filter": {
"property": "Status",
"select": { "equals": "Done" }
},
"sorts": [
{ "property": "Due Date", "direction": "ascending" }
]
}Append Content to a Page
{
"parent_id": "page-id-here",
"content": "## New Section\n\nAdding more content to this page.\n\n- Item 1\n- Item 2"
}Known Limitations
Cannot access pages not shared with the integration
File/image uploads not supported (use URLs instead)
Comments API limited
Synced blocks are read-only
Development
# Install dependencies
npm install
# Build
npm run build
# Run tests
npm test
# Run with coverage
npm run test:coverageLicense
MIT
Author
Me, Myself Plus AI LLC
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/m2ai-mcp-servers/mcp-notion-workspace'
If you have feedback or need assistance with the MCP directory API, please join our Discord server