Skip to main content
Glama

Recent Alerts

recent_alerts
Read-onlyIdempotent

Pull fired events from your subscription feed. Returns the most recent alerts the evaluator has written to your persisted feed — each carries source, citation_uri (pipeworx:// when available), and the raw event payload. Filter by type (e.g. "sec_8k") and/or since (ISO timestamp). Set mark_read:true to flag returned events read so the next call only shows newer ones. Polls work fine; the same feed is also at GET registry.pipeworx.io/alerts.json for scripts and dashboards.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
typeNoOptional — filter to one subscription type.
limitNoMax events to return (1-200, default 50).
sinceNoOptional ISO timestamp — return events fired_at >= this time.
mark_readNoFlag the returned events read in the same call (default false).
unread_onlyNoReturn only events where read_at is null (default false).

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A3.8/5.0
Behavior1/5

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

The description discloses a mutating side effect (mark_read flags events read), but annotations declare readOnlyHint: true, which contradicts that behavior. Since the description contradicts the annotation's read-only claim, this violates the transparency rule. Flag as annotation contradiction.

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 sentences cover purpose, return contents, filtering options, side effect, and alternative access. No filler; front-loaded with the core action. Every sentence earns its place.

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?

Covers return payload fields, filtering, side-effect behavior, and alternative access. Missing details on unread_only semantics or how it interacts with mark_read, and the readOnly annotation conflict creates ambiguity, but otherwise sufficient for a read tool.

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 covers all 5 parameters with descriptions, providing a strong baseline. The description adds extra meaning by explaining mark_read's consequence ('next call only shows newer ones') and giving a concrete type example ('sec_8k'), enhancing the schema's minimal descriptions.

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?

Description opens with 'Pull fired events from your subscription feed', a specific verb+resource statement. It clearly distinguishes this from sibling tools like list_subscriptions or recent_changes by focusing on alert events with payload details.

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?

Gives context by stating 'Polls work fine' and mentioning an alternative HTTP endpoint for scripts/dashboards, indicating when the tool is appropriate. However, it does not explicitly compare to sibling tools or state when not to use it.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.9/5.0
Disambiguation2/5

Several tool clusters are near-duplicates or easy to confuse: ask_pipeworx, ask_pipeworx_beta, and ask_pipeworx_grounded are nearly identical (beta currently matches stable exactly), while polymarket_edges, polymarket_arbitrage, and bet_research all scan prediction-market opportunities with overlapping outputs. entity_profile/compare_entities/recent_changes and ai_visibility_check/scan_competitor_ai_presence add further redundancy. Despite detailed descriptions, the boundaries require careful reading, so an agent is likely to misselect.

Naming Consistency3/5

All names are snake_case and readable, with useful prefixes like ask_, polymarket_, pipeworx_, and scan_. However, conventions are mixed: verb_noun (ask_pipeworx, list_subscriptions, resolve_entity) coexists with bare nouns (datasets, metadata, query) and noun-first compounds (entity_profile, bet_research, deep_research). There is no single predictable pattern.

Tool Count2/5

34 tools is above the 25-tool threshold, and the set spans multiple unrelated domains such as data routing, prediction markets, memory, subscriptions, Virginia Open Data, AI visibility, and npm dependency checks. Several tools are effectively wrappers or near-overlaps that could be consolidated, e.g., ai_visibility_check vs scan_competitor_ai_presence and polymarket_edges vs polymarket_arbitrage. The surface feels bloated for a single server.

Completeness4/5

Within its main sub-domains the set is solid: memory has remember/recall/forget, subscriptions have subscribe/unsubscribe/list/recent_alerts, research has resolve_entity/compare_entities/entity_profile/recent_changes/validate_claim, and Polymarket has detection/arbitrage/fill-risk/edge-tracking. Minor gaps exist — no tool to fetch a raw pipeworx:// record, no write/update for Virginia Open Data, and no trade execution for prediction markets — but these do not create dead ends for a research-focused agent.