Connects to Poland's National Court Register (KRS) public API to look up businesses, foundations, and other legal entities registered in the country. Exposes two operations: get current extract for the latest status and information, or get full extract for complete historical records. Useful when you need to verify Polish company details, check registration status, or pull official business data for compliance, due diligence, or integration work. Runs via npx without installation, so you can spin it up on demand whenever you're dealing with Polish business entities and need authoritative registry data.

An MCP server for the Polish National Court Register (KRS) public API.
This server is designed to be run with npx, allowing you to use it as a tool provider for LLM clients without a global installation.
npxTo start the server, run the following command:
npx krs-poland-mcp-server
To integrate this server with an LLM client (like LM Studio or others that support MCP), you can configure it to spawn the server process. Here is an example configuration:
{
"mcpServers": {
"krs-poland-mcp-server": {
"command": "npx",
"args": [
"-y",
"krs-poland-mcp-server"
]
}
}
}
This configuration tells the client how to start the KRS tool server.
The server provides the following tools (checklist):
get-krs-current-extract): Retrieves the current status and information for a given entity from the KRS.get-krs-full-extract): Retrieves the complete historical data for a given entity from the KRS.To run the server in a development environment:
npm installnpm run buildnpm startPiotr Kolawa (@pkolawa) / (Linkedin)
This project is licensed under the MIT License - see the LICENSE file for details.