Skip to main content
Glama

Search funds, stocks, and insiders

search
Read-onlyIdempotent

Bounded cross-domain search: funds by name, stocks by ticker/name, and insider transactions by owner. The same scopes the web search uses. A blank or missing query returns empty buckets, mirroring GET /api/v1/search.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
queryNoSearch query (fund names, tickers, insider names).

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
queryYes
resultsYes
provenanceYes

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so safety is covered. The description adds valuable behavioral details: blank/missing queries return empty buckets, and the search scopes mirror web search. This goes beyond annotations without contradicting them. It does not describe pagination or sorting, but those are likely in the 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 two sentences, immediately stating the tool's purpose and scope, followed by a concise edge-case behavior. No redundant information or filler; every sentence adds value. The structure is front-loaded and easy to scan.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With an output schema present, return values need not be described. The description covers scope, matching criteria, and blank-query behavior. For a bounded search tool, this is largely complete. It might ideally mention result count or pagination, but those are likely in the output schema. Overall, the description is sufficient for an agent to invoke the tool correctly.

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 the 'query' parameter already described as 'Search query (fund names, tickers, insider names).' The description reinforces this by listing matching fields but does not add significant new parameter-level semantics. The blank-query behavior is useful but is more behavioral than parameter semantics. Baseline of 3 is appropriate given full schema coverage.

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 identifies the tool as a cross-domain search covering funds, stocks, and insiders, with specific fields (name, ticker/name, owner). This distinguishes it from sibling getters like get_fund, get_stock, and get_investor, which target single entities. The phrase 'Bounded cross-domain search' further clarifies its scope.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies when to use this tool: when searching across domains by name/ticker/owner, rather than retrieving a specific known entity via sibling tools. It does not explicitly name alternatives or state when not to use it, but the cross-domain scope and reference to web search scopes provide clear situational context. A minor gap is the absence of explicit exclusionary 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

A3.8/5.0
Disambiguation4/5

Most tools target distinct resources (funds, stocks, investors, insider transactions, pages). Slight overlap between get_fund (latest filing + investors) and fund_history (filing history) could cause minor confusion, but descriptions clarify the difference.

Naming Consistency2/5

Tool names mix styles: some use verb_noun (get_fund, fetch_page), some are noun phrases (fund_history, fund_holdings), and one is a bare verb (search). No consistent pattern or prefix.

Tool Count5/5

Eight tools is a well-scoped set for a financial data API, covering funds, holdings, investors, stocks, insider transactions, and site content without redundancy or bloat.

Completeness5/5

The surface covers the core lifecycle for a read-only investment data API: fund details, historical filings, current holdings, investor links, stock holders, insider feed, and cross-domain search. No obvious dead ends or missing operations for the stated domain.

Resources