mcp-twikit vs fetch
Side-by-side comparison to help you pick between these two MCP servers.
mcp-twikit by adhikasp | fetch by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 233 | ★ 85,748 |
| 30d uses | — | — |
| Score | 43 | 76 |
| Official | — | ✓ |
| Categories | Communicationsocial-mediaWeb Scraping | Web ScrapingAI / LLM ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 14 mo ago | this month |
mcp-twikit · Summary
MCP server for Twitter integration with search, timeline, and sentiment analysis capabilities.
fetch · Summary
An MCP server that fetches web content and converts HTML to markdown, allowing LLMs to read web pages.
mcp-twikit · Use cases
- Social media sentiment analysis for brands and customer service
- Monitoring personal Twitter timeline for relevant updates
- Comparing public sentiment across multiple Twitter accounts
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
mcp-twikit · Install
Installation
Installing via Smithery
To install Twikit Twitter Search for Claude Desktop automatically via [Smithery](https://smithery.ai/server/mcp-twikit):
npx -y @smithery/cli install mcp-twikit --client claudeManual Installation
Add to your Claude Desktop configuration:
{
"mcpServer": {
"command": "uvx",
"args": ["--from", "git+https://github.com/adhikasp/mcp-twikit", "mcp-twikit"],
"env": {
"TWITTER_USERNAME": "@example",
"TWITTER_EMAIL": "me@example.com",
"TWITTER_PASSWORD": "secret",
}
}
}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"]
}
}
}