AgentStack
MCP verified MIT Self-run

Mcpmock

mcp-dimirolz-mcpmock · by Dimirolz

Rapid MCP server prototyping from a single YAML file

No reviews yet
0 installs
19 views
0.0% view→install

Install

$ agentstack add mcp-dimirolz-mcpmock

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Mcpmock? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

mcpmock

A Bun + TypeScript playground for rapidly prototyping Model Context Protocol (MCP) servers. Describe your mock server in a single YAML file, run the CLI, and the server (stdio or HTTP) responds with mocked data. The goal is to help iterate on tool shapes and responses without building full backends.

Project status

  • Single-file YAML configs (examples/basic/mock.yaml) load into a typed representation with clear errors.
  • The CLI now spins up a mock MCP server:
  • transport: stdio (default) connects via stdin/stdout for agent integrations.
  • transport: http starts an Express server backed by StreamableHTTPServerTransport.
  • Tool calls return the configured response as text (and structured content when applicable).

Installation

Once the package is published to npm you can install or run it instantly:

npm install -g mcpmock
# or run without installing
npx mcpmock ./examples/basic/mock.yaml

Usage

Point the CLI at any project YAML file:

npx mcpmock path/to/server.yaml
  • transport: stdio (default) connects via stdin/stdout for agent integrations.
  • transport: http starts an Express server backed by StreamableHTTPServerTransport.
  • Cross-origin requests are enabled (with Mcp-Session-Id exposed) so browsers like MCP Inspector can connect directly.

If the configuration contains mistakes, the CLI prints readable error messages with annotated paths so coding agents (and humans) can quickly fix them.

Local development

To work on the CLI locally:

bun install
bun run build
node dist/index.js examples/basic/mock.yaml

The build step emits the Node-ready bundle (dist/index.js) and TypeScript declarations used when publishing to npm.

Configuration format

All configuration lives in one YAML file. Example (examples/basic/mock.yaml):

server:
  name: demo-mock
  transport: stdio
  description: Minimal mock MCP server example

tools:
  - name: echo
    description: Returns the provided message
    input_schema:
      type: object
      properties:
        message:
          type: string
      required:
        - message
    response:
      message: default echo

Response templating

Within response values you can reference tool arguments using {{ args.* }} expressions. Strings are interpolated at call time and work inside nested objects and arrays. For example:

tools:
  - name: echo
    response:
      message: "You said: {{ args.message }}"

If a referenced argument is missing, the tool call raises an error to make debugging easier.

Key rules:

  • Every tool must have a unique name.
  • input_schema follows JSON Schema conventions (currently a subset focused on objects, strings, numbers, booleans, arrays).
  • response can be any JSON value (plain strings work too if you want Markdown).

Roadmap

  1. Harden the HTTP transport (SSE sessions, resumability, auth helpers).
  2. Provide richer response scripting options (multiple scenarios, templating).
  3. Build a companion MCP client CLI to run scripted interactions, log tool calls, and support lightweight evals.
  4. Support optional multi-file layouts for large projects.
  5. Package for npm distribution and provide compiled binaries with bun build --compile.

Contributions, ideas, and feedback are welcome! Feel free to sketch new formats in examples/ and iterate on the CLI.***

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.