# io.github.rharper105/reportcraft (npm · @reportcraft/mcp-server)

Generate Splunk dashboards, reports, and alerts from natural language. No API key required.

- Trust score: 61/100 (medium)
- Change this week: +21
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `@reportcraft/mcp-server`: 61/100 (this document), [markdown](https://verifymcp.io/servers/rharper105-reportcraft/reportcraft-mcp-server.md), [page](https://verifymcp.io/servers/rharper105-reportcraft/reportcraft-mcp-server)

## Channel facts

- Registry: `npm`
- Package: `@reportcraft/mcp-server`
- Version: `0.1.1`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (108 of 112), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (108 of 112), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 6/100
  - Repository check failed: the declared repository URL returned HTTP 404.
  - Provenance check failed: no build-provenance attestation is published.
  - License check failed: no license is declared.
  - Actively maintained (last published 110 days ago).
  - Security-disclosure policy not yet verified: we couldn't inspect the source repository.
- **Schema Quality & AI Usability**: 77/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 632 tokens (~90/item across 7 items; 7 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 23/100
  - Stability observed for 7 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add rharper105-reportcraft -- npx -y @reportcraft/mcp-server
```

### Codex

```bash
codex mcp add rharper105-reportcraft -- npx -y @reportcraft/mcp-server
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "rharper105-reportcraft": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@reportcraft/mcp-server"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add rharper105-reportcraft --command npx --arg -y --arg @reportcraft/mcp-server
```

### Hermes

```yaml
mcp_servers:
  rharper105-reportcraft:
    command: "npx"
    args: ["-y", "@reportcraft/mcp-server"]
```

### Other

```json
{
  "mcpServers": {
    "rharper105-reportcraft": {
      "command": "npx",
      "args": [
        "-y",
        "@reportcraft/mcp-server"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-02 (score 61, +45)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [functional regression] License: unverified → fail
- [functional improvement] Schema quality: unverified → excellent
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Stability: unverified → 0.20
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] MCP protocol: unverified → pass

### 2026-08-01 (score 16, +16)

- [functional improvement] Tool coverage: unverified → 100

### 2026-07-31 (score 0, −22)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 22, −18)

- [security regression] Malware scan: pass → unverified

### 2026-07-27 (score 40)

First indexed and scored.

## MCP tools (7)

### `parse_intent` (~75 tokens)

Parse a natural language description of a Splunk dashboard, report, or alert into a structured intent. Returns audience, use case, layout preference, and time range.

Input parameters:

- `rawPrompt` (string, required): Natural language description of what the user needs (e.g., 'Failed auth monitoring with trends by hour and top risky IPs')

### `generate_blueprint` (~142 tokens)

Generate a complete ReportBlueprint from a structured intent, field catalog, and data source. The blueprint defines panels, layout, datasets, and field mappings for a Splunk dashboard, report, or alert.

Input parameters:

- `clarifications` (array): Answered clarification questions
- `confirmedMappings` (object): User-confirmed field mappings (fieldId → role assignments)
- `dataSource` (object, required): Splunk data source configuration
- `fieldCatalog` (array, required): Array of field definitions with id, sourceName, type, and semanticRole
- `intent` (object, required): Structured intent from parse_intent
- `rawPrompt` (string, required): The original natural language prompt

### `generate_spl` (~49 tokens)

Generate SPL queries for each panel in a ReportBlueprint. Takes a blueprint and returns it with generatedSpl populated on each panel.

Input parameters:

- `blueprint` (object, required): A ReportBlueprint object from generate_blueprint

### `export_package` (~82 tokens)

Generate a complete Splunk export package from a blueprint. Returns a ZIP containing Classic XML dashboard, Studio JSON, savedsearches.conf, SPL queries, field mapping, and import guide.

Input parameters:

- `blueprint` (object, required): A ReportBlueprint object (ideally with SPL generated via generate_spl)
- `options` (object): Export options (all default to true if omitted)

### `splunk_connect` (~92 tokens)

Connect to a Splunk instance via REST API. Tests the connection and returns server info. Credentials stay in-memory for this session only — never persisted.

Input parameters:

- `baseUrl` (string, required): Splunk management URL (e.g., 'https://localhost:8089' or 'https://splunk.corp.local:8089')
- `token` (string, required): Splunk password or auth token for the admin user

### `splunk_discover` (~90 tokens)

Discover the schema of a connected Splunk instance — indexes, sourcetypes, and fields. Returns structured data that feeds directly into generate_blueprint. Requires splunk_connect first.

Input parameters:

- `index` (string): Specific index to discover fields from. If omitted, returns all indexes with event counts.
- `sourcetype` (string): Filter field discovery to a specific sourcetype within the index.

### `splunk_deploy` (~102 tokens)

Deploy a generated blueprint to the connected Splunk instance. Creates the dashboard and any saved searches/alerts. Requires splunk_connect first.

Input parameters:

- `appName` (string): Splunk app to deploy into (default: 'search')
- `blueprint` (object, required): A ReportBlueprint with SPL generated (from generate_spl)
- `dashboardName` (string): Name for the dashboard in Splunk (lowercase, underscores). Auto-generated from blueprint title if omitted.

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/rharper105-reportcraft/reportcraft-mcp-server#diagnostics

## Score history

- 2026-08-03: 61
- 2026-08-02: 61
- 2026-08-01: 16
- 2026-07-31: 0
- 2026-07-30: 22
- 2026-07-28: 40
- 2026-07-27: 40

## Links

- npm package: https://www.npmjs.com/package/@reportcraft/mcp-server
- Socket report: https://socket.dev/npm/package/@reportcraft/mcp-server
- Changelog RSS feed: https://verifymcp.io/servers/rharper105-reportcraft/reportcraft-mcp-server/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/rharper105-reportcraft/reportcraft-mcp-server/changelog.json
- HTML version of this page: https://verifymcp.io/servers/rharper105-reportcraft/reportcraft-mcp-server
