edgar_ticker_to_cik

Pack: edgar · Endpoint: https://gateway.pipeworx.io/edgar/mcp

Resolve a US stock ticker (e.g. “TSLA”) to the SEC’s 10-digit CIK identifier — required by every other SEC tool. Call THIS FIRST when you have a ticker and need to use edgar_company_concept, edgar_company_filings, edgar_company_facts, sec_8k_recent, or any other SEC-keyed tool. Returns {cik, cik_padded, company_name}. Cheap, no rate limit concerns. Most other tools also accept tickers directly and call this internally — only use it explicitly when you want the CIK as data.

Parameters

NameTypeRequiredDescription
tickerstringyesStock ticker symbol (e.g., “AAPL”, “MSFT”, “TSLA”)

Example call

Arguments

{
  "ticker": "AAPL"
}

curl

curl -X POST https://gateway.pipeworx.io/edgar/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"edgar_ticker_to_cik","arguments":{"ticker":"AAPL"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('edgar_ticker_to_cik', {
  "ticker": "AAPL"
});

More examples

{
  "ticker": "TSLA"
}

Response shape

Always returns: ticker, cik, cik_padded, company_name

FieldTypeDescription
tickerstringStock ticker symbol
cikstringCompany CIK number
cik_paddedstringCIK padded to 10 digits with leading zeros
company_namestringOfficial company name
Full JSON Schema
{
  "type": "object",
  "properties": {
    "ticker": {
      "type": "string",
      "description": "Stock ticker symbol"
    },
    "cik": {
      "type": "string",
      "description": "Company CIK number"
    },
    "cik_padded": {
      "type": "string",
      "description": "CIK padded to 10 digits with leading zeros"
    },
    "company_name": {
      "type": "string",
      "description": "Official company name"
    }
  },
  "required": [
    "ticker",
    "cik",
    "cik_padded",
    "company_name"
  ]
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "edgar": {
      "url": "https://gateway.pipeworx.io/edgar/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build June 24, 2026