mcp-twikit vs chrome-devtools-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-twikit by adhikasp | chrome-devtools-mcp by ChromeDevTools | |
|---|---|---|
| Stars | ★ 233 | ★ 39,757 |
| 30d uses | — | — |
| Score | 43 | 65 |
| Official | — | — |
| Categories | Communicationsocial-mediaWeb Scraping | Browser AutomationDeveloper ToolsWeb Scraping |
| 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.
chrome-devtools-mcp · Summary
Chrome DevTools MCP server lets AI coding agents control and inspect live Chrome browsers through the MCP protocol.
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
chrome-devtools-mcp · Use cases
- Automated web testing and validation by AI agents
- Performance analysis and optimization of web applications
- Debugging web applications through AI-powered inspection
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",
}
}
}chrome-devtools-mcp · Install
Installation
Add the following config to your MCP client:
{
"mcpServers": {
"chrome-devtools": {
"command": "npx",
"args": ["-y", "chrome-devtools-mcp@latest"]
}
}
}For basic browser tasks in headless mode:
{
"mcpServers": {
"chrome-devtools": {
"command": "npx",
"args": ["-y", "chrome-devtools-mcp@latest", "--slim", "--headless"]
}
}
}