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.

Not this tool for: Korean companies (use search_dart_company). Japan, Taiwan and Europe have no search tool — reach them through screen_companies or query_db on the companies table.

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.

  1. First observed

TDQS

A4.6/5.0
Behavior4/5

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

The annotations already indicate readOnlyHint and destructiveHint false, and the description adds useful behavioral context by describing the return structure, the error behavior for no matches, and the limitation that only SEC registrants with a listed ticker are searchable. It does not contradict the annotations and adds meaningful transparency about edge cases.

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 well-organized with clear sections for use cases, examples, and errors. It is slightly repetitive in places (e.g., the return shape is described both in prose and in the Returns line), but every section contributes useful information and the overall length is appropriate for a tool with routing nuances.

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?

The description provides complete context for selecting and calling the tool: when to use it, when to skip it, what it returns, error behavior, search limitations, and examples. Given the sibling tools include related search and EDGAR functions, this context is sufficient for an agent to use the tool correctly without further clarification.

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 provides full descriptions for both parameters, so the baseline is 3. The description adds value by giving concrete examples of accepted query forms (tickers, name fragments, CIKs), explaining the ranking order, and repeating/illustrating the limit behavior, which goes beyond the schema text.

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 search over SEC EDGAR registrants by ticker, company name, or CIK, and specifically notes that it returns the 10-digit zero-padded CIK needed by other edgar_* tools. It also distinguishes itself from search_dart_company for Korean companies.

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 the tool ('use when you need a CIK or to disambiguate a company name'), when it can be skipped (exact tickers can go directly to other edgar_* tools), and when not to use it (Korean companies, private companies). It also names the alternative tool for Korean companies, giving clear routing 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.