Skip to main content

Twitter MCP Server using twikit - provides Twitter functionality through Model Context Protocol

Project description

Twitter MCP Server

A Model Context Protocol (MCP) server that provides Twitter functionality using the twikit library. This server allows AI assistants to interact with Twitter through a standardized protocol with cookie-based authentication - the LLM model provides ct0 and auth_token cookies directly in tool calls.

Features

  • Cookie Authentication: LLM model provides ct0 and auth_token cookies directly in tool calls
  • Session Caching: Automatically caches authenticated sessions for efficiency
  • Timeline Access: Get tweets from your timeline
  • User Information: Retrieve user profiles and statistics
  • Tweet Search: Search for tweets with specific queries
  • Tweet Management: Post, like, and retweet tweets
  • User Tweets: Get tweets from specific users
  • Direct Messaging: Send DMs, get DM history, react to messages, and delete messages
  • Authentication Testing: Test cookies before use
  • Tweet Operations: Post tweets, like/unlike tweets, retweet/delete retweets, bookmark tweets
  • Tweet Retrieval: Get tweets by ID, search tweets, get user timelines, get tweet replies
  • User Operations: Follow/unfollow users, get user information, search users
  • Trending Topics: Get trending topics across different categories (trending, news, sports, entertainment, for-you)

Disclaimer

This project utilizes an unofficial API to interact with X (formerly Twitter) through the twikit library. The methods employed for authentication and data retrieval are not officially endorsed by X/Twitter and may be subject to change or discontinuation without notice.

This tool is intended for educational and experimental purposes only. Users should be aware of the potential risks associated with using unofficial APIs, including but not limited to account restrictions or suspension. The developers of this project are not responsible for any misuse or consequences arising from the use of this tool.

Installation

  1. Clone this repository:
git clone <repository-url>
cd twitter-mcp
  1. Install dependencies:
pip install -r requirements.txt
  1. Run the server:
python server.py

Authentication

The server expects the LLM model to provide Twitter cookies directly in each tool call via the ct0 and auth_token parameters. No pre-configuration is required!

Getting Twitter Cookies

The LLM model will need to provide both Twitter cookies. Here's how to obtain them:

  1. Open your browser and go to Twitter/X
  2. Log in to your account
  3. Open Developer Tools (F12)
  4. Go to Application/Storage → Cookies → twitter.com (or x.com)
  5. Find and copy these cookie values:
    • ct0 - CSRF token cookie
    • auth_token - Authentication token cookie

Both cookies are required for all operations.

Usage

Available Tools

1. Authenticate

Test authentication with cookies:

{
  "tool": "authenticate",
  "arguments": {
    "ct0": "your_ct0_cookie_here",
    "auth_token": "your_auth_token_cookie_here"
  }
}

2. Tweet

Post a new tweet:

{
  "tool": "tweet",
  "arguments": {
    "text": "Hello from MCP! 🚀",
    "ct0": "your_ct0_cookie_here",
    "auth_token": "your_auth_token_cookie_here"
  }
}

3. Get User Info

Get information about a Twitter user:

{
  "tool": "get_user_info",
  "arguments": {
    "username": "elonmusk",
    "ct0": "your_ct0_cookie_here",
    "auth_token": "your_auth_token_cookie_here"
  }
}

4. Search Tweets

Search for tweets:

{
  "tool": "search_tweets",
  "arguments": {
    "query": "artificial intelligence",
    "count": 10,
    "ct0": "your_ct0_cookie_here",
    "auth_token": "your_auth_token_cookie_here"
  }
}

5. Get Timeline

Get tweets from your timeline:

{
  "tool": "get_timeline",
  "arguments": {
    "count": 20,
    "ct0": "your_ct0_cookie_here",
    "auth_token": "your_auth_token_cookie_here"
  }
}

6. Like Tweet

Like a tweet by ID:

{
  "tool": "like_tweet",
  "arguments": {
    "tweet_id": "1234567890123456789",
    "ct0": "your_ct0_cookie_here",
    "auth_token": "your_auth_token_cookie_here"
  }
}

7. Retweet

Retweet a tweet by ID:

{
  "tool": "retweet",
  "arguments": {
    "tweet_id": "1234567890123456789",
    "ct0": "your_ct0_cookie_here",
    "auth_token": "your_auth_token_cookie_here"
  }
}

8. Send Direct Message

Send a direct message to a user.

Parameters:

  • recipient_username (string): The username (without @) to send the message to (automatically converted to user_id internally)
  • text (string): The message content
  • ct0 (string): Twitter ct0 cookie
  • auth_token (string): Twitter auth_token cookie
{
  "name": "send_dm",
  "arguments": {
    "recipient_username": "username",
    "text": "Hello from MCP!",
    "ct0": "your_ct0_token",
    "auth_token": "your_auth_token"
  }
}

9. Get DM History

Get direct message history with a specific user.

Parameters:

  • recipient_username (string): The username (without @) to get DM history with (automatically converted to user_id internally)
  • count (integer, optional): Number of messages to retrieve (default: 20, max: 100)
  • ct0 (string): Twitter ct0 cookie
  • auth_token (string): Twitter auth_token cookie
{
  "name": "get_dm_history", 
  "arguments": {
    "recipient_username": "username",
    "count": 50,
    "ct0": "your_ct0_token",
    "auth_token": "your_auth_token"
  }
}

10. React to Direct Message

Add an emoji reaction to a direct message.

Parameters:

  • message_id (string): The ID of the message to react to
  • emoji (string): The emoji to add (e.g., "👍", "❤️", "😀")
  • conversation_id (string): The conversation ID containing the message
  • ct0 (string): Twitter ct0 cookie
  • auth_token (string): Twitter auth_token cookie
{
  "name": "add_reaction_to_message",
  "arguments": {
    "message_id": "message_id_here", 
    "emoji": "👍",
    "conversation_id": "conversation_id_here",
    "ct0": "your_ct0_token",
    "auth_token": "your_auth_token"
  }
}

11. Delete Direct Message

Delete a direct message:

{
  "tool": "delete_dm",
  "arguments": {
    "message_id": "1234567890123456789",
    "ct0": "your_ct0_cookie_here",
    "auth_token": "your_auth_token_cookie_here"
  }
}

get_tweet_replies

Get replies to a specific tweet.

Parameters:

  • tweet_id (string): The ID of the tweet to get replies for
  • count (integer, optional): Number of replies to retrieve (default: 20)
  • ct0 (string): Twitter ct0 cookie
  • auth_token (string): Twitter auth_token cookie
{
  "name": "get_tweet_replies",
  "arguments": {
    "tweet_id": "1234567890",
    "count": 10,
    "ct0": "your_ct0_token",
    "auth_token": "your_auth_token"
  }
}

get_trends

Get trending topics on Twitter.

Parameters:

  • category (string, optional): The category of trends to retrieve (default: "trending")
    • Options: "trending", "for-you", "news", "sports", "entertainment"
  • count (integer, optional): Number of trends to retrieve (default: 20, max: 50)
  • ct0 (string): Twitter ct0 cookie
  • auth_token (string): Twitter auth_token cookie
{
  "name": "get_trends",
  "arguments": {
    "category": "trending",
    "count": 20,
    "ct0": "your_ct0_token",
    "auth_token": "your_auth_token"
  }
}

Examples:

// Get general trending topics
{
  "name": "get_trends",
  "arguments": {
    "ct0": "your_ct0_token",
    "auth_token": "your_auth_token"
  }
}

// Get sports trends
{
  "name": "get_trends", 
  "arguments": {
    "category": "sports",
    "count": 10,
    "ct0": "your_ct0_token",
    "auth_token": "your_auth_token"
  }
}

// Get personalized trends
{
  "name": "get_trends",
  "arguments": {
    "category": "for-you",
    "ct0": "your_ct0_token", 
    "auth_token": "your_auth_token"
  }
}

Available Resources

Resources can be accessed but require the TWITTER_CT0

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

iflow_mcp_gkydev_twitter_mcp_server-0.1.0.tar.gz (8.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

File details

Details for the file iflow_mcp_gkydev_twitter_mcp_server-0.1.0.tar.gz.

File metadata

  • Download URL: iflow_mcp_gkydev_twitter_mcp_server-0.1.0.tar.gz
  • Upload date:
  • Size: 8.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.28 {"installer":{"name":"uv","version":"0.9.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Debian GNU/Linux","version":"13","id":"trixie","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for iflow_mcp_gkydev_twitter_mcp_server-0.1.0.tar.gz
Algorithm Hash digest
SHA256 eb12aea1adc56d76e2748e3a4525266f9d5565983b65f0f135175a7fafa4f8a8
MD5 b9696d2b5b6af0f45fba75aa5d7e2701
BLAKE2b-256 d56e85a7e5c7597d5f1bc1eddca77cc9f7bcf1c7535e65e1f9c15b160c0a2ca9

See more details on using hashes here.

File details

Details for the file iflow_mcp_gkydev_twitter_mcp_server-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: iflow_mcp_gkydev_twitter_mcp_server-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 16.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.28 {"installer":{"name":"uv","version":"0.9.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Debian GNU/Linux","version":"13","id":"trixie","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for iflow_mcp_gkydev_twitter_mcp_server-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 d3a76ad41573b2e8d3d32f2c79fd489b8e6e82469cb1fbf138732584a91276d3
MD5 845a85e7a5b80dbb3f26e8ba4e48577a
BLAKE2b-256 b9c36369b9eeaf8329f6104d2b0ef94778927701ece85c8bd00477ccb3cb8cc3

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page