Install
$ agentstack add mcp-mattral-mcp-reliable ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
mcp-reliable
[](https://www.npmjs.com/package/mcp-reliable) [](https://www.npmjs.com/package/@mattral/core) [](./LICENSE)
Runtime observability and reliability for the Model Context Protocol ecosystem. Where tools like mcp-observatory audit servers before deployment and inspector helps you debug one by hand, mcp-reliable watches servers while they're running: is this server up right now, is a given tool getting slower or less reliable over time, and did its schema or output shape just change out from under the agents calling it.
Live on npm, verified with a real standalone install — not just a local monorepo checkout — as mcp-reliable plus six scoped libraries under @mattral: @mattral/core, @mattral/storage, @mattral/collector, @mattral/notifier, @mattral/agent-interface, and @mattral/server. See [docs/decisions/0013-npm-scope-rename.md](./docs/decisions/0013-npm-scope-rename.md) for why @mattral and not a dedicated @mcp-reliable org.
Full design rationale lives in [docs/](./docs) — start with [docs/architecture.md](./docs/architecture.md) if you want the "how" and [docs/roadmap.md](./docs/roadmap.md) for exactly what's implemented vs. planned. This README is the fast path to running it.
What's actually here today
- Health checks — connect to a server, confirm it's reachable, list its
tools, detect schema changes. Never calls a tool (see [why](./docs/architecture.md#collection-model)).
- A traffic-observing proxy — wrap a real
stdioMCP server with one
command-line change and get real per-call latency, success/failure, and output-shape drift detection, with zero changes to the server itself.
- A CLI (
mcp-reliable) —init,add-server,remove-server,
servers, monitor, report, proxy. See [docs/cli-reference.md](./docs/cli-reference.md).
- A REST API — everything above, queryable over HTTP, redacting secrets
from any transport config it returns. See [docs/api-reference.md](./docs/api-reference.md).
- A web dashboard — a fleet overview and per-server detail page (health
history, tool breakdown, drift/alerts, execution log), served as static assets by the same REST API process. See [docs/dashboard-design.md](./docs/dashboard-design.md).
- Webhook and Slack alerting —
monitorandproxyboth open/resolve
alerts (unreachable, health degradation, drift) and deliver them via --webhook/--slack-webhook. See [docs/decisions/0010-alerting-notifier-design.md](./docs/decisions/0010-alerting-notifier-design.md).
- An agent-facing MCP interface —
mcp-reliable mcpexposes health,
drift, alerts, and a synthesized should-I-use-this recommendation as MCP tools, so an agent can query mcp-reliable directly. See [docs/decisions/0011-agent-interface-design.md](./docs/decisions/0011-agent-interface-design.md).
- SQLite storage, zero config, one file per project.
Not yet built: SSE/HTTP support in the traffic-observing proxy (and the agent interface, which is also stdio-only for now), statistical drift detection, token tracking, and the rest of P2 in [docs/roadmap.md](./docs/roadmap.md).
Quick start
npm install -g mcp-reliable
mcp-reliable init
mcp-reliable add-server --name my-server --stdio -- npx my-mcp-server
mcp-reliable monitor --server my-server --once
Then walk through [docs/getting-started.md](./docs/getting-started.md) for the full loop (health checks, the traffic-observing proxy, drift detection, alerting, the dashboard, and the agent-facing MCP interface), using the bundled examples/reference-mcp-server so there's nothing external to stand up first.
Building from source (for contributing, or trying pre-release changes)
Requires Node.js 20+.
git clone https://github.com/Mattral/mcp-reliable.git
cd mcp-reliable
npm install
npm run build
npm test # 256 tests, none of them mocked at the protocol level — see docs/testing.md
node packages/cli/dist/index.js init
node packages/cli/dist/index.js add-server \
--name reference --stdio -- node examples/reference-mcp-server/dist/index.js
node packages/cli/dist/index.js monitor --server reference --once
npm link inside packages/cli to get a local mcp-reliable command without a real install.
Project layout
packages/core pure data model, health scoring, drift detection (no I/O)
packages/storage SQLite persistence behind a storage-agnostic interface
packages/collector health checks + the traffic-observing stdio proxy
packages/notifier webhook and Slack alert delivery
packages/agent-interface agent-facing MCP tools (health, drift, alerts, recommendations)
packages/cli the mcp-reliable command-line tool
packages/server REST API over stored data, serves the built dashboard
packages/dashboard React + Tailwind web dashboard (fleet overview + server detail)
examples/ a tiny reference MCP server used by tests and the getting-started guide
docs/ architecture, data model, CLI/API reference, ADRs, roadmap
Contributing
See [CONTRIBUTING.md](./CONTRIBUTING.md). Short version: npm run lint && npm run build && npm test should all be clean before opening a PR, and any change to core's algorithms should come with a test that would have caught the bug if you'd gotten it wrong — see [docs/decisions/0005-health-score-formula.md](./docs/decisions/0005-health-score-formula.md) for a real example of exactly that happening during this project's own development.
Releasing
See [PUBLISHING.md](./PUBLISHING.md) for the mechanical checklist (npm publish order, tagging, GitHub release) and [RELEASE_NOTES_v1.0.0.md](./RELEASENOTESv1.0.0.md) for what shipped in the current release.
License
MIT — see [LICENSE](./LICENSE).
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Mattral
- Source: Mattral/mcp-reliable
- License: MIT
- Homepage: https://www.npmjs.com/package/mcp-reliable
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.