@pipeworx/regon-pl
MCP serverEverything elsePolish business register (REGON / BIR1.1), resolve any Polish company by NIP, REGON or KRS number…
Available today. Use it from your connected AI after setup.
No other account needed.
Add ahel to your AI once: Claude, ChatGPT, Cursor, Claude Code or Codex. Then ask it to use this.
Then ask your AI: use @pipeworx/regon-pl
Install @pipeworx/regon-pl
The server’s own address, for the clients that take one directly. Or connect ahel onceand every client you use reads it from one address, with the account kept on ahel rather than in each client’s config.
Claude Code
claude mcp add --transport http --scope user pipeworx-regon-pl 'https://gateway.pipeworx.io/regon-pl/mcp'Run it once in your project, then open /mcp to approve any sign-in the server asks for.
Claude Desktop
https://gateway.pipeworx.io/regon-pl/mcpAdd a custom connector in Settings, paste this address, and approve the sign-in.
Cursor
cursor://anysphere.cursor-deeplink/mcp/install?name=pipeworx-regon-pl&config=eyJ1cmwiOiJodHRwczovL2dhdGV3YXkucGlwZXdvcnguaW8vcmVnb24tcGwvbWNwIn0=Open the link and Cursor adds the server at that address.
ChatGPT
https://gateway.pipeworx.io/regon-pl/mcpIn Settings, enable Developer mode, create an MCP app, and paste this address. Your plan and workspace must allow custom apps.
Codex
codex mcp add pipeworx-regon-pl --url 'https://gateway.pipeworx.io/regon-pl/mcp'Run it once, then sign in with codex mcp login pipeworx-regon-pl if the server asks for an account.
From the project's README
As published by pipeworx-io/mcp-regon-pl in README.md.
Polish business register (REGON / BIR1.1) — resolve any Polish company by NIP, REGON or KRS number to its registered name, legal address and entity type, from Statistics Poland's official register.
Part of Pipeworx — an MCP gateway connecting AI agents to 1679+ live data sources.
Tools
regon_search_nip({ nip, environment, _apiKey })— by tax identification number.regon_search_regon({ regon, environment, _apiKey })— by 9- or 14-digit REGON statistical number.regon_search_krs({ krs, environment, _apiKey })— by National Court Register number.
All three return the registered name, the other two identifiers, entity type (legal person / sole trader / local unit), voivodeship, county, municipality, locality, postcode and registered address.
Auth
Platform key (PLATFORM_REGON_KEY) with BYO override via ?_apiKey=, plus a
credential-free test path.
environment: "production"(default) — the live register. Requires an API key. Register free at https://api.stat.gov.pl/Home/RegonApi; GUS issues a 20-character user key.environment: "test"— GUS's own public test service with the test key GUS publishes in its documentation. Needs no credential and genuinely answers, but from a small fixed fixture database (addresses read "ul. Test-Wilcza"). Use it to check the response shape, never for a fact about a real company. Every response from it carries adisclaimerfield saying so.
Data sources
- https://wyszukiwarkaregon.stat.gov.pl/wsBIR/UslugaBIRzewnPubl.svc — production BIR1.1.
- https://wyszukiwarkaregontest.stat.gov.pl/wsBIR/UslugaBIRzewnPubl.svc — test BIR1.1.
Traps
- SOAP 1.2 over MTOM, not REST. Two calls per query:
Zalogujexchanges the user key for a session id, then the search carries it. - The session id goes in an HTTP
sidheader, not in the SOAP envelope. Put it in the envelope and the service authenticates you as nobody and returns an empty result with no error. - A no-match is not an empty document. It is a populated
<dane>record whose only fields areErrorCode4 andErrorMessageEn"No data found for the specified search criteria". Parsed naively that is one result with every field null — a textbook silent zero. This pack detectsErrorCodeand reportsfound: falsewith the upstream message. - An unrecognised user key is reported as an empty
ZalogujResult, not as an HTTP error. The pack raises on it explicitly. - Responses are MIME-multipart with the payload as an XML-escaped string inside the SOAP result element — it needs unwrapping twice.
- Sessions are cached in worker memory for 30 minutes (upstream allows ~60).
Quick Start
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"regon-pl": {
"url": "https://gateway.pipeworx.io/regon-pl/mcp"
}
}
}
What this endpoint actually serves
tools/list at https://gateway.pipeworx.io/regon-pl/mcp returns the tools in the table
above plus the shared Pipeworx meta-tools — ask_pipeworx,
discover_tools, search_within, remember/recall and the rest of the
gateway-wide set. So the tool count you see is larger than this table: a
single-pack endpoint currently lists roughly 30 shared tools alongside the
pack's own. The connection's initialize response states its exact scope, and
is the authoritative answer for a given day.
This is deliberate, not multiplexing by accident. The meta-tools are what let a
scoped connection answer a question this pack does not cover — via
ask_pipeworx, which routes across the whole catalog — without you adding a
second MCP server. There is currently no way to mount a pack endpoint without
them; if the extra schemas cost you more context than the routing is worth,
connect to the full gateway once rather than to several pack endpoints.
Or connect to the full Pipeworx gateway to get every pack's tools listed directly, instead of just this one's:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Both URLs reach the same gateway and the same 1679+ data sources. The
only difference is which pack's tools are listed directly; ask_pipeworx
reaches all of them from either one.
No MCP client? Call it over HTTP
curl -X POST https://gateway.pipeworx.io/v1/tools/regon_search_nip \
-H 'Content-Type: application/json' \
-d '{"nip":"7740001454","environment":"test"}'
No account needed for the first calls. Inspect any tool: GET https://gateway.pipeworx.io/v1/tools/regon_search_nip. Find one: POST https://gateway.pipeworx.io/v1/tools/search_packs with {"query":"..."}.
Standalone (no gateway account)
This package also runs as a local stdio MCP server — no Pipeworx account, no gateway round-trip:
{
"mcpServers": {
"regon-pl": {
"command": "npx",
"args": ["-y", "@pipeworx/mcp-regon-pl"]
}
}
}
Or run it directly to confirm it starts:
npx -y @pipeworx/mcp-regon-pl
It speaks MCP over stdin/stdout and answers initialize/tools/list/tools/call
for only this pack's tools — none of the shared meta-tools the gateway
connection above adds. Same source, same tools, no ask_pipeworx routing.
Using with ask_pipeworx
Instead of calling tools directly, you can ask questions in plain English — this works on the pack endpoint above as well as on the full gateway:
ask_pipeworx({ question: "your question about Regon Pl data" })
The gateway picks the right tool and fills the arguments automatically.
More
License
MIT
Advanced
- Delivery
- regon-pl MCP server → your ahel connector (mcp.ahel.ai) → your AI.
- Catalog kind
- mcp-server
- Key
io-github-pipeworx-io-regon-pl- Source
- github.com/pipeworx-io/mcp-regon-pl
- Hosted endpoint
https://gateway.pipeworx.io/regon-pl/mcp