mcp-mock
A lightweight mock MCP server for local testing and resilience experiments, providing predictable tool responses with simulated latency and errors.
README
mcp-mock
mcp-mock is a lightweight synthetic mock server for the Model Context Protocol (MCP). It is designed for local testing, demos, and resilience experiments where you want a predictable MCP endpoint without depending on a real backend.
The current codebase includes:
- a
MockMCPServerimplementation for registering tools and serving responses - a synthetic response generator powered by Faker
- a chaos layer for latency and injected failures
- a CLI entry point for running a mock server from a schema file
- a pytest suite covering the core behaviors
Project layout
mcp-mock/
├── pyproject.toml
├── README.md
├── LICENSE
├── src/
│ └── mcp_mock/
│ ├── __init__.py
│ ├── chaos.py
│ ├── cli.py
│ ├── generator.py
│ └── server.py
└── tests/
├── test_chaos.py
├── test_cli.py
├── test_generator.py
└── test_server.py
Installation
Install the package from the project root:
python -m pip install -e .
Install development dependencies as well:
python -m pip install -e ".[dev]"
Usage
mcp-mock is most useful when you want a predictable MCP server for local development, test automation, or demos. You can either run it from the command line with a schema file or create a server directly in Python.
CLI usage
The CLI entry point is mcp-mock serve. It reads a JSON file that describes the tools you want to expose and starts a mock MCP server over stdio.
Run a server from a schema file:
mcp-mock serve --schema ./tools_schema.json
Add simulated latency and failure injection:
mcp-mock serve --schema ./tools_schema.json --latency 100 --error-rate 0.1
CLI options
--schemaor-s: required path to a JSON schema file--latency: adds a delay in milliseconds before each tool response--error-rate: injects failures probabilistically, from0.0to1.0
Python API usage
You can also create a server programmatically in Python.
from mcp_mock.chaos import ChaosConfig
from mcp_mock.server import MockMCPServer
chaos = ChaosConfig(latency_ms=50, error_rate=0.05)
server = MockMCPServer(name="DemoServer", chaos=chaos)
server.register_tool(name="get_user", description="Get a user")
server.run_stdio()
This example does the following:
- creates a mock server named
DemoServer - attaches a chaos configuration with 50ms latency and a 5% error rate
- registers a tool called
get_user - starts the server over stdio
Registering custom handlers
If you want more control than the built-in synthetic responses, you can provide a custom handler when registering a tool.
from mcp_mock.server import MockMCPServer
server = MockMCPServer(name="DemoServer")
async def get_user_handler(user_id: str):
return {"id": user_id, "name": "Ada Lovelace"}
server.register_tool(
name="get_user",
description="Return a user record",
handler=get_user_handler,
)
Schema file format
A schema file should contain a top-level object with a server name and a list of tools. A simple example is shown below:
{
"name": "ToolServer",
"tools": [
{
"name": "get_user",
"description": "Get a user by ID"
},
{
"name": "execute_sql",
"description": "Execute a SQL query"
}
]
}
You can expand this format with additional metadata if you want to describe more complex tools, but the current implementation focuses on simple tool registration and synthetic responses.
When to use mcp-mock
Use mcp-mock when you want to:
- test MCP integrations locally without a real backend
- simulate slow or flaky tool responses
- create demos with predictable tool outputs
- validate client behavior under latency and injected errors
Development
Run the test suite:
pytest -q
License
This project is licensed under the MIT License. See LICENSE for details.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.