x-mcp-ai
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@x-mcp-aiWhat are people saying about the Model Context Protocol this week?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
x-mcp-ai — X (Twitter) MCP Server
An MCP server that exposes the X (Twitter) API v2 to MCP clients — Claude Code, Claude Desktop, VS Code, Cursor, or any MCP-compatible agent — as a curated set of typed tools, gated by a two-axis policy model and aware of the 2026 pay-per-use pricing so an agent can never quietly overspend.
Status: pre-1.0, under active development, published on npm as
x-mcp-ai(currently0.8.0, published from CI with npm provenance). Pin an exact version while the project is on0.x(Setup). 41 tools across 12 packages are registered today; the full designed surface lives indocs/03-tool-catalog.mdand is landing package by package. The public API is unstable until1.0.0.
Contents: Quick demo · Features · Requirements · Setup · Configure credentials · Cost · Run / debug · Develop · Tools · Resources · Prompts · Project structure · Security notes · Data handling · Documentation · Support · Trademark
Quick demo
Once the server is wired into your MCP client, you drive it in natural language and the model picks the tool. Three representative asks:
// 1. Read (default read-only preset — no writes possible)
// "What are people saying about the Model Context Protocol this week?"
{
"tool": "x_search_recent",
"arguments": { "query": "\"model context protocol\" -is:retweet lang:en", "max_results": 25 }
}// 2. Engage (requires the `engage` preset or an explicit write:engagement allow)
// "Like that launch post for me."
{
"tool": "x_like_set",
"arguments": { "post_id": "1899…", "action": "like" }
}// 3. Publish (requires the `publish` preset or write:content)
// "Post: 'Shipping x-mcp-ai today.' — mind the cost."
// Every result carries cost_usd + session_total_usd; a URL in the text raises the price 13×.
{
"tool": "x_post_create",
"arguments": { "text": "Shipping x-mcp-ai today." }
}Related MCP server: x-mcp-server
Features
41 tools across 12 packages over the X API v2 — read posts, users and timelines, search (recent and full-archive), engage, publish, manage lists, upload media, walk the social graph, and read/send DMs behind an explicit opt-in.
Two-axis policy model (
operation:domain) with five presets —read-only(default),engage,publish,manage,full. Writes are opt-in; deny beats allow beats preset, per cell. Direct-message cells are double-locked:read:dm/write:dmare in no preset, not evenfull.Cost awareness built in. Since 2026-02-06 the X API v2 is pay-per-use. Every result reports its own
cost_usdand the runningsession_total_usd; an operator-setX_MCP_CREDIT_BUDGETwithX_MCP_BUDGET_MODE=hardrefuses calls that would exceed it, and the model cannot raise the cap.Two auth modes — OAuth 2.0 PKCE user context (primary, rotating refresh tokens, single-flight refresh) and app-only bearer for read-only deployments.
Security-first defaults — host-scoped
Authorizationheader, redirects never followed on token-bearing requests,0600token file written withO_NOFOLLOW/O_EXCL, untrusted-content marking on returned text, and media upload default-deny outside a realpath-containedX_MCP_MEDIA_DIR.Typed failures. Eleven error classes, each carrying
retryableandfix: "agent" | "operator", so the model retries what is retryable and escalates what is not.Structured output. Every tool advertises a JSON-Schema
outputSchemaand returnsstructuredContentalongside the text block.Availability class-gating, live per-endpoint rate-limit tracking (including the 24-hour app cap on post creation), cursor pagination, and compact result rendering.
Requirements
Node.js >= 22 (see
.nvmrc).An X developer account and app with an OAuth 2.0 client (Client ID; Client Secret only for confidential clients). App-only mode needs a bearer token instead.
Prepaid X API credits — the API bills per read and per write (see Cost).
Setup
The recommended install is the published package, pinned to an exact version while the
project is on 0.x — nothing to clone or build:
npx -y x-mcp-ai@0.8.0 doctor # sanity check; makes no billable callsThen point your MCP client at it:
// claude_desktop_config.json (Claude Desktop) / .mcp.json (Claude Code) / .cursor/mcp.json
{
"mcpServers": {
"x": {
"command": "npx",
"args": ["-y", "x-mcp-ai@0.8.0"],
"env": {
"X_MCP_AUTH_MODE": "oauth2",
"X_MCP_CLIENT_ID": "your-oauth2-client-id",
"X_MCP_POLICY": "read-only",
"X_MCP_CREDIT_BUDGET": "5.00",
"X_MCP_BUDGET_MODE": "hard"
}
}
}
}Running from a local checkout instead? Use "command": "node" with
"args": ["/abs/path/to/x-mcp/build/src/index.js"] and the same env map.
Claude Code from the CLI:
claude mcp add x --env X_MCP_POLICY=read-only -- npx -y x-mcp-ai@0.8.0Per-client instructions — Claude Desktop, Claude Code, VS Code (.vscode/mcp.json),
Cursor and MCP Inspector — are in
docs/10-operator-guide.md §4, together with the authorize
flow and ready-made env recipes.
From source (development)
Still fully supported — build the entry point and spawn it with node instead of npx:
git clone https://github.com/IvanBBaev/x-mcp.git
cd x-mcp
npm ci
npm run build # tsc → build/src/index.js
node build/src/index.js doctor # sanity check; makes no billable callsConfigure credentials
The server never prompts interactively; all configuration comes from environment variables
(canonical table: docs/02-architecture.md §4; a starting point:
.env.example).
Auth modes (X_MCP_AUTH_MODE):
oauth2(default) — OAuth 2.0 with PKCE. Run the one-time authorization flow with theauthorizesubcommand; tokens land inX_MCP_TOKEN_FILEand are refreshed automatically.app-only— application-only bearer token (X_MCP_BEARER_TOKEN); read endpoints only, no user context.
X_MCP_AUTH_MODE=oauth2 X_MCP_CLIENT_ID=… node build/src/index.js authorizeEnvironment variables
Variable | Default | Secret | Purpose |
|
|
| |
| OAuth 2.0 client ID (required for | ||
| ✅ | OAuth 2.0 client secret (confidential clients only). | |
| ✅ | App-only bearer token; valid only with | |
| OS-resolved | Path to the rotating OAuth 2.0 token store ( | |
|
|
| |
|
| Preset: | |
| Comma-separated | ||
| Comma-separated cells to remove (wins over allow and preset). | ||
|
|
| |
| Session spend cap, USD (e.g. | ||
|
|
| |
| Comma-separated availability classes to enable ( | ||
| Directory uploads must | ||
| Multi-account profiles file. | ||
| Active profile name (required with a profiles file). | ||
|
| API base URL; must be | |
|
|
| |
|
| Per-request timeout, milliseconds. | |
|
|
|
Any other X_MCP_* variable is ignored with a startup warning — that is the typo detector.
Every fatal configuration error names the variable at fault.
Two-axis access policy
Every tool maps to one policy cell — an operation:domain pair. Operations escalate
read → write → destructive; domains are content, user, account, engagement,
social-graph, moderation, dm. A preset unlocks a set of the 12 valid cells;
X_MCP_POLICY_ALLOW adds cells, X_MCP_POLICY_DENY removes them, and
deny > allow > preset.
Preset | Grants | Callable tools |
| all | 21 |
| read-only + | 26 |
| engage + | 32 |
| publish + | 34 |
| every non-DM cell — adds | 37 |
DM cells are never in a preset — not even
full.read:dmandwrite:dmmust be granted explicitly viaX_MCP_POLICY_ALLOW(all 41 tools callable). Their unlock hint is deliberately withheld from policy errors, as it is for every other sensitive cell. Denied tools stay registered but annotated(disabled by policy <preset>)unlessX_MCP_HIDE_DENIED=1.
Note that manage grants destructive content operations only — follow/mute/block need
full or an explicit write:social-graph / destructive:social-graph allow.
Cost
Pay-per-use is the only pricing model. X retired the Free/Basic/Pro subscription tiers for new developers on 2026-02-06; every read and write draws down prepaid credits. Since 2026-04-16, a post whose text contains a URL costs $0.20 instead of $0.015 — 13×. Set
X_MCP_CREDIT_BUDGETbefore pointing an agent at a real account.
Indicative rates (verified 2026-07-22): post reads ~$0.005 each, user lookups and
follower/following reads ~$0.010, own-data reads ~$0.001, DM events ~$0.010, post create
$0.015 (or $0.20 with a URL), DM send $0.015, list create $0.010, engagement writes
currently $0. X also caps post reads at 2,000,000 per month. The authoritative table is
docs/01-api-landscape.md §3; the operator's view is
docs/10-operator-guide.md §5.
The budget is per process, advisory, resets on restart, and is model-immutable — there is no per-call override and no tool that raises it.
Run / debug
MCP clients spawn the server for you. To run it by hand:
X_MCP_POLICY=read-only node build/src/index.js serveCommand-line interface
Command | What it does |
| Start the MCP server over stdio. Running with no subcommand also serves. |
| Run the one-time OAuth 2.0 PKCE authorization flow and persist the token file. |
| Print resolved config, path/permission checks and the policy matrix; no billable calls. |
stdout carries JSON-RPC only; diagnostics, warnings and the single
x-mcp-ai: fatal: <reason> startup line go to stderr. Symptom-driven fixes are in
docs/11-troubleshooting.md.
Develop
git clone https://github.com/IvanBBaev/x-mcp.git
cd x-mcp
npm ci
npm run build # tsc → build/
npm run check # typecheck + lint + format:check + testOther scripts: npm run typecheck, npm run lint, npm run format / format:check,
npm test, npm run coverage (c8), and npm run verify (clean build + coverage + lint +
format check). See CONTRIBUTING.md for conventions and the full quality
gate.
Tools
The 41 tools registered today. "Read-only" marks tools in a read:* policy cell — those
callable under the default preset (DM reads excepted: they need an explicit allow).
"User" marks user-only tools, which require OAuth 2.0 user context and are unreachable
with an app-only bearer token. The designed surface, including tools not yet implemented,
is docs/03-tool-catalog.md; the full per-tool reference —
schemas, scopes, cost class, availability — is
docs/reference/tools.md.
The table below is generated from the tool registry by
npm run docs:gen. Do not edit it by hand:npm run checkregenerates and diffs it, so an edit fails CI rather than shipping. Same fordocs/reference/tools.md.
Package | Tool | Cell | Read-only | User | Description |
auth |
| read:account | ✅ | Report the active auth mode, the authenticated user (in user mode), granted OAuth scopes, the credential backend, detected availability, and the resolved policy matrix. | |
auth |
| read:account | ✅ | Dump the in-process rate-limit table — per bucket (endpoint-class × auth-context), each tracked window's limit, remaining, reset time, and whether it is currently exhausted. | |
posts |
| read:content | ✅ | Batch-fetch one or more X (Twitter) posts by numeric id or status URL (1-100 per call). | |
posts |
| write:content | ✅ | Create a post — text, optional reply_to_id, quote_id, media_ids[], poll {options[], duration_minutes}, reply_settings. | |
posts |
| destructive:content | ✅ | Delete own post by id. | |
posts |
| write:moderation | ✅ | Hide or unhide a reply to one of your own posts. | |
users |
| read:user | ✅ | Batch fetch of X (Twitter) user profiles by numeric id, @handle, bare handle, or the sentinel | |
search |
| read:content | ✅ | Search X (Twitter) posts from the last 7 days using the full v2 query syntax (from:, to:, conversation_id:, boolean operators). | |
search |
| read:content | ✅ | Return a volume histogram (post counts per time bucket) for an X (Twitter) v2 query over the last 7 days, at minute/hour/day granularity. | |
engagement |
| write:engagement | ✅ | Like or unlike a post as the authenticated user. | |
engagement |
| write:engagement | ✅ | Repost (retweet) a post as the authenticated user, or undo that repost. | |
engagement |
| write:engagement | ✅ | Add a post to the authenticated user's bookmarks or remove it. | |
engagement |
| read:content | ✅ | ✅ | The authenticated user's own bookmarks, newest first — the read half of |
timelines |
| read:content | ✅ | ✅ | Read the authenticated X (Twitter) user's home timeline in reverse-chronological order (the accounts they follow, newest first). |
timelines |
| read:content | ✅ | Read posts mentioning an X (Twitter) user (defaults to the authenticated user). | |
timelines |
| read:content | ✅ | Read an X (Twitter) user's own posts, newest first, optionally excluding replies and/or reposts, within optional time bounds. | |
graph |
| write:social-graph | ✅ | Follow or unfollow a user as the authenticated user. | |
graph |
| write:social-graph | ✅ | Mute or unmute a user as the authenticated user. | |
graph |
| destructive:social-graph | ✅ | Block or unblock a user as the authenticated user. | |
graph |
| read:social-graph | ✅ | List the accounts following an X (Twitter) user. | |
graph |
| read:social-graph | ✅ | List the accounts an X (Twitter) user follows. | |
graph |
| read:user | ✅ | Keyword search over X (Twitter) user profiles (names, handles, bios). | |
lists |
| write:content | ✅ | Create a list owned by the authenticated user. | |
lists |
| write:content | ✅ | Update the authenticated user's own list metadata — | |
lists |
| destructive:content | ✅ | Permanently delete the authenticated user's own list. | |
lists |
| read:content | ✅ | Read one list's metadata — name, description, privacy, member and follower counts, and owner handle. | |
lists |
| read:content | ✅ | The lists a user owns (defaults to the authenticated user). | |
lists |
| write:content | ✅ | Add a user to the authenticated user's own list or remove one — a single user per call. | |
lists |
| read:content | ✅ | The members of a list. | |
lists |
| read:content | ✅ | Posts from a list's timeline (recent posts by its members). | |
lists |
| write:engagement | ✅ | Follow a list as the authenticated user, or unfollow it. | |
lists |
| write:engagement | ✅ | Pin a list in the authenticated user's list view, or unpin it. | |
media |
| write:content | ✅ | Upload a local image, GIF, or video via the chunked v2 flow and return a | |
media |
| read:content | ✅ | ✅ | Check the async processing state of an uploaded media by |
dm |
| read:dm | ✅ | ✅ | List all recent direct-message events across the authenticated X (Twitter) user's conversations, newest first. |
dm |
| read:dm | ✅ | ✅ | List the direct-message events of one X (Twitter) DM conversation, newest first. |
dm |
| read:dm | ✅ | ✅ | List the direct-message events of the 1:1 X (Twitter) DM conversation with one participant, newest first. |
dm |
| write:dm | ✅ | Send an X (Twitter) direct message to exactly one target: an existing conversation (conversation_id) or a user (participant), creating the 1:1 conversation if needed. | |
archive |
| read:content | ✅ | Search the complete X (Twitter) archive back to 2006 using the full v2 query syntax (from:, to:, conversation_id:, boolean operators). | |
archive |
| read:content | ✅ | Return a volume histogram (post counts per time bucket) for an X (Twitter) v2 query over the complete archive back to 2006, at minute/hour/day granularity. | |
usage |
| read:account | ✅ | Report the post-read consumption of the current billing cycle against the monthly project cap (with an optional per-day and per-app breakdown), alongside the local credit-spend estimate for this session. |
DM reads return ids, timestamps and participants only; message bodies require an explicit
include_text: true on the call.
Tool packages
Package | Covers |
| Auth context and rate-limit windows. |
| Platform read-cap consumption and the local session-spend estimate. |
| Create, read and delete posts. |
| Recent post search and volume counts. |
| Full-archive search and counts. |
| Home, mentions and user timelines. |
| Likes, reposts and bookmarks. |
| User lookup. |
| Profile search, follow/mute/block, follower and following lists. |
| Full list lifecycle, membership, timeline, follow and pin. |
| Chunked media upload and status. |
| Direct-message reads and sends (double-locked). |
Resources
MCP resources are planned — a read-only exposure of the resolved auth context and live rate-limit table as addressable resources. Not shipped.
Prompts
MCP prompts are planned — guided templates for common workflows (e.g. cost-aware posting, audience research). Not shipped.
Project structure
Ports & adapters; the module layout is fixed in
docs/02-architecture.md §3:
src/
├── index.ts # composition root + stdio wiring
├── core/ # config, policy, budget, errors, ports, tooldef,
│ # registry, render, resolve, paginate, sanitize
├── api/ # http, ratelimit, errors, oauth2/, endpoints/
├── tools/ # one module per package (posts, search, graph, …)
├── mcp/ # compose, server, schema, structured, gates, session
└── cli/ # dispatch, authorize, doctorDependency rule: tools → core + api/endpoints, api → core, mcp → tools + core,
cli → core + api. Nothing in core reaches outward or does I/O.
Security notes
A summary; the full threat model and operator checklist live in
SECURITY.md and docs/04-security.md.
Host-scoped auth. The
Authorizationheader is attached only for the configured API origin; redirects are never followed on token-bearing requests (confused-deputy defense). Proxy environment variables are ignored.Token file hardening. Written
0600withO_NOFOLLOW/O_EXCL; refresh is single-flight with reload-under-lock and fails closed rather than racing.Untrusted content. Post/user/DM text returned to the model is marked as untrusted. Marking is not a semantic filter — the policy model is the real control against prompt injection.
No escalation recipes. A denial on a sensitive cell (
*:dm,destructive:*,*:social-graph) names the blocked cell but never the variable that would unlock it, so the model cannot relay an escalation recipe to you.Media default-deny. Uploads are refused unless the file
realpaths insideX_MCP_MEDIA_DIR.Cost is model-immutable. The session credit budget is operator-set; the model cannot raise or disable it.
Supply chain: pin the exact version. An unpinned
npx -y x-mcp-aiexecutes the newest publish on every client cold-start — in a process holding your tokens. Releases are published from CI with npm provenance. The npm package name isx-mcp-ai;x-mcpis only the repository name.
Data handling
Full statement: docs/12-privacy.md.
Nothing phones home. No telemetry, no analytics, no update check. The project runs no server; the only outbound destination is the X API at your configured base URL.
Credentials stay local. Client id/secret and bearer tokens live in the process environment; OAuth tokens live in a
0600file on your machine. No tool ever returns a credential, anddoctormasks them.Cost telemetry is local-only. The spend counter is in memory, per process, reported to the calling model and nowhere else.
Content you read leaves X for your model. Posts, profiles and DM events fetched by a tool are returned to your MCP client and therefore reach its model provider. Nothing is cached or persisted by this server.
Documentation
Page | For |
Install, authorize, per-client config, env recipes, cost control. | |
Startup errors, | |
What is sent where, what is stored, how to delete it. | |
Pay-per-use pricing, availability classes, platform caps. | |
Module layout and the canonical env-var table. | |
The designed tool surface and its classifications. | |
Threat model, policy model, token lifecycle. |
Support
If this project saves you time, support is welcome:
Trademark
x-mcp-ai is an independent, unofficial project. It is not affiliated with, endorsed by, or sponsored by X Corp. It talks to the official, publicly documented X API v2 and does not use any private, undocumented or scraping-based access.
"X", "Twitter", and related names, logos and marks are trademarks of X Corp. They are used here nominatively, only to describe what this software interoperates with. This project is released under the MIT License; trademark rights are not licensed.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceEnables AI assistants to access Twitter/X data including user profiles, tweets, search, and follower events via a set of MCP tools.1MIT
- AlicenseNot gradedqualityCmaintenanceEnables AI assistants to interact with X (Twitter) API v2 for posting tweets, searching, liking, retweeting, and more through natural language.MIT
- AlicenseNot gradedqualityBmaintenanceProvides programmatic X (Twitter) engagement via MCP, offering 24 tools for search, timelines, notifications, bookmarks, profiles, and tweet actions through a headless browser.MIT
- AlicenseBqualityCmaintenanceEnables interacting with Twitter/X through natural language, including searching tweets, posting, sending DMs, and managing timelines via any MCP client.8MIT
Related MCP Connectors
Hosted MCP for X/Twitter and Reddit. 12 read-only tools, no API keys, free during beta.
X (formerly Twitter) posts, profiles, and search for AI agents. Free key, self-minted, no signup.
128 REST operations. 120 MCP routes; 119 JSON/text ops. OAuth 2.1. Not affiliated with X Corp.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/IvanBBaev/x-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server