edinet_search_filers
Pack: edinet · Endpoint: https://gateway.pipeworx.io/edinet/mcp
Resolve a Japanese company to its EDINET code and securities code from the FSA’s official EDINET filer list — the lookup every other EDINET call needs. Searches Japanese name, English name, kana, EDINET code and ticker across ~11,000 filers, and returns industry, listing status, fiscal year end and corporate number. Needs no API key. Example: edinet_search_filers({ query: “Toyota” }) → E02144 / 7203.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | Company name in Japanese or English, an EDINET code (E02144), or a securities code / ticker (7203). |
listed_only | boolean | no | Only return exchange-listed filers (上場). Default false. |
limit | number | no | Max filers to return, 1-50. Default 10. |
Example call
Arguments
{
"query": "Toyota"
}
curl
curl -X POST https://gateway.pipeworx.io/edinet/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"edinet_search_filers","arguments":{"query":"Toyota"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('edinet_search_filers', {
"query": "Toyota"
});
More examples
{
"query": "7203"
}
{
"query": "ソニー"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"edinet": {
"url": "https://gateway.pipeworx.io/edinet/mcp"
}
}
}
See Getting Started for client-specific install steps.