gbiz_company_procurement
Pack: gbizinfo · Endpoint: https://gateway.pipeworx.io/gbizinfo/mcp
Japanese government contracts awarded to one company, by its 13-digit corporate number, from gBizINFO (METI). Each award returns the order date, the contract title, the amount in yen and the ministry or agency that placed it — the Japanese counterpart to a USAspending award history. Requires an API key.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
corporate_number | string | yes | 13-digit Japanese corporate number. |
limit | number | no | Awards to return, newest first, 1-500 (default 50). |
Example call
Arguments
{
"corporate_number": "1180301018771",
"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_procurement","arguments":{"corporate_number":"1180301018771","limit":2}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('gbiz_company_procurement', {
"corporate_number": "1180301018771",
"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.