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.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
corporate_number | string | yes | The company: its 13-digit Japanese corporate number (法人番号), e.g. “1180301018771”, or its name. A name is resolved to a corporate number, and the Japanese name resolves far more reliably than a romanised one — “トヨタ自動車” over “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.