Notion Knowledge Base MCP Server
An MCP server that connects to your Notion knowledge base, allowing you to query and retrieve information directly from VSCode using the Cline extension.
rickydata-indexer
README
Notion Knowledge Base MCP Server
An MCP server that provides access to a Notion knowledge base through the Cline VSCode extension.
Features
- Query your Notion knowledge base directly from Cline
- Get detailed answers with references to Notion pages
- Built with FastMCP for reliable performance
- Comprehensive error handling and logging
Prerequisites
- Python 3.10 or higher
- uv package manager
- Cline VSCode extension
- A Dify API key for accessing the Notion knowledge base
Installation
-
Clone this repository:
git clone https://github.com/yourusername/notion-mcp-server.git cd notion-mcp-server
-
Create a
.env
file with your Dify API key:echo "DIFY_API_BACKEND_KEY=your-api-key-here" > .env
-
Install the server in Cline:
fastmcp install notion_mcp_server.py
This will automatically:
- Install all required dependencies using uv
- Configure the server in Cline's settings
- Make the server available to use with Cline
Usage
Once installed, you can use the server in Cline by asking questions about your Notion knowledge base. For example:
Tell me about internal tooling
The server will respond with relevant information from your Notion knowledge base, including:
- Detailed answers
- Links to relevant Notion pages
- Page IDs for reference
Configuration
The server is configured automatically during installation, but you can manually update the settings in Cline's configuration file if needed:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json
- Windows:
%APPDATA%\Claude\claude_desktop_config.json
Example configuration:
{
"mcpServers": {
"notion-kb": {
"command": "uv",
"args": [
"run",
"--with", "fastmcp",
"--with", "python-dotenv",
"--with", "requests",
"fastmcp",
"run",
"/absolute/path/to/notion_mcp_server.py"
],
"env": {
"DIFY_API_BACKEND_KEY": "your-api-key"
}
}
}
}
Development
For development and testing:
-
Install dependencies:
pip install -r requirements.txt
-
Run the development server:
fastmcp dev notion_mcp_server.py
This will start the MCP Inspector interface for testing the server.
Troubleshooting
-
Server not connecting
- Verify your API key in the
.env
file - Ensure the server path in Cline's config is absolute
- Check that uv is installed and in your PATH
- Verify your API key in the
-
Dependencies issues
- Try reinstalling with
fastmcp install notion_mcp_server.py --force
- Verify uv is installed correctly
- Try reinstalling with
-
Server hangs
- Ensure you're using the uv run command as specified in the config
- Check the server logs for errors
Contributing
See mcp_instructions.md for detailed information about the server's implementation and architecture.
License
MIT
Recommended Servers
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Apple MCP Server
Enables interaction with Apple apps like Messages, Notes, and Contacts through the MCP protocol to send messages, search, and open app content using natural language.
serper-search-scrape-mcp-server
This Serper MCP Server supports search and webpage scraping, and all the most recent parameters introduced by the Serper API, like location.
The Verge News MCP Server
Provides tools to fetch and search news from The Verge's RSS feed, allowing users to get today's news, retrieve random articles from the past week, and search for specific keywords in recent Verge content.
Google Search Console MCP Server
A server that provides access to Google Search Console data through the Model Context Protocol, allowing users to retrieve and analyze search analytics data with customizable dimensions and reporting periods.
Crypto Price & Market Analysis MCP Server
A Model Context Protocol (MCP) server that provides comprehensive cryptocurrency analysis using the CoinCap API. This server offers real-time price data, market analysis, and historical trends through an easy-to-use interface.
MCP PubMed Search
Server to search PubMed (PubMed is a free, online database that allows users to search for biomedical and life sciences literature). I have created on a day MCP came out but was on vacation, I saw someone post similar server in your DB, but figured to post mine.
MCP DuckDB Knowledge Graph Memory Server
A memory server for Claude that stores and retrieves knowledge graph data in DuckDB, enhancing performance and query capabilities for conversations with persistent user information.