mcp-check-fixture
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-check-fixtureecho 'testing the pipeline'"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
mcp-check-fixture
The MCP server MCPJam's GitHub PR checks are validated against. This directory is
the seed for the standalone public repository mcpjam/mcp-check-fixture —
the only repo the walking-skeleton check pipeline is wired to
(server/services/github-checks/recipes.ts).
It lives here so it is reviewed alongside the pipeline that depends on it, and so the ops step is "copy and push" rather than "write from scratch".
Publishing it
cp -R test-servers/mcp-check-fixture /tmp/mcp-check-fixture
cd /tmp/mcp-check-fixture
git init && git add -A && git commit -m "mcp-check-fixture: minimal MCP server"
gh repo create mcpjam/mcp-check-fixture --public --source=. --pushpackage-lock.json is committed here on purpose, and must stay committed in the
published repo: the run recipe uses npm ci, which fails outright without one.
A repo missing its lockfile reports build_failed — correctly, but confusingly.
@types/node is likewise a real devDependency, not an assumption about the
build environment: tsconfig.json declares "types": ["node"], and this package
is standalone with no workspace to hoist it from.
Related MCP server: mcpscope
The two things that must not be "cleaned up"
It binds 0.0.0.0, not 127.0.0.1. E2B's host bridge only forwards to ports
bound on all interfaces. A loopback-only server is invisible from outside the
sandbox and the check reports server_unhealthy with a stderr tail that may not
mention the bind address at all.
It answers initialize on /mcp immediately. That handshake is the health
probe — the worker polls it until it succeeds. Anything that delays it (a
warm-up, a lazily mounted route) reads as an unhealthy server.
Run recipe
The recipe hardcoded in the Inspector for this repo:
field | value |
|
|
|
|
|
|
|
|
Changing any of those means changing recipes.ts in the same breath.
Tools
Three, all deterministic and side-effect-free — the eval suite's job is to prove the pipeline works, not to be an interesting test:
echo({ text })→ the same textadd({ a, b })→ the sumserver_info()→{"name":"mcp-check-fixture","version":"1.0.0"}
Locally
npm install && npm run build && npm start
curl -s localhost:3001/mcp -H 'content-type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2025-06-18","capabilities":{},"clientInfo":{"name":"curl","version":"1"}}}'Exercising the check's failure modes
Each of these is a one-line change, and each should produce a specific check conclusion — useful for verifying the pipeline end to end:
Change | Expected outcome | Check conclusion |
break a tool's return value |
| failure |
introduce a type error |
| failure |
|
| failure |
bind |
| failure |
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceA simple demonstration MCP server that provides an echo tool and resource for learning how to build MCP servers. Serves as a starting point and template for creating custom MCP server implementations.Last updated
- FlicenseAqualityCmaintenanceA simple local MCP server that provides greeting and integer addition tools.Last updated2
- Flicense-qualityCmaintenanceA basic MCP server for testing with echo, datetime, and calculator tools.Last updated105
- Flicense-qualityCmaintenanceA minimal MCP server providing basic tools for arithmetic, text echoing, and timezone-aware current time retrieval.Last updated
Related MCP Connectors
A basic MCP server to operate on the Postman API.
An MCP server that let you interact with Cycloid.io Internal Development Portal and Platform
A very simple remote MCP server that greets you, with a custom icon.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/MCPJam/mcp-check-fixture'
If you have feedback or need assistance with the MCP directory API, please join our Discord server