notion-mcp-server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
notion-mcp-server by awkoy | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 151 | ★ 85,748 |
| 30d uses | — | — |
| Score | 44 | 77 |
| Official | — | ✓ |
| Categories | NotionProductivityDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 13 mo ago | this month |
notion-mcp-server · Summary
Production-ready MCP server for Notion API integration with comprehensive tools for managing pages, databases, comments, and users.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
notion-mcp-server · Use cases
- Create and manage Notion pages and databases through natural language commands
- Update task lists and meeting notes directly from AI assistants
- Automate content creation and organization in Notion workspaces
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
notion-mcp-server · Install
Installation
- **Obtain a Notion API Key**
- Create an integration at [Notion Developers](https://www.notion.so/my-integrations) - Copy your API key - Enable Integration for Your Pages
- **Claude Desktop Integration**
Create or edit the mcp.json file in your configuration directory:
{
"mcpServers": {
"notion-mcp-server": {
"command": "npx",
"args": ["-y", "notion-mcp-server"],
"env": {
"NOTION_TOKEN": "YOUR_KEY",
"NOTION_PAGE_ID": "YOUR_PAGE_ID"
}
}
}
}- **Cursor Integration**
Create or edit the .cursor/mcp.json file in your project directory:
{
"mcpServers": {
"notion-mcp-server": {
"command": "env NOTION_TOKEN=YOUR_KEY NOTION_PAGE_ID=YOUR_PAGE_ID npx",
"args": ["-y", "notion-mcp-server"]
}
}
}- **General Usage**
``bash env NOTION_TOKEN=YOUR_KEY NOTION_PAGE_ID=YOUR_PAGE_ID npx -y notion-mcp-server ``
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything