Server data from the Official MCP Registry
MCP server for James Bloom MockServer - create expectations, verify requests, and manage mock state
MCP server for James Bloom MockServer - create expectations, verify requests, and manage mock state
Valid MCP server (2 strong, 4 medium validity signals). 4 known CVEs in dependencies (1 critical, 2 high severity) Package registry verified. Imported from the Official MCP Registry.
12 files analyzed · 5 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: MOCKSERVER_HOST
Environment variable: MOCKSERVER_PORT
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-akkshay10-mcpclientmock": {
"env": {
"MOCKSERVER_HOST": "your-mockserver-host-here",
"MOCKSERVER_PORT": "your-mockserver-port-here"
},
"args": [
"-y",
"mockserver-mcp"
],
"command": "npx"
}
}
}From the project's GitHub README.
An MCP (Model Context Protocol) server for interacting with James Bloom's MockServer. This enables AI assistants to create mock HTTP expectations, verify requests, clear state, and manage MockServer instances programmatically.
You need a running MockServer instance:
# Using Docker (easiest)
docker run -d -p 1080:1080 mockserver/mockserver
npx mockserver-mcp
npm install -g mockserver-mcp
mockserver-mcp
| Variable | Description | Default |
|---|---|---|
MOCKSERVER_HOST | MockServer hostname | localhost |
MOCKSERVER_PORT | MockServer port | 1080 |
Add to your MCP client configuration file (e.g., Claude Desktop, Kiro, Cursor):
{
"mcpServers": {
"mockserver": {
"command": "npx",
"args": ["-y", "mockserver-mcp"],
"env": {
"MOCKSERVER_HOST": "localhost",
"MOCKSERVER_PORT": "1080"
}
}
}
}
For shared team MockServer, change MOCKSERVER_HOST to your server's address.
Create a mock HTTP expectation on MockServer.
Parameters:
httpRequest (required): Request matching criteria
method: HTTP method (GET, POST, PUT, DELETE, etc.)path: URL path to matchqueryStringParameters: Query parameters to matchheaders: Headers to matchbody: Body matcher with type (STRING, JSON, REGEX, XPATH, JSON_PATH) and valuehttpResponse: Response configuration
statusCode: HTTP status codeheaders: Response headersbody: Response body (string or object)delay: Response delay with timeUnit and valuetimes: How many times to match (remainingTimes, unlimited)timeToLive: Expectation lifetime (timeUnit, timeToLive)Example:
{
"httpRequest": {
"method": "GET",
"path": "/api/users"
},
"httpResponse": {
"statusCode": 200,
"body": { "users": [] }
}
}
Verify that requests matching criteria were received by MockServer.
Parameters:
httpRequest (required): Request matching criteria (same as create_expectation)times: Expected request count
atLeast: Minimum number of requestsatMost: Maximum number of requestsexactly: Exact number of requestsExample:
{
"httpRequest": {
"method": "POST",
"path": "/api/orders"
},
"times": {
"atLeast": 1
}
}
Clear expectations and recorded requests from MockServer.
Parameters:
httpRequest (optional): Request matcher to clear specific expectations. If not provided, clears all.Example:
{
"httpRequest": {
"path": "/api/users"
}
}
Perform a full reset of MockServer, clearing all expectations and recorded requests.
Parameters: None
Retrieve recorded requests from MockServer.
Parameters:
httpRequest (optional): Request matcher to filter recorded requestsExample:
{
"httpRequest": {
"method": "GET"
}
}
Get MockServer connection status and configuration.
Parameters: None
API mocking enables early testing — start building and testing your frontend or integrations before the backend is ready. No more waiting. Ship faster.
MIT
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.