drio
Open app

MCP-Twikit

Source

A Model Context Protocol (MCP) server for interacting with Twitter.

Catalog onlyCatalog onlySTDIO

Overview

MCP-Twikit is a Model Context Protocol (MCP) server designed for interacting with Twitter, enabling users to analyze sentiments and retrieve tweets from various accounts.

To use MCP-Twikit, install it using the provided command, set up your Twitter credentials, and utilize the mcp-client-cli to interact with Twitter data.

  • Sentiment analysis across different Twitter accounts - Retrieval of tweets from user timelines - Easy installation and setup with Twitter credentials
  1. Analyzing customer sentiment for internet service providers based on their tweets.
  2. Monitoring trends and discussions on Twitter related to specific topics.
  3. Gathering insights from user timelines for research purposes.

Add to your AI client

Use these steps to connect MCP-Twikit in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcp-twikit-adhikasp": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-twikit-adhikasp"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcp-twikit-adhikasp": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-twikit-adhikasp"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-twikit-adhikasp": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-twikit-adhikasp"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-twikit-adhikasp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-twikit-adhikasp"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-twikit-adhikasp": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-twikit-adhikasp"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-twikit-adhikasp": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-twikit-adhikasp"
      ]
    }
  }
}

FAQ

Can MCP-Twikit analyze sentiments for any Twitter account?

Yes! It can analyze sentiments for any public Twitter account.

Is there a limit to the number of tweets I can analyze?

The limit depends on Twitter's API restrictions and the parameters you set in your queries.

How do I set up my Twitter credentials?

You can set up your Twitter credentials in the installation JSON configuration.