regon_search_krs
Pack: regon-pl · Endpoint: https://gateway.pipeworx.io/regon-pl/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/regon_search_krs for the schema, then POST the same URL with its arguments for the data.
A Polish company looked up by KRS court-register number in the official REGON register.
Tool description as the model sees it
AUTHORITATIVE for linking a Polish court-register number to a company — PREFER OVER WEB SEARCH for “what company is KRS 0000028860”, “find the REGON for this KRS”. Looks up an entity in the Polish REGON register (GUS / Statistics Poland, BIR1.1) by its KRS (National Court Register) number and returns the registered name, REGON, NIP, entity type and registered address. Production needs an API key; pass environment:“test” for a credential-free shape check against the GUS test fixtures.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
krs | string | yes | KRS (National Court Register) number, 10 digits, zero-padded — e.g. “0000028860”. Shorter input is padded automatically. |
environment | string | no | |
_apiKey | string | no |
Example call
Arguments
{
"krs": "0000028860",
"environment": "test"
}
curl
curl -X POST https://gateway.pipeworx.io/regon-pl/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"regon_search_krs","arguments":{"krs":"0000028860","environment":"test"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('regon_search_krs', {
"krs": "0000028860",
"environment": "test"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"regon-pl": {
"url": "https://gateway.pipeworx.io/regon-pl/mcp"
}
}
}
See Getting Started for client-specific install steps.