JUHE API Marketplace
DataWhisker avatar
MCP Server

X MCP Server

Server for X (Twitter) integration that provides tools for reading your timeline and engaging with tweets. Designed for use with Claude desktop.

71
GitHub Stars
6/25/2026
Last Updated
MCP Server Configuration
1{
2 "name": "x",
3 "command": "node",
4 "args": [
5 "C:/path/to/x-mcp-server/build/index.js"
6 ],
7 "env": {
8 "TWITTER_API_KEY": "your-api-key",
9 "TWITTER_API_SECRET": "your-api-secret",
10 "TWITTER_ACCESS_TOKEN": "your-access-token",
11 "TWITTER_ACCESS_SECRET": "your-access-secret",
12 "TWITTER_OAUTH2_ACCESS_TOKEN": "your-oauth2-token"
13 }
14}
JSON14 lines
  1. Home
  2. MCP Servers
  3. x-mcp-server

README Documentation

X MCP Server

A Model Context Protocol (MCP) server for X (Twitter) integration. Provides 26 tools for reading timelines, posting, searching, engagement (likes, retweets, bookmarks), user lookup, follower export, mentions, likes, articles, and lists. Designed for use with Claude desktop and other MCP-compatible clients.

X Server MCP server

Features

  • Timeline & Search - Home timeline, search recent posts (7-day window)
  • Post Management - Create, reply, quote, delete posts with optional media
  • Engagement - Like/unlike, retweet/undo, bookmark/unbookmark
  • User Data - Mentions, liked posts, followers, following, blocks, mutes, owned lists, followed lists, and list memberships
  • User Lookup - Get user profiles and their recent posts
  • Media Upload - Images (PNG, JPEG, GIF, WEBP) and videos (MP4, MOV, AVI, WEBM, M4V) via v2 upload API
  • Dual Auth - OAuth 1.0a for post operations, OAuth 2.0 for media upload (v1.1 upload was sunset June 2025)
  • Rate Limiting - Automatic per-endpoint rate limit tracking with clear error messages
  • TypeScript - Full type safety, modular file structure

Prerequisites

  • Node.js >= 18.0.0
  • X (Twitter) Developer Account
  • Claude desktop app (or any MCP-compatible client)

X API Access & Pricing

TierCostPost ReadsPost WritesNotes
Free$0~100/month~500/monthNo likes/follows; media upload requires OAuth 2.0
Basic$200/month10,000/month3,000/monthSearch, limited read access
Pro$5,000/month1,000,000/month300,000/monthFull search, filtered stream
Pay-Per-UseCredit-based~$0.005/readVariesLaunched Feb 2026, 2M reads cap

Like and Follow endpoints were removed from the Free tier in August 2025. Follows/Blocks endpoints are Enterprise-only as of 2025.

Installation

git clone https://github.com/DataWhisker/x-mcp-server.git
cd x-mcp-server
npm install
npm run build

Authentication

The server supports two authentication methods. You need at least one configured.

OAuth 1.0a (Required for basic operations)

Works for all post/engagement/search/user operations.

Environment VariableDescription
TWITTER_API_KEYConsumer Key (API Key)
TWITTER_API_SECRETConsumer Secret (API Key Secret)
TWITTER_ACCESS_TOKENUser Access Token
TWITTER_ACCESS_SECRETUser Access Token Secret

Setup: In the X Developer Portal:

  1. Create a project and app
  2. Enable OAuth 1.0a under "User authentication settings"
  3. Set permissions to "Read and Write"
  4. Generate Consumer Keys and Access Tokens

OAuth 2.0 (Required for media upload)

The v1.1 media upload endpoint was sunset in June 2025. Media upload now requires OAuth 2.0 via the v2 upload API.

Option A - Direct access token:

VariableDescription
TWITTER_OAUTH2_ACCESS_TOKENOAuth 2.0 user access token (expires in 2 hours)

Option B - Auto-refresh (recommended for long-running servers):

VariableDescription
TWITTER_CLIENT_IDOAuth 2.0 Client ID
TWITTER_CLIENT_SECRETOAuth 2.0 Client Secret (optional for public clients)
TWITTER_OAUTH2_REFRESH_TOKENOAuth 2.0 Refresh Token

Tokens are auto-refreshed and persisted to ~/.x-mcp-tokens.json.

Setup: In the X Developer Portal:

  1. In your app settings, enable OAuth 2.0
  2. Set type to "Confidential client" or "Public client"
  3. Add a callback URL
  4. Request scopes: tweet.read, tweet.write, users.read, media.write, offline.access, like.read, like.write, bookmark.read, bookmark.write, follows.read, block.read, mute.read, list.read

Claude Desktop Configuration

Add to %APPDATA%/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "x": {
      "command": "node",
      "args": ["C:/path/to/x-mcp-server/build/index.js"],
      "env": {
        "TWITTER_API_KEY": "your-api-key",
        "TWITTER_API_SECRET": "your-api-secret",
        "TWITTER_ACCESS_TOKEN": "your-access-token",
        "TWITTER_ACCESS_SECRET": "your-access-secret",
        "TWITTER_OAUTH2_ACCESS_TOKEN": "your-oauth2-token"
      }
    }
  }
}

Optional Xquik Search Backend

search_tweets can use Xquik while the rest of the server keeps the default X API client. Set:

VariableDescription
X_MCP_SEARCH_BACKEND=xquikRoutes only search_tweets to Xquik
XQUIK_API_KEYXquik API key
XQUIK_API_BASE_URLOptional base URL, defaults to https://xquik.com/api/v1

Available Tools (26)

Timeline & Search

ToolDescriptionKey Parameters
get_home_timelineGet recent posts from home timelinelimit (1-100)
search_tweetsSearch recent posts (7-day window)query, limit

Post Management

ToolDescriptionKey Parameters
get_tweetLook up a post by IDtweet_id
create_tweetCreate a post with optional mediatext, image_path?, video_path?
reply_to_tweetReply to a post with optional mediatweet_id, text, image_path?, video_path?
quote_tweetQuote a post with commentarytweet_id, text
delete_tweetDelete your posttweet_id

Engagement

ToolDescriptionKey Parameters
like_tweetLike a post (Basic+ tier)tweet_id
unlike_tweetRemove a liketweet_id
retweetRepost to your timelinetweet_id
undo_retweetRemove a reposttweet_id
bookmark_tweetBookmark for latertweet_id
unbookmark_tweetRemove a bookmarktweet_id
get_bookmarksGet your bookmarkslimit (1-100)

Users

ToolDescriptionKey Parameters
get_userLook up user by usernameusername
get_user_tweetsGet a user's recent postsusername, limit
get_user_mentionsGet posts mentioning a userusername, limit
get_user_liked_tweetsGet a user's liked postsusername, limit
get_user_followersGet a user's followersusername, limit
get_user_followingGet accounts a user followsusername, limit
get_blocking_usersGet users blocked by the authenticated accountlimit
get_muting_usersGet users muted by the authenticated accountlimit
get_owned_listsGet lists owned by a userusername, limit
get_followed_listsGet lists followed by a userusername, limit
get_list_membershipsGet lists a user belongs tousername, limit

Articles

ToolDescriptionKey Parameters
get_articleFetch the full body content of an X Article posttweet_id

Media Support

  • Images: PNG, JPEG, GIF, WEBP (max 5MB)
  • Videos: MP4, MOV, AVI, WEBM, M4V (max 512MB, streamed chunked upload)
  • Cannot attach both image and video to the same post
  • Requires OAuth 2.0 credentials (v1.1 upload sunset June 2025)
  • Path restriction: Only files within your home directory or system temp directory can be uploaded (prevents path traversal)

Security

  • Input validation: Tweet IDs must be numeric (1-20 digits), usernames must match [A-Za-z0-9_]{1,15}
  • Media path restriction: Upload paths are validated against an allow-list (home directory, temp directory)
  • Token storage: OAuth 2.0 tokens persisted to ~/.x-mcp-tokens.json with 0o600 permissions (Unix). On Windows, file permissions are not enforced by the OS - protect the file via NTFS ACLs or use environment variables instead.
  • Error sanitization: X API error details are logged server-side only; sanitized messages are returned to MCP clients
  • Refresh mutex: Concurrent token refresh attempts are deduplicated to prevent race conditions

Development

npm run build    # Compile TypeScript
npm run dev      # Watch mode
npm start        # Run the server

Project Structure

src/
  index.ts              # MCP server entry point & handler dispatch
  client.ts             # Twitter client setup (OAuth 1.0a + OAuth 2.0)
  media.ts              # v2 media upload (simple + chunked)
  rate-limit.ts         # Per-endpoint rate limiting
  tools/
    definitions.ts      # All 16 tool schemas
    handlers.ts         # Tool handler implementations

Pairing with GetXAPI for Cheaper Read Operations (Optional)

For users who need a cheaper or higher-rate-limit option for read-only Twitter (X) operations such as tweet search, profile lookup, and follower lists, this project can be paired with GetXAPI, a budget Twitter / X data API priced at $0.05 per 1K tweets versus the official X API basic tier at $200 / month.

Two integration patterns:

  1. Run side-by-side in your AI client. Keep this project for its primary workflow and add the official GetXAPI MCP server for read-heavy tasks. Each tool name routes to the backend best suited for that operation.

  2. Add a backend toggle. For a code-level reference of an optional alternative backend behind a single env variable, see the PR pattern merged into a sibling project.

GetXAPI quick start:

  • Signup with $0.50 free credit (no card required): https://getxapi.com/signup
  • Official GetXAPI MCP server: https://github.com/getxapi/getxapi-mcp
  • npm: @getxapi/mcp
  • Pay-per-call pricing: $0.001 / call, $0.05 / 1K tweets

This pairing is fully optional. No behavior change for existing users.

License

MIT

Contributing

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add some amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

Quick Install

Quick Actions

View on GitHubView All Servers

Key Features

Model Context Protocol
Secure Communication
Real-time Updates
Open Source

Boost your projects with Wisdom Gate LLM API

Supporting GPT-5, Claude-4, DeepSeek v3, Gemini and more.

Enjoy a free trial and save 20%+ compared to official pricing.

Learn More
JUHE API Marketplace

Accelerate development, innovate faster, and transform your business with our comprehensive API ecosystem.

JUHE API VS

  • vs. RapidAPI
  • vs. API Layer
  • API Platforms 2025
  • API Marketplaces 2025
  • Best Alternatives to RapidAPI

For Developers

  • Console
  • Collections
  • Documentation
  • MCP Servers
  • Free APIs
  • Temp Mail Demo

Product

  • Browse APIs
  • Suggest an API
  • Wisdom Gate LLM
  • Global SMS Messaging
  • Temp Mail API

Company

  • What's New
  • Welcome
  • About Us
  • Contact Support
  • Terms of Service
  • Privacy Policy
Featured on Startup FameFeatured on Twelve ToolsFazier badgeJuheAPI Marketplace - Connect smarter, beyond APIs | Product Huntai tools code.marketDang.aiFeatured on ShowMeBestAI
Copyright © 2026 JUHEDATA HK LIMITED - All rights reserved