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

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

Beyond the readOnlyHint and idempotentHint annotations, the description discloses concrete behavioral details: embedding model (BGE-base-en), retrieval window size (500-char overlapping), similarity metric (cosine), character cap (200K), and truncation behavior (truncated and flagged). These are non-obvious traits that meaningfully affect tool invocation and output interpretation.

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 three sentences, each serving a distinct purpose: what it does, when to use it, and technical details. It is dense but not bloated; the technical sentence packs a lot of specifics while remaining readable. Slightly longer than strictly necessary, but every word contributes value.

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?

With no output schema, the description carries the full burden of explaining return values, and it does: 'top-N passages with character offsets and similarity scores.' It also explains the search mechanism and constraints (200K cap, truncation). Combined with the clear use case and pairing guidance, the tool is fully understood from the description alone.

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?

The schema already provides 100% description coverage for all three parameters, so the baseline is 3. The description reinforces the meaning of 'text' (fetched record), 'query' (natural-language), and 'limit' (top-N) but does not add substantial new semantics beyond the schema. The example queries are a minor enhancement, not enough to raise the score.

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 opens with a clear, specific verb and resource: 'Semantic search INSIDE a fetched record.' It immediately distinguishes this tool from general search (search) and other siblings by scoping it to text already pulled, and specifies the output (top-N passages with offsets and scores). This is a textbook purpose statement.

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 explicitly states when to use it: 'Use when the record is too big to cram into the prompt' and explains the benefit (saves context). It also provides an explicit alternative pairing with ask_pipeworx_grounded, telling the agent how to use it together with another tool. This is strong 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

A4.3/5.0
Disambiguation4/5

Most tools have clearly distinct purposes, but the Polymarket analytics tools (polymarket_arbitrage, polymarket_edges, polymarket_edge_tracker, polymarket_fill_risk, polymarket_kalshi_spread) have overlapping focuses that could confuse an agent if descriptions are not read carefully. Overall, detailed descriptions help differentiate them.

Naming Consistency5/5

All tool names are lowercase with underscores and follow a consistent verb_noun pattern (e.g., ask_pipeworx, bet_research, compare_entities). Prefixes like polymarket_ and pipeworx_ group related tools. No mixing of conventions or vague names.

Tool Count4/5

With 33 tools, the count is on the higher side but appropriate given the broad scope covering Pipeworx data access, Polymarket analytics, web scraping, memory, and subscriptions. Each tool has a distinct role, and the set is not overly bloated.

Completeness4/5

The tool surface covers a wide range of tasks: data queries, prediction market analysis, web scraping, memory, and subscriptions. Minor gaps exist, such as no tool for user account management or writing data back, but the core domain is well-covered with multiple specialized tools.