x-mcp-server

x-mcp-server

Enables AI assistants to interact with X (Twitter) API v2 for posting tweets, searching, liking, retweeting, and more through natural language.

Category
访问服务器

README

<div align="center"> <b>x-mcp-server</b>

<p align="center"> <i>Your AI Assistant's Gateway to X (Twitter)!</i> </p>

PyPI - Version PyPI Downloads License: MIT </div>


What is this?

x-mcp-server is a Python-based MCP server that connects any MCP-compatible client (Claude Desktop, Cursor, Windsurf) to the X (Twitter) API v2. It lets you post tweets, search, like, retweet, follow users, and more — all driven by AI through natural language.


Quick Start

uvx x-mcp-server@latest
  1. Get X API credentials from the X Developer Portal
  2. Install uv if you haven't:
    # macOS / Linux
    curl -LsSf https://astral.sh/uv/install.sh | sh
    # Windows
    powershell -c "irm https://astral.sh/uv/install.ps1 | iex"
    
  3. Set up your .env or environment variables (see Authentication)
  4. Check auth:
    uvx x-mcp-server@latest auth
    
  5. Run the server:
    uvx x-mcp-server@latest
    

Key Features

  • 21 Tools covering tweets, search, users, lists, and threads
  • Dual Authentication: Bearer token (read-only) + OAuth 1.0a (full read-write)
  • Pagination: All list operations support cursor-based pagination
  • Media Upload: Attach images/videos to tweets via v1.1 media upload
  • Thread Posting: Post multi-tweet threads in a single call
  • Polls: Create tweets with polls
  • Stdio & SSE Transports: Works with Claude Desktop, Cursor, and remote deployments

Authentication

Environment Variables

Set these in a .env file or as environment variables:

Read-only (app-only / Bearer token):

BEARER_TOKEN=your-bearer-token

Full read-write (OAuth 1.0a user context):

CONSUMER_KEY=your-consumer-key
SECRET_KEY=your-secret-key
ACCESS_TOKEN=your-access-token
ACCESS_TOKEN_SECRET=your-access-token-secret

If you have all 5, the Bearer token is used for reads and OAuth 1.0a for writes. If you only have BEARER_TOKEN, read operations work but posting/liking/etc. will be unavailable.

Getting Your Credentials

  1. Go to the X Developer Portal
  2. Create a project and app
  3. Under Keys and tokens:
    • Copy API KeyCONSUMER_KEY
    • Copy API SecretSECRET_KEY
    • Copy Bearer TokenBEARER_TOKEN
    • Under Authentication Tokens, generate Access Token and SecretACCESS_TOKEN + ACCESS_TOKEN_SECRET
  4. Make sure your app has Read and Write permissions

The auth Command

Verify your credentials are working:

uvx x-mcp-server@latest auth

Output:

X (Twitter) MCP — Auth check
  BEARER_TOKEN:       set
  CONSUMER_KEY:       set
  SECRET_KEY:         set
  ACCESS_TOKEN:       set
  ACCESS_TOKEN_SECRET: set

  Authenticated as: @yourusername (Your Name)
  Followers: 1234  Following: 567  Tweets: 890
  Bearer token: valid (read operations available)

Available Tools (21 Total)

Read Operations

  • x_get_me — Get the authenticated user's profile
  • x_get_user — Look up a user by username
    • username: Handle without @ (e.g. "elonmusk")
  • x_get_user_by_id — Look up a user by numeric ID
    • user_id: Numeric user ID
  • x_get_tweet — Get a single tweet by ID with full content and metrics
    • tweet_id: Numeric tweet ID
  • x_get_user_tweets — Get recent tweets by a user (5-100 per page)
    • username, max_results (default 10), pagination_token
  • x_get_user_mentions — Get tweets mentioning a user (5-100 per page)
    • username, max_results (default 10), pagination_token
  • x_search_tweets — Search recent tweets (last 7 days)
    • query (supports operators: from:, #hashtag, is:reply, has:media)
    • max_results (10-100), sort_order ("recency" or "relevancy"), next_token
  • x_get_home_timeline — Get home timeline (requires OAuth 1.0a)
    • max_results (1-100, default 20), pagination_token
  • x_get_followers — Get a user's followers (1-1000 per page)
    • username, max_results (default 20), pagination_token
  • x_get_following — Get who a user follows (1-1000 per page)
    • username, max_results (default 20), pagination_token
  • x_get_owned_lists — Get lists owned by a user
    • username (optional, defaults to authenticated user)
  • x_get_list_tweets — Get tweets from an X List (1-100 per page)
    • list_id, max_results (default 20), pagination_token

Write Operations (require OAuth 1.0a)

  • x_post_tweet — Post a new tweet
    • text (required), reply_to_tweet_id, quote_tweet_id, media_paths, poll_options, poll_duration_minutes
  • x_delete_tweet — Delete your own tweet
    • tweet_id
  • x_post_thread — Post a thread (series of connected tweets)
    • tweets: List of tweet texts in order
  • x_like_tweet / x_unlike_tweet — Like or unlike a tweet
    • tweet_id
  • x_retweet / x_unretweet — Retweet or undo retweet
    • tweet_id
  • x_follow_user / x_unfollow_user — Follow or unfollow by username
    • username

Usage with Claude Desktop

Add to your claude_desktop_config.json:

<details> <summary>Config: uvx (Recommended)</summary>

{
  "mcpServers": {
    "x": {
      "command": "uvx",
      "args": ["x-mcp-server@latest"],
      "env": {
        "BEARER_TOKEN": "your-bearer-token",
        "CONSUMER_KEY": "your-consumer-key",
        "SECRET_KEY": "your-secret-key",
        "ACCESS_TOKEN": "your-access-token",
        "ACCESS_TOKEN_SECRET": "your-access-token-secret"
      }
    }
  }
}

macOS note: If you get spawn uvx ENOENT, use the full path:

"command": "/Users/yourusername/.local/bin/uvx"

</details>

<details> <summary>Config: Development (from cloned repo)</summary>

{
  "mcpServers": {
    "x": {
      "command": "uv",
      "args": ["run", "--directory", "/path/to/x-mcp", "x-mcp"]
    }
  }
}

</details>


Usage with Cursor / Windsurf

{
  "mcpServers": {
    "x": {
      "command": "uvx",
      "args": ["x-mcp-server@latest"],
      "env": {
        "BEARER_TOKEN": "your-bearer-token",
        "CONSUMER_KEY": "your-consumer-key",
        "SECRET_KEY": "your-secret-key",
        "ACCESS_TOKEN": "your-access-token",
        "ACCESS_TOKEN_SECRET": "your-access-token-secret"
      }
    }
  }
}

SSE Transport (Remote / Container)

uv run x-mcp --transport sse
Variable Default Description
HOST / FASTMCP_HOST 0.0.0.0 Bind address
PORT / FASTMCP_PORT 8000 Listen port

Environment Variables Reference

Variable Required Description
BEARER_TOKEN For reads X API v2 Bearer Token
CONSUMER_KEY For writes Consumer Key (API Key)
SECRET_KEY For writes Secret Key (API Secret)
ACCESS_TOKEN For writes User Access Token
ACCESS_TOKEN_SECRET For writes User Access Token Secret
HOST / FASTMCP_HOST No SSE transport bind address (default 0.0.0.0)
PORT / FASTMCP_PORT No SSE transport port (default 8000)

Example Prompts for Claude

  • "What are the latest tweets about #AI?"
  • "Show me @elonmusk's recent tweets"
  • "Post a tweet saying 'Hello from my AI assistant!'"
  • "Like the latest tweet from @openai"
  • "Search for tweets about machine learning from the past week"
  • "Post a thread about the benefits of open source"
  • "Who are my most recent followers?"
  • "Show me my home timeline"

Contributing

Contributions are welcome! Please open an issue to discuss bugs or feature requests. Pull requests are appreciated.


License

This project is licensed under the MIT License — see the LICENSE file for details.


Credits

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选