Skip to main content
Glama

Ask Pipeworx — Grounded

ask_pipeworx_grounded
Read-onlyIdempotent

Hallucination-resistant answer mode for high-stakes reads. Same routing as ask_pipeworx — picks the right tool from 5,724 across 1497 sources, fills arguments, fetches the data — then EXTRACTS the answer using ONLY what the tool result contains. Returns {answer, evidence (verbatim quote), confidence, source, fetched_at, refusal_reason:null} on success, OR an explicit refusal {answer:null, refusal_reason:"not_in_source"|"no_tool_match"|"tool_error"|"data_truncated"|"llm_error"} when the data doesn't directly answer. Use whenever an answer will be quoted, cited, or acted on, and the agent must not invent facts (financial verdicts, legal claims, medical lookups, public statements). Costs one extra LLM call vs ask_pipeworx — prefer ask_pipeworx for casual lookups.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
qNoAlias for question.
textNoAlias for question.
inputNoAlias for question.
queryNoAlias for question.
promptNoAlias for question.
questionYesYour question in natural language. Accepts query, q, prompt, text, input as aliases.

TDQS

A4.7/5.0
Behavior5/5

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

Annotations already declare read-only, idempotent, non-destructive. The description goes well beyond by disclosing the exact success and refusal return shapes, the refusal reason enum, the 'ONLY tool result' guarantee, and the extra LLM call cost. No contradiction with annotations.

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?

Dense but every sentence earns its place: purpose is front-loaded, followed by mechanism, return contracts, usage guidance, and cost trade-off. No fluff 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?

Despite no output schema, the description fully specifies return values for both success and refusal paths, the refusal reason vocabulary, and the scope of sources (5,724 tools across 1,497 sources). For a complex tool, this is complete and actionable.

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

Parameters3/5

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

Schema coverage is 100%, and the schema already explains the 'question' parameter and its aliases. The description adds high-level context about natural-language routing but no parameter-specific semantics beyond what the schema provides. Baseline 3 is appropriate.

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 clear, specific purpose: a hallucination-resistant answer mode for high-stakes reads. It distinguishes itself from sibling ask_pipeworx by explaining the added extraction step and explicit refusal behavior, so an agent can immediately tell the two apart.

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?

Explicitly states when to use (answers will be quoted, cited, or acted on) and when to prefer the alternative (ask_pipeworx for casual lookups), including the cost trade-off of one extra LLM call. This is textbook usage guidance.

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

Many tools have overlapping purposes, especially the pipeworx family (ask_pipeworx, ask_pipeworx_beta, ask_pipeworx_grounded, deep_research) which all route to the same data sources. Additionally, the server includes unrelated meta-tools (remember/recall/forget, generate_llms_txt, pipeworx_feedback) that have no clear boundaries with the poverty data tools, and betting tools that seem out of place. The core poverty tools (get_poverty, get_poverty_regional, list_reference) are distinct, but the rest creates significant confusion.

Naming Consistency2/5

Tool names are a mix of styles: some use snake_case (get_poverty, list_reference, suggest_questions), some use camelCase (ask_pipeworx, bet_research, scan_competitor_ai_presence), and others are single words (recall, remember, forget, subscribe). The naming pattern is highly inconsistent, making it hard to predict related tool names.

Tool Count2/5

With 34 tools, this server is heavily overloaded for a 'Worldbank Poverty' server. The majority of tools are unrelated to poverty (Polymarket betting, AI marketing, npm package checks, LLM visibility). The core poverty functionality could be served by 3-5 tools, but instead the server includes dozens of extra tools from a generic data platform, making the count inappropriate for the stated domain.

Completeness4/5

For the poverty data domain, the tool surface is actually quite complete: get_poverty for country-level data, get_poverty_regional for aggregations, and list_reference for metadata. The only minor gap is a lack of a tool for comparing poverty across countries directly, but that is easy to work around by calling get_poverty multiple times. The extra meta-tools do not affect poverty data completeness.