mcp-twikit vs Scrapling
Side-by-side comparison to help you pick between these two MCP servers.
mcp-twikit by adhikasp | Scrapling by D4Vinci | |
|---|---|---|
| Stars | ★ 233 | ★ 50,346 |
| 30d uses | — | — |
| Score | 43 | 62 |
| Official | — | — |
| Categories | Communicationsocial-mediaWeb Scraping | Web ScrapingAI / LLM ToolsDeveloper Tools |
| Language | Python | Python |
| Last commit | 14 mo ago | this month |
mcp-twikit · Summary
MCP server for Twitter integration with search, timeline, and sentiment analysis capabilities.
Scrapling · Summary
Web scraping framework with adaptive parsing and anti-bot capabilities, now integrated as an MCP server.
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
Scrapling · Use cases
- Extracting structured data from dynamic websites with changing layouts
- Large-scale web crawling with automatic proxy rotation and anti-bot bypass
- Integrating web scraping capabilities into AI agent workflows
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",
}
}
}Scrapling · Install
Installing Scrapling MCP Server
- Install the Scrapling package via pip:
``bash pip install scrapling ``
- Configure your MCP client to use the Scrapling server. For Claude Desktop, add to
claude_desktop_config.json:
``json { "mcpServers": { "scrapling": { "command": "python", "args": ["-m", "scrapling", "mcp"] } } } ``