Mys Fusionreactormcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Mys Fusionreactormcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A TypeScript Model Context Protocol (MCP) server that exposes FusionReactor Cloud monitoring data — metrics, logs, and alerts — as callable tools for AI assistants.
| Category | Tools | Backend |
|---|---|---|
| Metrics | query_metrics, query_metrics_range, list_metric_series, list_metric_label_names, list_metric_label_values | Prometheus / Mimir API |
| Logs | query_logs, query_logs_range, list_log_label_names, list_log_label_values, list_log_series | Loki API |
| Alerts | list_alert_rules, list_alert_rules_by_namespace, get_alerts, get_alert_groups | Grafana Alerting API |
# 1. Install dependencies
npm install
# 2. Build
npm run build
# 3. Run (requires API key)
FUSIONREACTOR_API_KEY=your-key-here npm start| Variable | Required | Description |
|---|---|---|
FUSIONREACTOR_API_KEY | Yes | Your FusionReactor API key |
FUSIONREACTOR_API_URL | No | API base URL. Defaults to https://api.fusionreactor.io |
Add this server to your MCP client configuration. For example, in Claude Desktop or VS Code:
{
"mcpServers": {
"fusionreactor": {
"command": "node",
"args": ["<path-to-project>/dist/index.js"],
"env": {
"FUSIONREACTOR_API_KEY": "your-key-here"
}
}
}
}# Watch mode — recompiles on file changes
npm run dev
# One-time build
npm run buildsrc/
├── index.ts # Entry point — bootstraps MCP server with stdio transport
├── client.ts # FusionReactor HTTP API client (metrics, logs, alerts)
└── tools.ts # MCP tool definitions wired to the API clientThe server communicates with FusionReactor Cloud's Grafana-compatible API:
/g/api/v1/query, /g/api/v1/query_range, /g/api/v1/series, /g/api/v1/labels, /g/api/v1/label/{name}/values/g/loki/api/v1/query, /g/loki/api/v1/query_range, /g/loki/api/v1/labels, /g/loki/api/v1/label/{name}/values, /g/loki/api/v1/series/g/api/ruler/grafana/api/v1/rules, /g/api/alertmanager/grafana/api/v2/alerts, /g/api/alertmanager/grafana/api/v2/alerts/groupsMIT
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.