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

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

Annotations already mark the tool read-only, idempotent, and non-destructive. The description goes beyond this by disclosing the retrieval mechanism (BGE-base-en embeddings, 500-char overlapping windows), the hard 200K character limit with truncation and flagging, and that returned passages include character offsets for verbatim quote verification. 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.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is dense but well-organized, front-loading the core action and then layering usage guidance and technical constraints. Every sentence earns its place, though it is slightly long and could be trimmed without losing value; still, structure is effective.

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?

There is no output schema, so the description wisely explains return values (passages, offsets, similarity scores, truncation flag) and gives input constraints. It also covers integration with a sibling tool, making it self-sufficient for an agent to decide, invoke, and interpret results 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?

Schema coverage is 100%, so baseline is 3. The description adds meaningful context: it clarifies 'text' is a previously pulled record (e.g., SEC 10-K), gives concrete query examples, and reinforces that 'limit' controls the number of returned passages. This adds value beyond 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 'Semantic search INSIDE a fetched record' and specifies both inputs (text + natural-language query) and outputs (top-N passages with character offsets and similarity scores). It clearly distinguishes itself from sibling tools like ask_pipeworx_grounded by stating it operates inside a single already-fetched record, not over a broader corpus.

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 it: 'Use when the record is too big to cram into the prompt' and contrasts with ask_pipeworx_grounded, saying to 'fetch with the gateway, ground over the relevant passages instead of the whole document.' This gives the agent clear decision criteria and names the complementary alternative.

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

Several tools overlap heavily: ask_pipeworx_beta is currently identical to ask_pipeworx, and find_related with syn/rhy options duplicates find_synonyms and find_rhymes. The six Polymarket tools and four entity-research tools also have fuzzy boundaries, so agents will struggle to reliably pick the right one.

Naming Consistency2/5

Conventions are mixed: most tools follow verb_noun (ask_, find_, compare_, validate_) but several are bare nouns or noun phrases (entity_profile, recent_alertes, recent_changes) and others are bare verbs (remember, forget, subscribe, unsubscribe). The server name 'words' matches only five of 36 tools, adding further confusion about what to expect here.

Tool Count2/5

36 tools is well into the heavy range, and the set bundles word lookups, a universal data router, six Polymarket tools, memory, subscriptions, and meta-utilities under one server. Many of these would be better split into dedicated, purpose-scoped servers.

Completeness4/5

For the dominant data-research and prediction-market scope, the surface is strong: grounded lookups, deep reseach, entity profiles, compareions, change feeds, claim verification, edge scanners, fill-risk checks, subscriptions, and memory are all covered. Minor gaps exist: taking 'words' literally there is no defintion or spelling tool, and there is no generic open-web search, but as a data-research toolkit it is quite complete.