fetch vs notion-export-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
fetch by modelcontextprotocol | notion-export-mcp-server by syucream | |
|---|---|---|
| Stars | ★ 85,748 | ★ 1 |
| 30d uses | — | — |
| Score | 76 | 28 |
| Official | ✓ | — |
| Categories | Web ScrapingAI / LLM ToolsProductivity | NotionKnowledge GraphProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 13 mo ago |
fetch · Summary
An MCP server that fetches web content and converts HTML to markdown, allowing LLMs to read web pages.
notion-export-mcp-server · Summary
An MCP server that exports Notion pages to markdown via unofficial API.
fetch · Use cases
- LLMs reading news articles and blogs
- Content analysis of web pages
- Retrieving information from public websites
- Chunked reading of large web documents
notion-export-mcp-server · Use cases
- AI assistants can read and analyze Notion documentation
- Export Notion knowledge bases for processing by LLMs
- Integrate Notion content into AI-powered workflows
fetch · Install
Installation
**Using uv (recommended)** No specific installation needed. Use uvx to run the server directly:
uvx mcp-server-fetch**Using PIP** Install via pip:
pip install mcp-server-fetchThen run as:
python -m mcp_server_fetchClaude Desktop Configuration
{
"mcpServers": {
"fetch": {
"command": "uvx",
"args": ["mcp-server-fetch"]
}
}
}notion-export-mcp-server · Install
npm install notion-export-mcp-serverAdd to Claude Desktop configuration:
{
"mcpServers": {
"notion-export": {
"command": "npx",
"args": [
"-y",
"notion-export-mcp-server"
],
"env": {
"NOTION_TOKEN_V2": "<your token>",
"NOTION_FILE_TOKEN": "<your token>"
}
}
}
}