gbiz_company_search

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

Find Japanese companies and their 13-digit corporate numbers (法人番号) in gBizINFO, the Japanese government corporate registry run by METI. Search by company name, prefecture, corporate form, capital, employee count, revenue, or by whether the company has government procurement awards, subsidies, patents or filed financials. Returns each match with its corporate number, Japanese legal name, romanised name, registered address, capital and headcount. Requires an API key.

Parameters

NameTypeRequiredDescription
namestringnoCompany name, partial match. PASS THE JAPANESE NAME WHERE YOU CAN (“トヨタ自動車”): a Latin-script query is matched against the romanised name field, which is sparse and dominated by municipal bodies — “Toyota” returns Toyota City property wards, not トヨタ自動車株式会社. The response flags this when it applies.
prefecturestringnoPrefecture code, 2 digits from the JIS local-government code (13 = Tokyo, 23 = Aichi, 27 = Osaka).
citystringnoMunicipality code from the same JIS scheme.
corporate_typestringnoCorporate form code: 301 株式会社 (joint-stock), 302 有限会社, 303 合名会社, 304 合資会社, 305 合同会社, 201 local government, 101 national body.
hasstringnoRestrict to companies that have records of a given kind: ${Object.keys(SOURCE_CODES).join(’, ’)}.
capital_minnumbernoMinimum capital stock in yen.
capital_maxnumbernoMaximum capital stock in yen.
employees_minnumbernoMinimum employee count.
employees_maxnumbernoMaximum employee count.
founded_yearstringnoYear of establishment, or several comma-separated.
limitnumbernoCompanies to return, 1-100 (default 20).
pagenumbernoResult page, 1-10 (default 1).

Example call

Arguments

{
  "name": "トヨタ自動車",
  "limit": 3
}

curl

curl -X POST https://gateway.pipeworx.io/gbizinfo/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"gbiz_company_search","arguments":{"name":"トヨタ自動車","limit":3}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('gbiz_company_search', {
  "name": "トヨタ自動車",
  "limit": 3
});

More examples

{
  "corporate_type": "301",
  "prefecture": "13",
  "limit": 2
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build September 13, 2026