MCP Server live — AI agents can now query 105M+ SEC facts. Connect your agent →
ValueinValuein
MCP Tools/search_companies
Discovery

Search Companies

search_companies
sample
sp500
full

Search for companies by name, ticker symbol, or CIK. Returns company metadata including sector, industry, SIC code, and S&P 500 membership. Use this tool first to resolve a company name to a ticker or CIK before querying financial data.

Example Call

# Using the Valuein MCP server from Python (via MCP SDK)
# Or call directly from Claude / Cursor after setup

result = await client.call_tool(
    "search_companies",
    arguments={
    "query": "EXAMPLE"
}
)
print(result)

Direct tool call:search_companies(query="Apple")

Inputs

ParameterTypeRequiredDescription
querystring
required
Company name, ticker symbol, or CIK. Partial matches are supported for names.
limitintegeroptionalMaximum results to return (1–50). Defaults to 10.

Output Fields

ciktickernamesectorindustrysic_codeexchangestatusis_sp500

Example Response

[
  {
    "cik": "0000320193",
    "ticker": "AAPL",
    "name": "Apple Inc.",
    "sector": "Technology",
    "industry": "Consumer Electronics",
    "sic_code": "3674",
    "exchange": "NASDAQ",
    "status": "ACTIVE"
  }
]

Returns Apple Inc. (AAPL, CIK 0000320193) in the Technology sector.

Notes

Available on all plans including sample tier. Results are filtered to the requesting plan's universe — sample plan returns S&P 500 companies only.