gbiz_company_records

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

Patents and trademarks, statutory certifications, government commendations, filed financial results, or workplace statistics for one Japanese company, by its 13-digit corporate number, from gBizINFO (METI). Pick the record type with kind. Workplace statistics carry headcount by sex, average tenure, average age, overtime hours and childcare-leave take-up — the disclosure Japanese employers file under the 女性活躍推進法.

Parameters

NameTypeRequiredDescription
corporate_numberstringyesThe company: its 13-digit Japanese corporate number (法人番号) or its name — a name is resolved, and the Japanese form resolves far more reliably than a romanised one.
kindstringyesWhich record set: “patent”, “certification”, “commendation”, “finance” or “workplace”.
limitnumbernoRecords to return, 1-500 (default 50). For “finance” and “workplace”, which are one record per company rather than a list, this caps the arrays nested inside it (e.g. the financial period series).

Example call

Arguments

{
  "corporate_number": "1180301018771",
  "kind": "finance",
  "limit": 2
}

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_records","arguments":{"corporate_number":"1180301018771","kind":"finance","limit":2}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('gbiz_company_records', {
  "corporate_number": "1180301018771",
  "kind": "finance",
  "limit": 2
});

More examples

{
  "corporate_number": "1180301018771",
  "kind": "workplace"
}
{
  "corporate_number": "1180301018771",
  "kind": "patent",
  "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 15, 2026