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 女性活躍推進法. Requires an API key.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
corporate_number | string | yes | 13-digit Japanese corporate number. |
kind | string | yes | Which record set: “patent”, “certification”, “commendation”, “finance” or “workplace”. |
limit | number | no | Records to return, 1-500 (default 50). |
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
});
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.