X Hosted MCP at $0.01/Call: A New Baseline for Agent Data Access Costs
By Eric Bush · July 1, 2026 · 8 min read
What X Launched
On June 30, 2026, X (Twitter) launched its hosted MCP server, letting AI agents talk to the X API via the Model Context Protocol without setting up their own OAuth flow or proxy. Setup steps: create an X developer app, top up billing, obtain a config ID, and connect it in Claude Code, Cursor, Codex, or any MCP-compatible agent host.
The pricing hook: personal tier $0.01 per API call, or 1,000 calls for $1. Early users reported pulling three days of bookmarks for $0.10. That is the number to anchor on when comparing MCP costs across platforms.
MCP Pricing Across Platforms
MCP isn't a pricing model — it's a protocol. What matters is what the platform behind the MCP server charges for the underlying API access:
| Platform | MCP price model | Effective per-call |
|---|---|---|
| X (hosted MCP) | $0.01 / call | $0.01 |
| GitHub (via GitHub API) | Free tier + paid Enterprise | $0 (with rate limits) |
| Slack (via Slack API) | Included in workspace plan | $0 |
| LinkedIn (community MCP) | Requires LinkedIn Sales Navigator | $79/mo flat |
| Sentry (official MCP) | Included in Sentry plan | $0 (with plan) |
X's per-call pricing looks expensive on this table, but the comparison is misleading. GitHub's free tier caps at ~5,000 requests/hour and Slack caps by tier. X's $0.01 is uncapped — the meter just keeps running. For low-volume research agents this is fine. For a monitoring agent polling every 10 seconds, it's a bill.
Agent Workload Cost Scenarios
Scenario 1: Research agent building a weekly digest
A research agent pulls tweets from 20 accounts, weekly. That's ~500 API calls per run, ~$5/week or $20/month. Cheap. This is the intended use case.
Scenario 2: Sentiment monitoring on a brand
Monitor mentions of “Cursor” every 5 minutes with search + pull. That's ~576 calls/day, ~$5.76/day, or $173/month. Real money — comparable to a Cursor Team seat itself.
Scenario 3: Full-firehose social listening
For real-time firehose access, the per-call model breaks — you'd need X's Enterprise API tier, which starts at $5K/month and doesn't bill per call. Hosted MCP is not the right entry point for this use case.
Combined Cost with the LLM
An agent that calls X and processes tweets in the same session pays two meters: the MCP call fee and the LLM token cost. Rough estimate for the research digest scenario:
- X MCP calls: $5/week
- Claude Sonnet 5 promo (analyzing tweet content): ~$8/week at 2M input, 100K output tokens/session
- Total: ~$52/month for a weekly digest workflow
The MCP share is 24% of total agent cost. Meaningful but not dominant. If X had priced this at 5× the current level, MCP would become the cost driver.
What This Signals for MCP Pricing
X's $0.01/call is a psychological anchor. Historically MCP servers have been either free (extension of existing free APIs) or bundled into paid platforms. A per-call price on top of an API access fee is new. Other platforms watching:
- Reddit — has expensive API access but no hosted MCP; per-call pricing could restore agent access.
- LinkedIn — could unbundle Sales Navigator into MCP metering for agents specifically.
- Stack Overflow — currently free but rate-limited; a paid MCP tier would be viable.
The likely direction: platforms that lost publisher-side value to LLMs get another revenue stream from agent-side data access. Expect $0.005–0.02 per call to become the norm for social-data MCPs by end of 2026.
Practical Budgeting Guidance
If you're building an agent that touches X data:
- Cap the agent's per-run call budget explicitly in the MCP config.
- Use batched search queries instead of per-user pulls where possible.
- Cache results locally — MCP calls to X for the same query within an hour are almost always redundant.
- Track MCP spend and LLM token spend as separate line items so you know which is scaling.
The $0.01 per call sounds trivial; that's exactly when unbudgeted agents run 100K calls overnight. Treat MCP calls the same way you treat LLM tokens: measured, capped, alerted.
Want to calculate exact costs for your project?
Frequently Asked Questions
How much does the X hosted MCP cost per call?
$0.01 per API call on the personal tier, or roughly $1 per 1,000 calls. Enterprise access is priced separately and starts around $5K/month for firehose volumes.
Do I still need an X developer account to use the hosted MCP?
Yes — you need to create an X developer app, top up billing, and generate a config ID. The hosted MCP wraps the API, not the auth setup.
How does X MCP pricing compare to GitHub or Slack MCPs?
GitHub and Slack MCPs are effectively free within existing plan limits. X is the first major platform to charge per MCP call directly, though its Enterprise tier moves back to flat-rate for firehose access.
What's a reasonable monthly MCP budget for a social research agent?
For weekly digest workflows on 10–20 accounts, expect $20–50/month. For continuous brand monitoring at 5-minute polling cadence, budget $150–200/month. Firehose-scale monitoring belongs on Enterprise tier.
Can Cursor and Codex both use the X hosted MCP?
Yes — any MCP-compatible agent host works. The setup is a one-time config ID that any Claude Code, Cursor, or Codex CLI can reference.
Related Articles
Running 3 AI Agents on 1 GPU: The Real Cost Math for Self-Hosted Multi-Agent Coding
Three small LLMs serving three AI coding agents on a single 8 GB GTX 1080 — the engineering blueprint a developer published shows how VRAM bookkeeping makes self-hosted multi-agent setups viable on hardware you already own. We unpack the cost trade-offs.
OpenRouter Launches MCP Server: One-Click Model Comparison Without Leaving Your Coding Agent
OpenRouter released an MCP server giving coding agents real-time access to model pricing, benchmark scores, and documentation. We walk through what it does, how to install it in Claude Code or Cursor, and how it changes day-to-day model selection workflow.
OpenRouter Adds Data Residency Routing: Compliance Cost vs Self-Hosting a Gateway
OpenRouter's June 2026 routing controls let teams enforce data residency through provider order, allow_fallbacks, and ZDR flags. We compare the compliance cost against self-hosting LiteLLM.