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".

Schema Changelog

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

  1. Added

TDQS

A4.9/5.0
Behavior5/5

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

Beyond the annotations (readOnly, idempotent, non-destructive), the description reveals algorithm details: BGE-base-en embeddings, cosine similarity, 500-char overlapping windows, and a 200K character cap with truncation flagged. It also describes the output structure (passages with offsets and scores), which is not in annotations or an output schema.

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 densely informative yet compact. Every sentence earns its place: purpose, parameter guidance, use case, companion tool, and technical constraints are packed into four sentences without redundancy. Main purpose is front-loaded with 'Semantic search INSIDE a fetched record'.

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?

Even though there is no output schema, the description explains return values (passages, offsets, scores), limitations (200K cap, truncation flag), use cases, and integration with a sibling tool. This is complete for an agent to select and invoke the tool 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 input schema already covers 100% of parameter descriptions, so baseline is 3. The description adds useful semantics: examples of what 'text' should contain (SEC 10-K body, article), example queries, and the default/range context for 'limit'. This is above baseline but not exhaustive.

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 a specific action: semantic search inside an already-fetched record, returning passages with offsets and scores. It distinguishes itself from siblings by emphasizing 'inside' and explicitly positioning 'Pairs with ask_pipeworx_grounded' rather than searching the whole document.

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 use guidance is provided: 'Use when the record is too big to cram into the prompt — search_within saves context...'. It also names a complementary tool (ask_pipeworx_grounded) and contrasts with whole-document grounding, giving clear when-to-use and alternative context.

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 occupy overlapping question-answering territory: ask_pipeworx_beta currently behaves identically to ask_pipeworx, while ask_pipeworx_grounded, deep_research, and validate_claim all route the same data catalog and differ mainly in output guarantees. The six Polymarket tools also split edge detection, arbitrage, and fill-risk in ways that are easy for an agent to conflate. Clear exceptions like the memory and subscription trios keep it from a 1.

Naming Consistency4/5

Names are uniformly lowercase snake_case and most follow a readable verb-first or domain-prefixed pattern (get_package, list_releases, scan_dependency, ask_pipeworx_*). The Polymarket family uses noun phrases after a prefix (polymarket_edges, polymarket_fill_risk) and a few names are noun-first (entity_profile, recent_changes), which is a minor inconsistency rather than chaos.

Tool Count2/5

35 tools is well beyond the comfortable 3-15 range and even above the 16-25 heavy range. The broad Pipeworx data scope justifies some expansion, but identical ask_pipeworx_beta, six overlapping Polymarket tools, and unrelated utility families (Hex.pm, AI visibility, memory, llms.txt) suggest bloat rather than deliberate scoping.

Completeness4/5

Within its main data-access purpose, the surface is unusually complete: query (ask_pipeworx), grounded verification (ask_pipeworx_grounded/validate_claim), deep research, entity resolution/profiling, comparison, change feeds, and search-within are all present, and memory/subscription subdomains have full CRUD. There are minor gaps for the package side (no docs/dependents) and the hodgepodge of domains makes a single 'complete' surface hard to define, but no workflow hits a hard dead end.