get_company
Pack: prh-fi · Endpoint: https://gateway.pipeworx.io/prh-fi/mcp
Full register record for one Finnish company by businessId (Y-tunnus, format NNNNNNN-N). e.g. {businessId:“0112038-9”} (Nokia Oyj). Returns names[] (with history), addresses[], companyForms[], mainBusinessLine, registeredEntries[], tradeRegisterStatus, status, registrationDate, lastModified. Multi-language descriptions: languageCode 1=Finnish, 2=Swedish, 3=English.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
businessId | string | yes | Finnish Y-tunnus, format NNNNNNN-N, e.g. “0112038-9”. |
Example call
Arguments
{
"businessId": "0112038-9"
}
curl
curl -X POST https://gateway.pipeworx.io/prh-fi/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_company","arguments":{"businessId":"0112038-9"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_company', {
"businessId": "0112038-9"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"prh-fi": {
"url": "https://gateway.pipeworx.io/prh-fi/mcp"
}
}
}
See Getting Started for client-specific install steps.