gbiz_company_subsidies
Pack: gbizinfo · Endpoint: https://gateway.pipeworx.io/gbizinfo/mcp
Japanese government subsidies and grants received by one company, by its 13-digit corporate number, from gBizINFO (METI). Each record returns the approval date, the subsidy programme name, the amount in yen and the granting ministry. Requires an API key.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
corporate_number | string | yes | 13-digit Japanese corporate number. |
limit | number | no | Subsidies to return, newest first, 1-500 (default 50). |
Example call
Arguments
{
"corporate_number": "1000020012131",
"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_subsidies","arguments":{"corporate_number":"1000020012131","limit":2}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('gbiz_company_subsidies', {
"corporate_number": "1000020012131",
"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.