fetch vs mastodon-mcp
Side-by-side comparison to help you pick between these two MCP servers.
fetch by modelcontextprotocol | mastodon-mcp by The-Focus-AI | |
|---|---|---|
| Stars | ★ 85,748 | ★ 9 |
| 30d uses | — | — |
| Score | 76 | 38 |
| Official | ✓ | — |
| Categories | Web ScrapingAI / LLM ToolsProductivity | CommunicationMediaProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 7 mo ago |
fetch · Summary
An MCP server that fetches web content and converts HTML to markdown, allowing LLMs to read web pages.
mastodon-mcp · Summary
MCP server for Mastodon social media interaction with toot creation and media attachments.
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
mastodon-mcp · Use cases
- Automatically posting content to Mastodon from AI agents
- Scheduling social media content in advance for consistent posting
- Managing Mastodon presence with media attachments and alt text
- Integration with AI workflows to share updates or findings
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"]
}
}
}mastodon-mcp · Install
Installation
# Clone the repository
git clone [repository-url]
cd mastodon-mcp
# Install dependencies
pnpm install
# Build the project
pnpm build
# Configuration
export MSTODON_ACCESS_TOKEN="your_mastodon_api_token"
export MASTODON_INSTANCE_URL="https://your.instance.social" # Optional
# Start the server
pnpm startClaude Desktop Configuration
Add to Claude Desktop config.json:
{
"mcpServers": {
"mastodon": {
"command": "node",
"args": ["path/to/mastodon-mcp/dist/mcp-server.js"]
}
}
}