G

mcpmock

...
Created 12/20/2024bystrowk

Language:

Go

Stars:

6

Forks:

0

mcpmock

CLI tool that generates a mock Model Context Protocol server from list of cases in a YAML file.

Installation

From npm: npm install -g @strowk/mcpmock

From Github Releases: Download, unpack and put binary in your PATH

From sources:

go get github.com/strowk/mcpmock
go install github.com/strowk/mcpmock

Usage

For example if you define something like this in a YAML file:

case: List tools

# requesting list of tools
in: {"jsonrpc": "2.0", "method": "tools/list", "id": 1}

# expect one tool in the list
out: {"jsonrpc": "2.0", "result":{ "tools": [{"description": "Hello MCP", "inputSchema": {"type": "object"}, "name": "hello"}] }, "id": 1}

---


case: Call Hello tool

# calling the tool
in: {"jsonrpc": "2.0", "method": "tools/call", "params": {"name": "hello", "arguments": {}}, "id": 1}

# expect "Hi!" as output
out: {
  "jsonrpc": "2.0", 
  "id": 1,
  "result": {
    "content": [
      {"type": "text", "text": "Hi!"}
    ],
    "isError": false
  }, 
}

Then if you put it in the folder testdata (make sure file also ends with _test.yaml) and run mcpmock like this:

mcpmock serve testdata

It would start a mock MCP server with stdio transport that would serve the cases defined in the YAML file.

If you now copy and paste this into your terminal:

{"jsonrpc": "2.0", "method": "tools/list", "id": 1}
            , you should see list of tools as is defined in first MCP case.

And sending this:

{"jsonrpc": "2.0", "method": "tools/call", "params": {"name": "hello", "arguments": {}}, "id": 1}

, you should get the output as defined in second case.

It would also take care to replace the id field in the response with the id from the request, so if you send this:

{"jsonrpc": "2.0", "method": "tools/call", "params": {"name": "hello", "arguments": {}}, "id": 2}

, you should get the output as defined in second case, but with id field set to 2.

Last updated: 12/22/2024

Publisher info

strowk's avatar

strowk

9
followers
0
following
52
repos

More MCP servers built with Go

ocireg-mcp

An MCP (Model Context Protocol) server that provides tools for querying OCI registries and image references.

By StacklokLabs
mcp-helm

MCP server for Helm package manager

By zekker6
osv-mcp

An SSE-based MCP server that allows LLM-powered applications to query the OSV database for vulnerability information

By StacklokLabs