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. First observed

TDQS

A4.9/5.0
Behavior5/5

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

The description discloses substantial behavioral details beyond the annotations: it describes the embedding model (BGE-base-en), the windowing strategy (500-char overlapping windows), the return format (character offsets and similarity scores), and the 200K character cap with truncation flagged. This goes well beyond the readOnly/openWorld/idempotent hints and gives the agent a clear model of what will happen.

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 four sentences, each earning its place: the first defines the core action, the second gives usage rationale, the third connects to a sibling tool, and the fourth provides technical constraints. It is front-loaded with the primary purpose and wastes no words.

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 must explain what the tool returns, and it does: 'top-N passages with character offsets and similarity scores.' It also covers limits (200K char cap, truncation flag) and parameter expectations. For a 3-parameter tool, this is a complete and self-contained description.

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 schema already covers 100% of parameters, so the baseline is 3. The description adds value by giving concrete examples for the 'text' parameter ('e.g. a SEC 10-K body, an article, a long tool result') and framing it as 'text you already pulled.' It also adds the truncation nuance for the text parameter. This is more than baseline but not a complete overhaul, hence a 4.

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 specific verb and resource: 'Semantic search INSIDE a fetched record.' It clearly distinguishes itself from siblings by explaining it operates on text already pulled, and it explicitly pairs with ask_pipeworx_grounded for a different workflow. The purpose is unambiguous and differentiated.

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: 'Use when the record is too big to cram into the prompt.' It also names an alternative workflow with ask_pipeworx_grounded, showing how this tool fits into a larger pipeline. This provides clear when-to-use and context for alternatives, though it doesn't state explicit exclusions, it implies them (small records should just be put in the prompt).

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

Several tools have unclear boundaries: ask_pipeworx, ask_pipeworx_beta (currently functionally identical), ask_pipeworx_grounded, deep_research, discover_tools, and suggest_questions all route to the same underlying catalog with only subtle differences. The Polymarket cluster (bet_research, polymarket_arbitrage, polymarket_edges, polymarket_edge_tracker, polymarket_fill_risk, polymarket_kalshi_spread) also substantially overlaps in purpose, and the two unrelated domains (GIS vs. data/betting) make it worse.

Naming Consistency3/5

Names are readable and form some predictable clusters (polymarket_* prefix, ask_pipeworx_* suffixes, subscribe/unsubscribe/list_subscriptions), but conventions are mixed: bare verbs (remember, forget, recall), noun_noun (layer_info, entity_profile, pipeworx_feedback), verb_noun (query_layer, search_datasets), and adjective_noun (deep_research, recent_alerts). No single pattern dominates, though nothing is chaotic.

Tool Count2/5

34 tools is well above the 25+ threshold for a heavy surface, and the count is not justified by the server's stated identity: only 3 of 34 tools (search_datasets, layer_info, query_layer) relate to ArcGIS Glasgow. The remaining 31 tools belong to several unrelated domains (Pipeworx data querying, Polymarket betting, AI visibility, memory, npm scanning), making the effective scope far too broad.

Completeness2/5

For the server's named ArcGIS Glasgow domain, the surface is thin: search, schema inspection, and query are present, but there is no way to list all datasets, no spatial querying, and no write/update capability. Meanwhile the 31 non-GIS tools create a sprawling second server's worth of functionality, so the set as a whole has no coherent domain whose coverage can be judged complete.