Skip to main content
Glama

Findymail

Subscribe to Alerts

subscribe
Idempotent

Create a proactive monitoring subscription to a live-data event stream. Returns the new subscription id. Requires a Pipeworx OAuth account (anonymous + BYO cannot persist subscriptions). Supported types: "sec_8k" (8-K filings matching ticker + item codes — e.g. items:["5.02"] = officer change), "polymarket_edge" (Polymarket↔Kalshi cross-venue mispricings — params:{topic:"fed"}), "fred_series" (new FRED observations — params:{series_id:"UNRATE"}). Delivery channels: feed (always on — pull via recent_alerts or GET registry.pipeworx.io/alerts.json), and optionally email (set delivery:{email:"you@x.com"}) or sms (delivery:{sms:"+15551234567"} — phone must be verified at /account first; 10/day cap).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
typeYesSubscription type.
paramsYesType-specific filter. sec_8k: {ticker:"AAPL", items?:["5.02","1.01"]}. polymarket_edge: {topic:"fed", min_spread_bps?:500}. fred_series: {series_id:"UNRATE"}. patent_grant: {applicant:"Apple Inc."}. clinical_trial: {sponsor?:"Pfizer", condition?:"lung cancer", phase?:"PHASE3"} (sponsor or condition required).
deliveryNoOptional delivery channels in addition to the always-on persistent feed. {email:"you@x.com"} sends a templated alert per fired event. {sms:"+15551234567"} sends an SMS per event — must match the verified phone on the caller's account (verify at https://pipeworx.io/account first; 10/day cap). {webhook:"https://..."} POSTs each event JSON to your endpoint, HMAC-signed — the response includes delivery.webhook_secret (whsec_…) ONCE; verify X-Pipeworx-Signature = sha256 HMAC of "<X-Pipeworx-Timestamp>.<raw body>". Auto-disabled after 10 consecutive failing runs.

Schema Changelog

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

  1. First observed

TDQS

A4.4/5.0
Behavior4/5

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

Description adds significant behavioral context: authentication requirement (Pipeworx OAuth), delivery channel specifics (always-on feed, optional email/SMS with phone verification and 10/day cap, webhook with HMAC signing), and example configurations. Annotations indicate idempotentHint=true but description implies each call creates a new subscription (returns new id), which could be ambiguous but not a direct contradiction.

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 a single dense paragraph; it front-loads the main purpose and key requirements. However, it could be more scannable with bullet points or separate sections for types and channels. No wasted sentences, but structure could improve readability.

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 complexity (multiple subscription types, delivery channels, authentication) and no output schema, the description covers the core functionality: it explains what the tool does, what it returns (subscription id), prerequisites, and examples. It lacks mention of failure modes or idempotency behavior, but is generally complete for an initial understanding.

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

Parameters5/5

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

With 100% schema coverage, the description still adds substantial value: for each type enum, it provides concrete examples and explains parameters (e.g., sec_8k with ticker and items, polymarket_edge with topic). For delivery, it elaborates on webhook signing and SMS cap, which are not in the schema. This goes well beyond the schema 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?

Title 'Subscribe to Alerts' and description 'Create a proactive monitoring subscription to a live-data event stream' clearly state the verb (create) and resource (subscription). It distinguishes from sibling tools like list_subscriptions, unsubscribe, and recent_alerts by focusing on creation of a subscription.

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?

Description explicitly mentions requirement for a Pipeworx OAuth account, notes that anonymous and BYO accounts cannot persist subscriptions, and lists supported types and delivery channels. It implicitly guides when to use: when you need proactive monitoring. However, it does not explicitly state when not to use or alternative options beyond the type list.

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.8/5.0
Disambiguation2/5

Several tools have heavily overlapping purposes: ask_pipeworx and ask_pipeworx_beta are currently identical, deep_research/validate_claim/ask_pipeworx all route factual questions to the same underlying catalog, and ai_visibility_check is essentially wrapped by scan_competitor_ai_presence. The long descriptions help, but the boundaries between query, research, and verification tools are genuinely ambiguous.

Naming Consistency2/5

Names are all lowercase snake_case, but there is no consistent verb_noun or domain pattern: ask_pipeworx, findymail_find_email, scan_competitor_ai_presence, polymarket_kalshi_spread, and generate_llms_txt each use a different structural convention. The mix of brand prefixes, domain prefixes, and bare commands makes the naming feel ad hoc rather than systematic.

Tool Count2/5

33 tools is well over the 25+ threshold and reflects a server that bundles at least five distinct concerns: email lookup, structured data research, prediction-market analysis, subscriptions, and memory. Most individual tools earn their place, but the count is too high for coherent tool selection in a single MCP server.

Completeness3/5

Coverage is broad and mostly self-sufficient for the Pipeworx data ecosystem: querying, deep research, entity resolution, comparisons, verification, subscriptions, memory, and one-off utilities are all present. There are notable gaps though—there is no tool to fetch a full record from a returned pipeworx:// citation URI, and the Findymail side is limited to find/reverse with no verification or bulk capability.