# io.github.wireboard/mcp (npm · @wireboard/mcp)

Official MCP server for WireBoard. Lets LLM agents query your analytics in conversation.

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

## Components

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

## Channel facts

- Registry: `npm`
- Package: `@wireboard/mcp`
- Version: `0.1.3`
- 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 (96 of 100), 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 (96 of 100), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 67 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 70/100
  - AI-judged instruction clarity (excellent).
  - Context-footprint check failed: tool/resource definitions use about 1606 tokens (~160/item across 10 items; 10 tools + 0 resources), over budget; trim descriptions and params.
  - 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 wireboard-mcp -- npx -y @wireboard/mcp
```

### Codex

```bash
codex mcp add wireboard-mcp -- npx -y @wireboard/mcp
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add wireboard-mcp --command npx --arg -y --arg @wireboard/mcp
```

### Hermes

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

### Other

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

## 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-03 (score 68, +47)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [functional improvement] Schema quality: unverified → excellent
- [functional improvement] Tool coverage: unverified → 100
- [functional improvement] License: unverified → pass
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Stability: unverified → 0.23
- [functional] Licence: MIT

### 2026-08-02 (score 21, +2)

- [security improvement] Malware scan: unverified → pass
- [functional regression] Tool coverage: 100 → unverified
- [functional improvement] Dependency health: unverified → partial
- [functional] First check of Schema quality: unverified

### 2026-07-31 (score 19, −7)

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

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

- [security regression] Malware scan: pass → unverified

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

First indexed and scored.

## MCP tools (10)

### `list_sites` (~54 tokens)

List every site in the WireBoard account. Returns each site's ID, domain, and peak-concurrent-visitors over the last 30 days. Call this first if you don't know which site_id to use for the other tools.

### `get_account` (~38 tokens)

Get the team-owner identity (email, name) and the abilities of the token in use. Useful for verifying which account the MCP is connected to.

### `get_aggregate` (~143 tokens)

Period totals for one site: visitors, pageviews, bounce_rate, visit_duration. Use this for 'how many visitors did site X get in date range Y' style questions.

Input parameters:

- `range` (string, required): Date range. Accepts natural strings ('today', 'yesterday', 'last 7 days', 'last 30 days', 'this week', 'last week', 'this month', 'last month') or an explicit 'YYYY-MM-DD..YYYY-MM-DD' range. UTC. If…
- `site_id` (string, required): Site ID. Get it from list_sites if you don't know it.

### `get_timeseries` (~182 tokens)

One metric bucketed over time (hour or day). Use for 'plot pageviews per day this month' or 'visitors per hour today'. Returns an array of {time, value} points.

Input parameters:

- `interval` (string, required): Bucket size. Use 'hour' for short ranges, 'day' for longer.
- `metric` (string, required): Which metric to plot.
- `range` (string, required): Date range. Accepts natural strings ('today', 'yesterday', 'last 7 days', 'last 30 days', 'this week', 'last week', 'this month', 'last month') or an explicit 'YYYY-MM-DD..YYYY-MM-DD' range. UTC. If…
- `site_id` (string, required): Site ID. Get it from list_sites if you don't know it.

### `get_history` (~157 tokens)

Per-day breakdown with visitors, returning_visitors, pageviews, bounce_rate, and avg_duration in a single call. Use when the user wants a 'daily report' or wants returning-visitor comparisons. Returns one row per UTC day in the range.

Input parameters:

- `range` (string, required): Date range. Accepts natural strings ('today', 'yesterday', 'last 7 days', 'last 30 days', 'this week', 'last week', 'this month', 'last month') or an explicit 'YYYY-MM-DD..YYYY-MM-DD' range. UTC. If…
- `site_id` (string, required): Site ID. Get it from list_sites if you don't know it.

### `get_breakdown` (~215 tokens)

Top-N rows by one dimension (country, device, browser, url, etc.). Use for 'top countries last week', 'most-used browsers', 'top referrer sources'. The dimension determines which field appears in each row alongside the visitor count.

Input parameters:

- `dimension` (string, required): Which dimension to break down by. ref_url/ref_medium/ref_source/ref_search/ref_social are a partition of referrers (a referrer lands in exactly one).
- `limit` (integer): Max rows to return. Default 50, max 500.
- `range` (string, required): Date range. Accepts natural strings ('today', 'yesterday', 'last 7 days', 'last 30 days', 'this week', 'last week', 'this month', 'last month') or an explicit 'YYYY-MM-DD..YYYY-MM-DD' range. UTC. If…
- `site_id` (string, required): Site ID. Get it from list_sites if you don't know it.

### `get_top_urls` (~343 tokens)

Per-URL metrics (visitors, pageviews, bounce_rate, avg_duration) with optional filtering. Use for 'top pages under /blog', 'find the homepage's stats', 'which checkout pages have the worst bounce rate'. Paginated via limit and offset.

Input parameters:

- `contains` (string): Match URLs that contain this substring anywhere. Use this when the user gives you a path or a keyword without specifying the full URL (e.g. user says 'checkout pages' → contains='/checkout').
- `exact` (string): Match the URL that equals this string exactly. Like `prefix`, this is a full URL: scheme + host + path.
- `limit` (integer): Max rows. Default 50, max 500.
- `offset` (integer): Pagination offset. Default 0.
- `prefix` (string): Match URLs whose value starts with this string. URLs are stored as full URLs (scheme + host + path), so pass a full prefix like 'https://yoursite.com/blog/', NOT just '/blog/'. If you only have a pat…
- `range` (string, required): Date range. Accepts natural strings ('today', 'yesterday', 'last 7 days', 'last 30 days', 'this week', 'last week', 'this month', 'last month') or an explicit 'YYYY-MM-DD..YYYY-MM-DD' range. UTC. If…
- `site_id` (string, required): Site ID. Get it from list_sites if you don't know it.

### `query_events` (~303 tokens)

Query custom events (purchases, form submits, button clicks, etc.). Filter by category/action/label or UTM fields, group by any combination of those, paginate. Use for 'how many Purchase events from utm_source=newsletter last week' or 'top event categories this month'.

Input parameters:

- `filter` (object): Filters as {field: value}. Allowed top-level fields: category, action, label, utm_*. Event props go under {'props': {'key': 'value'}} which translates to filter[props.key]=value on the wire.
- `group_by` (array): Fields to group by. Allowed: category, action, label, utm_campaign, utm_source, utm_medium, utm_content, utm_term. Default: ['category', 'action', 'label'].
- `limit` (integer): Max rows. Default 50, max 1000.
- `offset` (integer): Pagination offset. Default 0.
- `range` (string, required): Date range. Accepts natural strings ('today', 'yesterday', 'last 7 days', 'last 30 days', 'this week', 'last week', 'this month', 'last month') or an explicit 'YYYY-MM-DD..YYYY-MM-DD' range. UTC. If…
- `site_id` (string, required): Site ID. Get it from list_sites if you don't know it.

### `get_live_state` (~114 tokens)

Current real-time snapshot for a site: live visitor count, top pages right now, current top referrers, active sessions, etc. Use for 'what's happening on the site right now', 'who's currently on the checkout page', 'how many visitors live'.

Input parameters:

- `categories` (array): Subset of the 20 live categories to include. Omit to get all categories. Smaller subsets are faster.
- `site_id` (string, required): Site ID. Get it from list_sites if you don't know it.

### `list_dimensions` (~57 tokens)

Lists every dimension, metric, and limit the API supports. Use as a self-discovery tool when the user asks something like 'what can you tell me about my analytics' or when you're unsure which dimension key to pass to get_breakdown.

## Diagnostics

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

## Score history

- 2026-08-03: 68
- 2026-08-02: 21
- 2026-08-01: 19
- 2026-07-31: 19
- 2026-07-30: 26
- 2026-07-28: 44
- 2026-07-27: 44

## Links

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