Mockmcp

Created By
Kyle Cupples2 months ago
Hosted MCP endpoint that returns realistic fake data for prototyping agents. Paste one URL into Claude Code, Cursor, or Claude Desktop — 12 pre-built tools covering users, products, orders, events, email, and knowledge base search. No signup, no config, no auth. Built for developers who want to prototype agent workflows before wiring up a real backend.
Overview

What it is

MockMCP is a hosted Model Context Protocol endpoint that returns realistic fake data for prototyping agents. Paste one URL into Claude Code, Cursor, or Claude Desktop — no signup, no config, no API keys. 12 pre-built tools covering the scenarios in most agent tutorials.

Built for developers who want to design and test agent workflows before the real backend exists.

Quickstart

Claude Code

claude mcp add --transport http mockmcp https://mockmcp.io/mcp

Cursor — add to ~/.cursor/mcp.json:

{
  "mcpServers": {
    "mockmcp": {
      "url": "https://mockmcp.io/mcp"
    }
  }
}

Claude Desktop — Settings → Connectors → Add custom connector → paste https://mockmcp.io/mcp.

All three clients speak Streamable HTTP natively. No mcp-remote proxy required.

Tools

┌───────────────────────┬─────────────────────────────────────────┐
│         Tool          │              What it does               │
├───────────────────────┼─────────────────────────────────────────┤
│ list_users            │ Paginated list of mock users├───────────────────────┼─────────────────────────────────────────┤
│ get_user              │ One mock user by id or seed             │
├───────────────────────┼─────────────────────────────────────────┤
│ create_user           │ Create a mock user (no persistence)├───────────────────────┼─────────────────────────────────────────┤
│ list_products         │ Paginated list of mock products         │
├───────────────────────┼─────────────────────────────────────────┤
│ get_product           │ One mock product                        │
├───────────────────────┼─────────────────────────────────────────┤
│ list_orders           │ Mock orders with optional status filter │
├───────────────────────┼─────────────────────────────────────────┤
│ get_order             │ 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 delivered │
├───────────────────────┼─────────────────────────────────────────┤
│ search_knowledge_base │ Mock KB search with ranked results      │
└───────────────────────┴─────────────────────────────────────────┘

All data is seeded from your inputs — same input, same output across requests.

Free tier limits

- 30 requests per minute per hashed fingerprint
- 500 requests per day per hashed fingerprint

429 responses include retry_after_seconds and an upgrade_url. Successful responses carry
X-RateLimit-* headers. Drop your email at mockmcp.io/waitlist for paid-tier access when it
launches.

Links

- Website: mockmcp.io
- Source: github.com/K-Cupples/mockmcp (MIT)
- Paid tier waitlist: mockmcp.io/waitlist

Server Config

{
  "mcpServers": {
    "mockmcp": {
      "url": "https://mockmcp.io/mcp"
    }
  }
}
Project Info
Created At
2 months ago
Updated At
2 months ago
Author Name
Kyle Cupples
Star
-
Language
-
License
-
Category

Recommend Servers

View All
//beforeyouship — LLM Cost Modeling From Your Editor
@Indiegoing

Query realistic LLM cost models without leaving your editor. beforeyouship models the **true monthly cost** of an LLM app architecture — retries, prompt caching, batch discounts, infra overhead, and 3×/10× growth — across GPT-5.x, Claude, Gemini, DeepSeek, and more. Not a token calculator: a planning tool for the design phase, before you commit to a stack. **No API key needed to try it** — demo mode covers the six free-tier models. A Pro key from [beforeyouship.dev](https://beforeyouship.dev) unlocks the full 18-model catalog. ## What you can ask - "How much will a RAG chatbot cost at 10,000 requests/day?" - "Compare Claude Haiku vs Gemini Flash pricing for my workload" - "What's the cheapest model for a multi-step agent at scale?" - "Show me current per-token prices for Anthropic models" ## Tools ### `estimate_cost` Full cost model for an architecture at a given usage level. Returns Naive / Realistic / Worst Case monthly cost per model, 3×/10× growth scenarios, and an opinionated recommendation with reasoning. ### `get_model_prices` Current per-1M-token pricing — input, output, cached input, batch — with context windows and staleness metadata. ### `list_archetypes` Seven preset architecture patterns (simple chatbot, chatbot with history, RAG pipeline, multi-model router, coding assistant, document processor, multi-step agent) used as starting points for estimates. ## Setup **Claude Code:** ​```bash claude mcp add --transport http beforeyouship https://beforeyouship.dev/api/mcp ​``` **Cursor / other clients** — add a remote server: ​```json { "mcpServers": { "beforeyouship": { "type": "streamable-http", "url": "https://beforeyouship.dev/api/mcp" } } } ​``` Add an `Authorization: Bearer bys_...` header with a Pro key for the full catalog. ## Try it > Estimate the monthly cost of a RAG pipeline at 10,000 requests/day

13 hours ago
Shippo
@Shippo

21 hours ago