Skip to main content
Glama

Search Within a Source

search_within
Read-onlyIdempotent

Semantic search INSIDE a fetched record. Pass the text you already pulled (e.g. a SEC 10-K body, an article, a long tool result) plus a natural-language query; get back the top-N passages with character offsets and similarity scores. Use when the record is too big to cram into the prompt — search_within saves context, returns only the passages that matter, and every passage carries an offset so the agent can verify a verbatim quote. Pairs with ask_pipeworx_grounded: fetch with the gateway, ground over the relevant passages instead of the whole document. BGE-base-en embeddings + cosine over 500-char overlapping windows; cap is 200K chars (longer inputs are truncated and flagged).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
textYesThe document text to search inside (max ~200K chars).
limitNoMax passages to return (1-20, default 5).
queryYesNatural-language query — what passages do you want? E.g. "supply-chain risk", "fiscal year 2024 revenue", "drug interactions with warfarin".

TDQS

A4.7/5.0
Behavior5/5

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

Annotations already declare readOnlyHint, idempotentHint, openWorldHint, and destructiveHint=false. The description adds substantial behavioral context beyond those: top-N passages with character offsets and similarity scores, BGE-base-en embeddings, cosine similarity over 500-char overlapping windows, and a 200K char cap with truncation flagging. These details inform the agent about output format and edge cases without contradicting 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?

The description is three sentences, each earning its place: first defines purpose, second gives use case and benefits, third provides technical details and complementarity. It is front-loaded with the core purpose and avoids filler. The structure is easy to parse for an agent.

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 3-parameter tool with no output schema, the description covers the return format (top-N passages with offsets and scores), input constraints (200K cap), use case, and integration with a sibling tool. It provides enough context for an agent to decide when and how to invoke the tool, without needing an output schema.

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% with clear descriptions for all three parameters (text, limit, query). The description reinforces that 'text' is the already-pulled document and 'query' is a natural-language question, but this largely mirrors the schema. It does not add significant new semantics beyond what the schema already provides, so the 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 'Semantic search INSIDE a fetched record' — a specific verb (search) plus resource (inside a fetched record) and scope. It clearly distinguishes from sibling tools like ask_pipeworx_grounded (which grounds over a whole document) and search_satellites (different domain). No ambiguity about what the tool does.

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 provides explicit guidance: 'Use when the record is too big to cram into the prompt' and explains the benefit ('saves context, returns only the passages that matter'). It also names a complementary sibling, ask_pipeworx_grounded, and describes how the two tools can be chained ('fetch with the gateway, ground over the relevant passages'). This is clear when-to-use vs. alternatives.

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
Disambiguation3/5

Most tools have clearly distinct jobs, but ask_pipeworx, ask_pipeworx_beta, ask_pipeworx_grounded, and deep_research are overlapping query/research entry points—and ask_pipeworx_beta is currently identical to ask_pipeworx. Similarly, ai_visibility_check and scan_competitor_ai_presence overlap by composition. The descriptions are detailed enough to choose correctly with care, but the boundaries are not always crisp.

Naming Consistency3/5

All names use lowercase snake_case, which keeps the surface readable, but the naming conventions are mixed: some are imperative verbs (get_tle, list_recent, validate_claim), some are noun phrases (entity_profile, recent_alerts, pipeworx_trending), and several use domain prefixes without a clear verb (polymarket_arbitrage, polymarket_edges). This is still discoverable naming, but it does not follow a consistent verb_noun pattern.

Tool Count2/5

34 tools is well beyond the well-scoped range, and the vast majority belong to a broad Pipeworx research/prediction-market platform rather than the server's apparent 'tle' satellite theme. Only get_tle, list_recent, and search_satellites directly match the server name. It feels like several tool surfaces aggregated into one server rather than one coherent product.

Completeness3/5

For the satellite TLE theme, NORAD lookup, name search, and recent-catalog listing are covered, but orbit propagation, pass prediction, and historical TLE data are missing. For the broader data-research surface, coverage is rich—query, grounded answers, entity resolution, comparison, validation, subscriptions, and memory are all present—so agents have workable paths for most tasks, but the server's mixed scope creates obvious thematic gaps.