Skip to main content
Glama

FinBridge

Search SEC EDGAR Companies

search_edgar_company
Read-only

Search SEC EDGAR registrants (US-listed companies) by ticker, company name, or CIK. Returns the 10-digit zero-padded CIK needed by the other edgar_* tools.

Args:

  • query (required): ticker ('AAPL', 'BRK-B' or 'BRK.B'), company-name fragment ('Berkshire'), or CIK number ('320193')

  • limit: max results, 1-50 (default 10)

Returns: {count, companies: [{cik, ticker, title}]} ranked exact-ticker > exact-name > prefix > substring.

Examples:

  • "find Apple's CIK" -> {query: 'AAPL'}

  • "companies named Berkshire" -> {query: 'Berkshire', limit: 5}

Use when: you need a CIK or to disambiguate a company name before calling get_edgar_financials/filings/insider_trades (those also accept tickers directly, so for an exact ticker you can skip this step). Don't use for: Korean companies (use search_dart_company) or private companies not registered with the SEC.

Errors: no match -> error suggesting a shorter name fragment; only SEC registrants with a listed ticker are searchable.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMax matches to return (default 10)
queryYesTicker (e.g. 'AAPL', 'BRK-B'), company-name fragment (e.g. 'Berkshire'), or CIK number

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
countYes
companiesYes

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?

Beyond the annotations (readOnlyHint, openWorldHint), the description discloses meaningful behavior: match ranking order, error handling for no matches, and the constraint that only SEC registrants with a listed ticker are searchable. These details let an agent predict edge cases. No contradiction with annotations exists.

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 well-structured into Args, Returns, Examples, Use when, Don't use, and Errors. Every section carries operational value, the core purpose is front-loaded, and there is no filler or redundant prose.

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?

For a 2-parameter, read-only lookup tool with an output schema, the description is complete: accepted input forms, output shape, ranking, error behavior, and routing to alternatives are all covered. An agent has everything needed to decide whether and how to call it 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?

Input schema coverage is 100%, so the baseline is 3, but the description adds value with concrete example mappings ('find Apple's CIK' -> {query: 'AAPL'}, 'companies named Berkshire' -> {query: 'Berkshire', limit: 5}), accepted ticker formats like BRK-B/BRK.B, and ranking semantics that affect result interpretation. The Args section duplicates the schema, but the examples and context push it above baseline.

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 states a specific verb and resource: 'Search SEC EDGAR registrants (US-listed companies) by ticker, company name, or CIK' and identifies the key output (the 10-digit zero-padded CIK). It clearly differentiates from sibling search_dart_company by restricting scope to US-listed SEC registrants, so an agent can distinguish it without inspecting other tools.

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 has explicit 'Use when' and 'Don't use for' sections that name exact conditions and alternatives: use it to get a CIK or disambiguate a name before get_edgar_* tools, skip it for exact tickers, and use search_dart_company for Korean companies. This is model guidance for when to invoke the tool vs alternatives.

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.

Resources