gbiz_company_profile

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

Registry profile for one Japanese company by its 13-digit corporate number (法人番号), from gBizINFO (METI). Returns the Japanese legal name, kana and romanised forms, registered address and postcode, representative director, capital stock in yen, employee count, date of establishment, business summary and corporate website, plus dissolution date if the company has closed. Requires an API key.

Parameters

NameTypeRequiredDescription
corporate_numberstringyes13-digit Japanese corporate number, e.g. “1180301018771” (Toyota Motor).

Example call

Arguments

{
  "corporate_number": "1180301018771"
}

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_profile","arguments":{"corporate_number":"1180301018771"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('gbiz_company_profile', {
  "corporate_number": "1180301018771"
});

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