Live · 12 tools · Streamable HTTP

Realistic fake data for MCP agents.
No setup.

Paste one URL into Claude Code, Cursor, or Claude Desktop. Your agent gets a hosted MCP server with 12 pre-built tools returning realistic fake data. Skip the scaffolding. Start prototyping.

https://mockmcp.io/mcp

Connect your client

Native Streamable HTTP. No local proxy required.

claude mcp add --transport http mockmcp https://mockmcp.io/mcp
// ~/.cursor/mcp.json
{
  "mcpServers": {
    "mockmcp": {
      "url": "https://mockmcp.io/mcp"
    }
  }
}
// Settings → Connectors → Add custom connector
// URL: https://mockmcp.io/mcp
// Name: MockMCP

12 tools, 6 surfaces

Everything you'd wire into an agent demo. All deterministic — same input, same output.

list_users Paginated list of mock users.
get_user Fetch one mock user by id or seed.
create_user Create a mock user (no persistence).
list_products Paginated list of mock products.
get_product Fetch one mock product.
list_orders Mock orders with status filter.
get_order Fetch one mock order.
create_order Create a mock order (no persistence).
list_events Mock analytics events.
create_event Record a mock event.
send_email Returns fake success (nothing sent).
search_knowledge_base Mock KB search with ranked results.

Limits

Free tier is generous enough for prototyping. Heavy use → paid tier waitlist.

Per-minute
30
requests per fingerprint
Per-day
500
requests per fingerprint
Setup
0
accounts, keys, config

Questions

Is the data real?
No. Every tool returns generated fake data, seeded from your inputs. Nothing persists. Perfect for prototyping, tutorials, or evals.
Do I need an account?
No. No signup, no API key, no config. Paste the URL, run your agent.
Why would I use this instead of a real API?
Because your agent isn't finished and neither is your backend. MockMCP lets you design and test agent logic before the real plumbing exists.
What about rate limits in CI?
If you're running evals against MockMCP at scale, hit the waitlist. A paid tier with reliability guarantees is coming for exactly that use case.
Can I see the source?
Yes — open source at github.com/k-cupples/mockmcp.