Skip to main content
Glama
hyoon2007

mpulse-mcp

by hyoon2007

mpulse-mcp

An MCP (Model Context Protocol) server that wraps the Akamai mPulse Query API v2 and exposes it as tools for Claude Desktop (local stdio). It fetches mPulse RUM (Real User Monitoring) aggregate data — summaries, histograms, and per-minute time series — and returns loss-free numbers suitable for downstream p75 / statistical analysis.

  • Accuracy first — endpoints, parameters, and schemas were confirmed against the live mPulse docs before implementation (see Verified API contract).

  • Loss-free data — numeric values are never rounded, summarized, or dropped.

  • stdio-safe — nothing is ever written to stdout (that would corrupt the JSON-RPC stream); all logs go to stderr. Secrets are masked in logs.


Verified API contract

Fetched from techdocs.akamai.com/mpulse during implementation. The table below records what was confirmed and any differences from the original brief's assumed defaults.

Item

Confirmed value

Query base host

https://mpulse.soasta.com ✅ matches

Query URL format

/concerto/mpulse/api/v2/<api-key>/<query-type>?<params> ✅ matches

Auth header

Authentication: <token> (not Authorization) ✅ matches

Common param

format=json (the default legacy format is deprecated) ✅

Token endpoint

PUT /concerto/services/rest/RepositoryService/v1/Tokens

Token request body

{ "apiToken": "<pre-issued>", "tenant": "<tenant>" } (API-token/SSO flow; no username/password)

Token response

{ "token": "<security token>" }

Token lifetime

expires after 5 hours of inactivity

Data characteristics

per-minute aggregation, one calendar day per query, timezone-dependent

Confirmed query-type slugs → explicit tools

Tool

query-type slug

Response core

get_summary

summary

median, moe, n, p95, p98

get_histogram

histogram

series.series[].buckets/aPoints, median, p95, p98

get_timers

by-minute

series.series[].aPoints[{x,y}], statistics (single timer)

get_metrics

timers-metrics

dataTimeZone, values[{id, history[], latest}] (multiple)

Other confirmed slugs (reachable via the generic query tool): dimension-values, dimension-over-time, metrics-by-dimension, metric-per-page-load-time, sessions-per-page-load-time, app-error-summary, page-groups, browsers, ab-tests, bandwidth, geography.

Confirmed parameters: timer (default PageLoad) / custom-timer, metric (default Beacons), percentile (1–99, default 50), date (YYYY-MM-DD), date-comparator (Last30Minutes, LastHour, Last24Hours, ThisWeek, Last + trailing-seconds, Between + date-start/date-end), timezone (Java TZ id, default UTC).

Confirmed drilldown params: page-group, browser, browser-family, ab-test, country (ISO alpha-2), region, device-type, device-model, device-manufacturer, os, os-family, connection-type, isp, bandwidth-block, beacon-type, site-version, custom-dimension-{label}. Unsupported drilldown combinations return empty data, not an error — the server flags this in the result note.

Differences from the brief's assumed defaults

  1. date_comparator → wire name date-comparator (hyphen). Tool arguments use underscores and are mapped to the hyphenated wire names automatically.

  2. Token lifetime is "5 hours of inactivity", not a very-short token. The server still refreshes proactively (soft 4h TTL) and reactively on a query 401, so correctness does not depend on the exact figure.

  3. Rate-limit numbers (concurrent 3 / 100 per-min / 10k per-hour / 50k per-day) could not be re-confirmed from the doc pages fetched. They are adopted from the brief and kept configurable as constants in client.py (MAX_CONCURRENCY, PER_MINUTE_LIMIT, retry settings). The per-hour/per-day caps are advisory (not separately throttled).


Related MCP server: WhatsMyBudgetMCP

Install

Requires Python 3.11+ and uv.

uv sync --extra dev

Configure

Secrets go in the environment; the non-secret app registry goes in a JSON file.

  1. Registry — copy the example and fill in your api keys / tenant:

    cp mpulse_apps.example.json mpulse_apps.json
    {
      "default_app": "app-a",
      "tenant": "your-tenant",
      "api_token_env": "MPULSE_API_TOKEN",
      "apps": {
        "app-a":  { "api_key": "XXXXX-XXXXX-XXXXX-XXXXX-XXXXX" },
        "app-b": { "api_key": "YYYYY-YYYYY-YYYYY-YYYYY-YYYYY",
                           "tenant": "override-if-different",
                           "api_token_env": "MPULSE_API_TOKEN_APP_B" }
      }
    }

    Resolution: an app's tenant / api_token_env override the top-level defaults; api_key is required per app. The registry path is found via MPULSE_APPS_CONFIG, else ./mpulse_apps.json.

    Custom dimensions (optional). mPulse has no API to discover an app's custom dimensions, so declare them here to make them usable without guessing. Add a custom_dimensions object per app (top-level entries are inherited by every app and merged with the app's own):

    "custom_dimensions": { "branch": { "display": "Branch" } },
    "apps": {
      "app-a": {
        "api_key": "…",
        "custom_dimensions": {
          "mobile_speed": { "display": "mobile speed", "description": "effectiveType" },
          "campaign": {}
        }
      },
      "app-b": { "api_key": "…", "custom_dimensions": ["checkout_step"] }
    }

    Keys are the mPulse wire label (lowercased, spaces → _); a value may be null, a {display, description, values?} object, or you may pass a plain list of names. Used as a split (metrics-by-dimension dimension=<label>) or a filter (custom-dimension-<label>=<value>). These are hints only (never used to reject), since the declared list may be incomplete.

  2. Secrets — set the pre-issued mPulse API token(s) (mPulse → your name → AccountGenerate/Revoke API Token). See .env.example:

    MPULSE_API_TOKEN=your-pre-issued-api-token
    # MPULSE_API_TOKEN_APP_B=...   # only if an app overrides api_token_env

    The short-lived security token used on each request is minted at runtime from the API token + tenant — you never manage it yourself.

    Where does .env go? For local runs and the smoke test, place .env in the project root (the folder with pyproject.toml, i.e. the working directory). It is auto-loaded at startup — also from the directory of MPULSE_APPS_CONFIG. Existing environment variables are never overridden. For Claude Desktop, do not use .env — put secrets in the env block of claude_desktop_config.json (below); that is what Claude Desktop injects, and it takes precedence over any .env.

Run

uv run mpulse-mcp        # or: uv run python -m mpulse_mcp

Transport is stdio; the process speaks MCP on stdout and logs to stderr.

Register in Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "mpulse": {
      "command": "uv",
      "args": ["--directory", "/Users/hyoon/Projects/mpulse-mcp", "run", "mpulse-mcp"],
      "env": {
        "MPULSE_API_TOKEN": "your-pre-issued-api-token",
        "MPULSE_APPS_CONFIG": "/Users/hyoon/Projects/mpulse-mcp/mpulse_apps.json"
      }
    }
  }
}

Restart Claude Desktop; the mPulse tools appear in the tools menu.

Tools

Explicit (typed, validated): get_summary, get_histogram, get_timers (single timer, per-minute), get_metrics (multiple timers/metrics, per-minute). Each accepts app (optional → default app), exactly one of date (YYYY-MM-DD) or date_comparator, optional timezone, drilldown filters (page_group, browser, ab_test, country, device_type, …), and raw (default false).

Batch: get_aggregate(metrics=[...], timers=[...], periods=[...], percentiles=[50,75], …) — a (metric|timer) × period × percentile matrix in one call. Collapses the common reporting workflow (e.g. 3 metrics × 2 months × p50/p75 = 12 calls) into a small table of latest scalars (no history). Each cell fails independently (errors[]); max_combos (default 24) caps the fan-out; all calls share the rate limiter. See Batch aggregate.

Generic: query(query_type, app=None, params={...}, raw=False) — any query-type with wire-name params, for cases the explicit tools don't cover.

Meta (anti-hallucination): list_apps, list_query_types, describe_query(query_type, app=None) (pass app to include that app's custom dimensions), list_custom_dimensions(app=None).

Output format

  • raw=false (default): a flat envelope — app, query_type, period, timezone, aggregation, drilldowns, empty, history_mode, and body (the envelope-stripped data). Empty results are flagged, with a note when an unsupported drilldown combination is the likely cause.

  • raw=true: mPulse's untouched JSON under data.

history_mode — per-minute time-series volume (loss-free on demand). The temporal query-types timers-metrics and by-minute return ~1,440 points/day, of which the common workload uses only the period aggregate. history_mode (on get_timers, get_metrics, and query) controls this:

mode

time series

always kept

~size

downsample (default)

≤60 even-spaced points + peak

latest/statistics, n_points

~1/20

none

dropped (endpoints only)

latest/statistics, n_points, peak

~1/100

full

every minute (loss-free)

everything

full

The complete series is always recoverable via history_mode="full" or raw=true. Aggregates are never reduced: latest (period value — read this for monthly p75, don't average the history), mPulse statistics, histogram buckets, and summary are kept in full regardless of mode. A peak ({index/x, value/y}) is added so "when did it spike?" survives downsampling.

timer/metric name resolution (input side). mPulse silently answers an unrecognized timer/metric with a default (PageLoad) series instead of erroring, so the explicit tools resolve these names against the catalog before calling the API:

  • a casing/separator-only mismatch (largest_contentful_paintLargestContentfulPaint, endpoint-specific) is auto-corrected silently (zero extra round-trips); the fix is reported in a corrections field;

  • a genuinely unknown name is rejected with close suggestions (Did you mean: …?) — the wrong name never reaches mPulse;

  • custom timers/dimensions and the generic query tool are left permissive (forward-compatible); if the catalog is unavailable, resolution is skipped.

Custom dimension support is endpoint-specific. A custom dimension (e.g. branch) is accepted only by metrics-by-dimension (as its dimension split value). dimension-values and dimension-over-time accept built-in dimensions only — a custom name there returns empty/400 (a wasted call). The query tool enforces this: a custom dimension on those two query-types is rejected up front with a redirect to metrics-by-dimension, while a built-in's casing is auto-corrected. describe_query reports custom_dimension_supported per query-type so the model knows before calling.

For an app's declared custom dimensions (see Configure → Custom dimensions), the query tool additionally normalizes the label to its wire form (mobile speedmobile_speed) for both the split value and custom-dimension-<label> filters, and adds a soft dimension_notes advisory when a name isn't in the declared set — but always passes it through (the declared list may be incomplete). list_custom_dimensions(app) and describe_query(query_type, app) expose the declared names so the model uses the exact label instead of guessing.

Passing multiple values (mechanism differs per parameter). Verified against every endpoint's reference doc:

  • Comma-separated, one param — only metrics on metrics-by-dimension (plural param name; the singular metric is silently ignored). Pass a pre-joined string: "metrics": "beacons,largest_contentful_paint".

  • Repeated keymetric/timer on timers-metrics and every drilldown filter (country, browser, ab-test, …) and custom-dimension-<label>. Pass a JSON list and the client expands it to repeated query keys: "custom-dimension-branch": ["uk","us","sec"]custom-dimension-branch=uk&…=us&…=sec (verified live). A Python-list-repr no longer leaks onto the wire.

  • Single valuedimension, percentile, metric on metric-per-page-load-time (its own enum: BounceRate + CustomMetric0-9), etc.

describe_query surfaces a parameter_mechanics block (which params are comma-separated vs repeat-key) plus an endpoint_params block — the per-endpoint contract compiled from every reference page: value params with defaults, special params (limit, sortby, interval, series-format) with ranges, whether drilldown filters apply, and constraints. So the model knows, before calling, e.g. that metrics-by-dimension takes native sortby/limit (1-100, not valid for page_group/browser/country/bw_block/ab_test), computes percentiles, and returns a {columnNames, data:[[…]]} table; that dimension-values accepts no filters; that dimension-over-time has its own dimension enum plus interval/limit (1-10); that metric-per-page-load-time uses a distinct single metric; and that the report endpoints (geography, page-groups, browsers, ab-tests, bandwidth) have no native limit/sortby (use the client-side limit).

Silent-fallback warning (output side). As a backstop for cases input resolution can't catch, when the series id/name echoed in the response does not match the requested timer/metric, the result carries a warning so the caller knows the data is not for the requested name. Casing/separator-only differences are treated as a match and never warn. The warning is additive metadata and appears in raw mode too (data stays untouched).

Payload instrumentation. Every successful query logs payload app=… query=… bytes=… points=… to stderr, for measuring response size / token cost (e.g. before/after future history-reduction work).

limit — high-cardinality caps. dimension-values, geography, page-groups, browsers, … can return hundreds–thousands of rows (verified live: ~215 countries for geography, ~1,400 values for dimension-values browser). On the query tool these query-types are capped at 100 by default (pass an explicit limit to change it); when trimmed, the result carries truncated: {key, total, returned[, sorted_by]} so nothing silently disappears. When the rows carry a count field (e.g. geography's timerN), they are sorted by volume descending before trimming (sorted_by), so the top markets survive rather than an alphabetical slice; rows without a count (dimension-values' strings) keep their order. raw=true is never trimmed.

empty_reason + probe — why is it empty? An unsupported drilldown combination and genuine no-traffic both come back empty. Every empty result now carries an empty_reason heuristic (no_data / likely_no_traffic / possibly_unsupported_combo) at zero cost. Pass probe=true (on the explicit tools or query) to spend one extra drilldown-free query and get a definitive unsupported_combo vs no_traffic, reported in a probe block.

Batch aggregate

get_aggregate runs a matrix of timers-metrics queries and returns only each cell's period aggregate (latest) — the value you'd read for a monthly p75.

get_aggregate(
  metrics=["TotalRequestCount", "TotalTransferSize"],
  periods=[
    {"date_comparator": "Between", "date_start": "2026-06-01",
     "date_end": "2026-07-01", "label": "June"},   // date_end exclusive
    {"date_comparator": "Between", "date_start": "2026-07-01",
     "date_end": "2026-08-01", "label": "July"}
  ],
  percentiles=[50, 75]
)
// -> { "table": [ {"target":"TotalRequestCount","period":"June",
//                  "percentile":75,"value":142}, … 8 rows … ],
//      "percentiles":[50,75], "targets":[…] }

Period objects are {date: "YYYY-MM-DD"} or {date_comparator: …} (Between needs date_start+date_end; Last needs trailing_seconds); label names the column. Names are validated/auto-corrected up front (one error, not N). A cell that fails lands in errors[] with its coordinates while the rest return; max_combos (default 24) guards targets × periods × percentiles.

Constraints surfaced to the model

One calendar day per query (ranges are rejected with guidance to split into per-day calls — the server does not fan out implicitly); per-minute aggregation; timezone-dependent; unsupported drilldown combinations return empty data.

Errors

401 → one automatic token re-issue + replay, then an auth error. 403 → mPulse Lite / permission guidance (the Query API is not available on Lite). 429 → exponential backoff + jitter (up to 5 retries), then a rate-limit error. Network/timeout/5xx → retried, then a friendly upstream error. Invalid app/query-type/params → validation errors with hints. No error message ever contains a secret.

Tests

uv run pytest                 # unit tests (respx-mocked; no network)

Covers: token mint/cache/expiry/refresh + single-flight, Authentication header, 401 replay, 429 backoff, 403→Lite mapping, loss-free normalization, date/date_comparator mutual exclusivity, and multi-app / default fallback.

Manual smoke test against the real API:

export MPULSE_API_TOKEN=...   # or rely on your .env / shell env
export MPULSE_APPS_CONFIG=/Users/hyoon/Projects/mpulse-mcp/mpulse_apps.json
uv run python tests/smoke.py                 # default app, yesterday
uv run python tests/smoke.py app-b 2026-08-01

Project layout

src/mpulse_mcp/
  server.py       FastMCP instance + tool registration (entry point)
  config.py       app registry + credential loading
  auth.py         token mint/cache/refresh (single-flight)
  client.py       HTTP client + rate limiting + retries
  query_types.py  query-type / parameter metadata
  formatting.py   loss-free normalization + raw passthrough
  errors.py       typed exceptions + status mapping
tests/            unit tests + smoke.py

Available Tools

8 tools
describe_queryA

Describe a query-type: parameters, drilldowns, response shape, and caveats.

Pass a slug from list_query_types (e.g. summary, timers-metrics, geography).

ParametersJSON Schema
NameRequiredDescriptionDefault
query_typeYes

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the burden of disclosure. It explains that the tool returns parameters, drilldowns, response shape, and caveats, which gives a clear picture of what to expect. It does not list specific caveats, but the mention of them is useful and aligns with the 'describe' nature.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences, front-loaded with the main purpose and immediately followed by usage instructions. Every word is necessary, and the use of backticks for code and examples is clean and concise.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the one-parameter tool and the presence of an output schema, the description adequately covers what the tool does and how to source the parameter. It mentions caveats, hinting at possible edge cases. It doesn't repeat return value details (handled by output schema), so it is complete for its complexity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema has 0% description coverage, but the tool description compensates by explaining that query_type is a slug from `list_query_types` and provides examples. This adds meaningful meaning beyond the bare schema, though a full list of valid slugs would be even better.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'Describe a query-type' with specific details on what is described (parameters, drilldowns, response shape, caveats). It distinguishes itself from sibling tools like get_summary or query by focusing on describing query types rather than executing them or retrieving data.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit usage guidance: 'Pass a slug from `list_query_types`' with concrete examples. This implies a prerequisite workflow and gives clear context on how to use the tool, though it does not explicitly mention when not to use it or alternatives.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_histogramA

Distribution (histogram buckets) for one timer over the period.

mPulse query-type: histogram. Returns per-bucket counts plus median/p95/ p98. Time selection and drilldowns behave exactly as in get_summary (single calendar day OR relative date_comparator).

Use raw=True for untouched mPulse JSON. Bucket counts are preserved losslessly.

ParametersJSON Schema
NameRequiredDescriptionDefault
appNo
rawNo
dateNo
timerNo
ab_testNo
browserNo
countryNo
timezoneNo
page_groupNo
percentileNo
beacon_typeNo
device_typeNo
custom_timerNo
date_comparatorNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A3.7/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the transparency burden. It discloses output (per-bucket counts, median/p95/p98) and the raw flag's effect, plus lossless bucket preservation. It doesn't mention permissions, rate limits, or failure behavior, but for a read-only get operation this is adequate.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact (three sentences) and front-loaded with the core purpose. It avoids redundancy and flows logically from purpose to behavior to raw mode, with no wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has 14 parameters and no annotations, the description is not fully complete. It relies on the output schema for return values and on get_summary for behavioral context, but it doesn't describe which parameters are needed or how they interact. Still, it covers the main query type and output structure.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 0%, so the description must compensate. It only explains raw=True and vaguely references date_comparator. The other 12 parameters (app, timer, date, browser, etc.) are completely unexplained, leaving the agent to guess their meaning.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: providing a histogram distribution with per-bucket counts and percentiles. It names the mPulse query type and distinguishes itself from get_summary by referencing its behavior.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description references get_summary for time selection and drilldowns, giving a clear comparison point for when to use this tool. It also explicitly notes raw=True for untouched JSON. However, it doesn't explicitly state exclusion cases or when to prefer other sibling tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_metricsA

Multiple timers/metrics by minute over time.

mPulse query-type: timers-metrics. metric defaults to Beacons, timer to PageLoad. Returns values:[{id, history:[...per-minute...], latest}] plus the data timezone.

Time selection and drilldowns behave as in the other tools (single calendar day OR relative date_comparator). Numbers are preserved losslessly.

ParametersJSON Schema
NameRequiredDescriptionDefault
appNo
rawNo
dateNo
timerNo
metricNo
ab_testNo
browserNo
countryNo
timezoneNo
page_groupNo
percentileNo
beacon_typeNo
device_typeNo
custom_timerNo
date_comparatorNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden. It discloses return structure (values with history and latest), data timezone, lossless number preservation, and defaults. It also references shared time-selection behavior. While it doesn't discuss permissions or rate limits, it provides substantive behavioral context beyond a minimal statement, so a 4 is warranted.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact, front-loaded with the core purpose, and each sentence adds value: query type, defaults, return format, time behavior, and data precision. There is no redundancy or filler. It is an appropriately sized and well-structured description.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the high complexity (15 parameters, no annotations), the description is only partially complete. It covers the core output and time behavior, and an output schema exists to document returns. However, it does not explain the majority of filter/dimension parameters, nor does it provide an example or detailed drilldown semantics. This is adequate but leaves clear gaps, so a 3 is appropriate.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate for 15 parameters. It only explains defaults for `metric` and `timer` and mentions `date_comparator` by name. Other parameters like `app`, `browser`, `country`, `percentile`, and `custom_timer` are left completely undocumented, leaving the agent with insufficient information to set them correctly.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb-resource pair: 'Multiple timers/metrics by minute over time.' It further specifies the mPulse query-type, defaults, and return shape, clearly distinguishing it from siblings like get_summary or get_histogram, which are likely aggregate or distribution tools. The phrase 'by minute over time' captures the tool's unique time-series focus.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context: it returns per-minute time series data for multiple timers/metrics, and notes that time selection/drilldowns behave like other tools. However, it does not explicitly state when to prefer this tool over alternatives or mention exclusions. This is 'clear context, no exclusions,' which fits a 4.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_summaryA

Aggregate summary stats for one timer (median, margin-of-error, count, p95, p98).

mPulse query-type: summary. Data is per-minute aggregated over a single calendar day in the given timezone (default UTC).

Time selection (exactly one required):

  • date — a single calendar day, YYYY-MM-DD.

  • date_comparator — a relative window, e.g. Last24Hours, LastHour. A date range is not supported per call; split it into per-day calls.

Timer: timer (built-in, default PageLoad) OR custom_timer (a custom timer name). percentile is 1–99 (default 50).

Drilldowns filter the data (e.g. page_group, browser, country, device_type, ab_test). Unsupported combinations return empty data with a note rather than an error.

Set raw=True to get mPulse's untouched JSON. Numeric values are never rounded or summarized.

ParametersJSON Schema
NameRequiredDescriptionDefault
osNo
appNo
rawNo
dateNo
timerNo
regionNo
ab_testNo
browserNo
countryNo
timezoneNo
page_groupNo
percentileNo
beacon_typeNo
device_typeNo
custom_timerNo
browser_familyNo
connection_typeNo
date_comparatorNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.8/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description must carry the full burden. It discloses per-minute aggregation over a single calendar day, timezone default, raw=True behavior, no numeric rounding, and the non-error behavior for unsupported drilldown combos. This is rich, truthful context beyond any structured metadata.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is longer than average but well-structured with line breaks, bullet-like sections, and a logical flow from stats to time selection to timer to drilldowns to raw mode. Every sentence adds value; the length is justified by the 18-parameter complexity and lack of annotations.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a complex tool with no annotations and zero schema descriptions, this description covers time selection rules, timer choice, percentile range, drilldown behavior, raw mode, timezone, aggregation granularity, and error behavior. Since an output schema exists, return values are already documented, so the description doesn't need to over-explain them.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description compensates by explaining key parameters: date, date_comparator, timer/custom_timer, percentile, raw, and several drilldowns (page_group, browser, country, device_type, ab_test). It does not explicitly explain every parameter (e.g., os, region, connection_type), but the pattern and examples provide enough guidance for most.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb+resource: 'Aggregate summary stats for one timer (median, margin-of-error, count, p95, p98).' This clearly distinguishes it from siblings like get_histogram and get_metrics by naming the exact aggregate outputs and the 'one timer' scope.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly states that exactly one time selector (date or date_comparator) is required, that date ranges are unsupported and must be split into per-day calls, and that drilldowns filter data with unsupported combinations returning empty data + note instead of an error. This gives clear when-to-use and constraint guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_timersA

A single timer's value by minute over time (time series).

mPulse query-type: by-minute. Best for one timer (built-in timer, default PageLoad, or a custom_timer). For multiple timers/metrics at once, use get_metrics (query-type timers-metrics).

Returns a series of {x, y} points at per-minute resolution for the selected calendar day (or date_comparator window). Values are preserved exactly.

ParametersJSON Schema
NameRequiredDescriptionDefault
appNo
rawNo
dateNo
timerNo
ab_testNo
browserNo
countryNo
timezoneNo
page_groupNo
percentileNo
beacon_typeNo
device_typeNo
custom_timerNo
date_comparatorNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A3.9/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden. It discloses the return format (series of {x, y} points), resolution (per-minute), time scope (calendar day or date_comparator window), and data fidelity ('Values are preserved exactly'). This adds significant behavioral context beyond the tool name, though it omits potential edge cases or error behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact and front-loaded: the first sentence states the core purpose, followed by usage guidance and return details. No filler or redundancy; every sentence earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complexity (14 parameters, no annotations, 0% parameter coverage), the description is incomplete. It provides a good high-level overview and output information, but leaves the semantics of all filter parameters undefined, making it hard for an agent to invoke the tool correctly for non-default use cases.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, and the description does not explain any of the 14 parameters. It only briefly mentions 'timer', 'custom_timer', and 'date_comparator' in passing, without details on their meaning, format, or effect. This is a critical gap for a tool with many optional filtering parameters.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool returns a single timer's value by minute over time, forming a time series. It distinguishes itself from siblings by noting it is best for one timer and explicitly referencing get_metrics for multiple timers/metrics, ensuring unambiguous purpose.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicit guidance is provided: 'Best for one timer... For multiple timers/metrics at once, use get_metrics.' This clearly tells the agent when to use this tool and when to use an alternative, with a specific sibling tool name.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_appsA

List registered mPulse apps and the default app.

Use this before other tools so you reference real app names. The app argument on every tool is optional and falls back to the default.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.7/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the transparency burden. The verb 'List' implies a read-only operation, and it adds useful behavior about the default app fallback. It does not explicitly state whether any side effects exist, but for a zero-parameter list command, the implied read-only nature is adequate.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three short sentences, each adding distinct value: purpose, usage timing, and parameter context. The key information is front-loaded, with no filler or repetition.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple listing tool with zero parameters and an output schema, the description fully covers what the tool does and when to use it. It also integrates well with the sibling tools by explaining the optional `app` argument pattern, making the description complete in context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters, so there is nothing about this tool's schema to clarify. The description adds valuable context about the default app and the `app` argument on sibling tools, which helps the agent understand the ecosystem, but that is not directly about this tool's parameters. Baseline for a zero-param tool is 4.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb 'List' with an explicit resource ('registered mPulse apps and the default app'), making the tool's purpose immediately clear. It is inherently distinct from sibling analytic tools like get_summary or get_metrics, as it returns app identifiers rather than metrics.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It explicitly instructs to 'use this before other tools' so that real app names can be referenced. It also clarifies the behavior of the `app` argument across other tools, which is important context for when this listing tool should be called.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_query_typesA

List the mPulse query-types this server knows about, with one-line summaries.

The explicit tools cover: summary→get_summary, histogram→get_histogram, by-minute→get_timers, timers-metrics→get_metrics. Everything else is reachable via the generic query tool.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the burden of behavioral disclosure. It clearly states the tool lists known query types with summaries, implying a read-only discovery operation, and adds useful dynamic context ('this server knows about') and relationships to sibling tools. It does not discuss auth or rate limits, but those are not critical for a low-risk list operation.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two compact sentences with no filler. The first sentence states the core function, and the second provides useful sibling-tool context in a structured, readable way. Every sentence earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's low complexity (zero parameters) and the presence of an output schema, the description is complete. It explains what the tool does, what it returns (one-line summaries), and how it relates to the other query tools, which is sufficient for an agent to select and invoke it correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters, and schema coverage is 100%, so the baseline is 4. The description adds no parameter-specific information because none is needed; there are no parameters to explain.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description starts with a specific verb ('List') and a clear resource ('mPulse query-types this server knows about'), and adds that it returns one-line summaries. It also distinguishes this listing tool from sibling query tools by explicitly mapping query types to get_summary, get_histogram, get_timers, and get_metrics.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies that this tool is for discovering what query types exist, but it does not explicitly say 'use this when you need to discover available query types' or provide direct guidance on when to choose it over siblings. It does clarify that explicit tools cover certain types and everything else goes through the generic query tool, which is useful context but not a direct usage guideline for list_query_types.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

queryA

Call an arbitrary mPulse query-type with arbitrary parameters.

Use this for query-types not covered by the explicit tools (see list_query_types), e.g. dimension-values, geography, page-groups, app-error-summary.

params is a dict of mPulse wire parameter names (hyphenated), e.g. {"date-comparator": "Last24Hours", "page-group": "Home", "timer": "PageLoad"}. format=json is added automatically. Remember the one- calendar-day-per-query constraint.

raw=True returns mPulse's untouched JSON.

ParametersJSON Schema
NameRequiredDescriptionDefault
appNo
rawNo
paramsNo
query_typeYes

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.6/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden and delivers useful behavioral traits: `format=json` is added automatically, the one-calendar-day-per-query constraint is mentioned, and `raw=True` returns untouched JSON. It does not cover error behavior or authorization requirements, but for a generic query tool this is substantial context.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact and well-structured, starting with the core purpose, then usage guidance, parameter details, and a final note. Every sentence adds value; there is no fluff or repetition. Appropriate for a tool that needs this level of context.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is complex and arbitrary, but the description gives enough context for a knowledgeable agent: examples, constraints, and the raw option. It also references `list_query_types` for discovering types. It falls slightly short by not elaborating on the `app` parameter and the one-calendar-day constraint, but overall it is quite complete given the output schema exists.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate. It does so effectively for the tricky parameters: `params` is explained as a dict of hyphenated wire names with a concrete example, and `raw` is explained. However, the `app` parameter is left undocumented, and `query_type` is only implied by name. This is a strong but not complete compensation.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'Call an arbitrary mPulse query-type with arbitrary parameters.' It uses a specific verb ('call') and resource ('query-type'), and distinguishes itself from sibling tools by explicitly targeting query-types 'not covered by the explicit tools' with concrete examples.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly tells the agent when to use this tool: 'Use this for query-types not covered by the explicit tools (see `list_query_types`)'. It also points to the alternative (explicit tools) and provides examples, giving both a clear when-to-use and an implied exclusion for covered types.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 8 tool updatesv0.1.0
    • First observeddescribe_query
    • First observedget_histogram
    • First observedget_metrics
    • First observedget_summary
    • First observedget_timers
    • First observedlist_apps
    • First observedlist_query_types
    • First observedquery

TDQS

A4.4/5.0
Disambiguation5/5

Each tool has a clear, distinct role: summary/histogram/time-series/metrics cover different data shapes, query is explicitly for uncovered query-types, and list_apps/list_query_types/describe_query are discovery aids. No two tools appear interchangeable.

Naming Consistency5/5

Tool names follow a predictable verb_noun pattern: get_* for data retrieval, list_* for enumeration, describe_* for details, and a single 'query' for generic access. The style is uniform and intuitive.

Tool Count5/5

Eight tools is well-scoped for an analytics server: four query-specific getters, one generic fallback, and three utility/metadata tools. Each tool earns its place without redundancy or bloat.

Completeness5/5

The server covers the core mPulse analytics surface (summary, histogram, time series) and provides a generic query tool for any undiscovered query-type, plus list/describe tools for self-discovery. No obvious gaps; agents can handle arbitrary query-types without dead ends.

Maintenance

ActivityMaintained
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    D
    maintenance
    Read-only MCP server for Umami analytics. It talks to the Umami REST API directly over HTTP, supporting self-hosted and cloud setups.
    8
    17
    MIT
  • F
    license
    A
    quality
    D
    maintenance
    MCP server for the WhatsMyBudget Analytics API, providing tools to query budget periods, categories, accounts, and summaries.
    26
    -
  • A
    license
    Not graded
    quality
    A
    maintenance
    A read-only MCP server for querying telemetry data from configurable backends. Provides tools to list sources, describe schemas, run bounded queries, and compute aggregates.
    MIT

Latest Blog Posts

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/hyoon2007/mpulse-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server