anytype-mcp vs fetch
Side-by-side comparison to help you pick between these two MCP servers.
anytype-mcp by anyproto | fetch by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 420 | ★ 85,748 |
| 30d uses | — | — |
| Score | 50 | 76 |
| Official | — | ✓ |
| Categories | Knowledge GraphProductivitySecurity | Web ScrapingAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
anytype-mcp · Summary
MCP server for AI assistants to interact with Anytype's encrypted wiki through natural language commands.
fetch · Summary
An MCP server that fetches web content and converts HTML to markdown, allowing LLMs to read web pages.
anytype-mcp · Use cases
- Create and organize project spaces and tasks through conversational commands
- Search and retrieve information across your encrypted knowledge base
- Manage team collaboration by controlling spaces, members, and object permissions
- Automate knowledge management workflows using AI assistants
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
anytype-mcp · Install
Installation
Get Your API Key
- Open Anytype
- Go to App Settings
- Navigate to API Keys section
- Click on
Create newbutton
Configure Claude Desktop
{
"mcpServers": {
"anytype": {
"command": "npx",
"args": ["-y", "@anyproto/anytype-mcp"],
"env": {
"OPENAPI_MCP_HEADERS": "{\"Authorization\":\"Bearer <YOUR_API_KEY>\", \"Anytype-Version\":\"2025-11-08\"}"
}
}
}
}Alternative: Global Installation
npm install -g @anyproto/anytype-mcpThen update your MCP configuration to use command: "anytype-mcp" instead of npx.
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"]
}
}
}