Connect Claude to Notion workspaces. Search pages, read content, create and update databases, and manage your knowledge base.
MCP (Model Context Protocol) servers extend Claude's capabilities with external tools and data sources. They provide access to databases, APIs, file systems, and more. Configure MCP servers in .mcp.json or add them via `claude mcp add` command.
Setup: 1. Go to https://www.notion.so/my-integrations 2. Create a new integration 3. Copy the Internal Integration Token 4. Share your Notion pages/databases with the integration CLI Command: NOTION_API_KEY=secret_... claude mcp add notion -- npx -y mcp-server-notion Features: - Search across pages and databases - Read and create pages - Query and update databases
{
"mcpServers": {
"notion": {
"command": "npx",
"args": ["-y", "mcp-server-notion"],
"env": {
"NOTION_API_KEY": "secret_..."
}
}
}
}Query SQLite databases directly. Perfect for local development, testing, and analyzing SQLite-based applications.