nip-checker-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@nip-checker-mcpcheck nip 9491626103"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Polish NIP Checker MCP Server
A Model Context Protocol (MCP) server for checking Polish NIP (Tax Identification Numbers) using the official Ministry of Finance VAT taxpayer database.
Features
✅ Real-time NIP verification using official Polish Ministry of Finance API
✅ Bank account verification - check if bank account belongs to specific NIP
✅ Automatic date handling - defaults to current date
✅ Input normalization - handles NIP formats with or without hyphens
✅ Comprehensive error handling and validation
✅ Ready for Claude Desktop - works seamlessly with AI assistants
Related MCP server: Polish Business Intelligence MCP
Quick Start with npx (Recommended)
Add this to your Claude Desktop configuration:
{
"mcpServers": {
"nip-checker": {
"command": "npx",
"args": ["-y", "@solverio-pl/nip-checker-mcp@latest"]
}
}
}Installation Options
Option 1: Direct npx usage (No installation needed)
npx @solverio-pl/nip-checker-mcp@latestOption 2: Global installation
npm install -g @solverio-pl/nip-checker-mcp
nip-checker-mcpOption 3: Local development
git clone https://github.com/solverio-pl/nip-checker-mcp.git
cd nip-checker-mcp
npm install
npm run build
npm startAvailable Tools
check_nip
Verify Polish NIP in the VAT taxpayer database.
Parameters:
nip(required): Polish NIP number (10 digits, hyphens optional)date(optional): Date for verification (YYYY-MM-DD format, defaults to today)
Example:
Check NIP 9491626103check_nip_bank_account
Verify if a bank account is assigned to a specific NIP.
Parameters:
nip(required): Polish NIP number (10 digits)bankAccount(required): Bank account number (26 digits)date(optional): Date for verification (YYYY-MM-DD format)
Example:
Verify if account 38109017950000000151316514 belongs to NIP 9491626103Sample Output
✅ NIP Verification Results
**NIP**: 9491626103
**Company**: JANUSZ CHALIMONIUK
**VAT Status**: Czynny (Active)
**Address**: BURSZTYNOWA 73D, 42-202 CZĘSTOCHOWA
**Registration Date**: 2022-09-01
**Bank Accounts**: 38109017950000000151316514
**REGON**: 240070517
**Virtual Accounts**: No
**Request Details**:
- Request ID: rLtV8-9471ak2
- Query Date: 02-08-2025 09:29:38Claude Desktop Configuration
Windows
Edit: %APPDATA%\Claude\claude_desktop_config.json
macOS
Edit: ~/Library/Application Support/Claude/claude_desktop_config.json
Full configuration example:
{
"mcpServers": {
"nip-checker": {
"command": "npx",
"args": ["-y", "@solverio-pl/nip-checker-mcp@latest"]
}
}
}Personal Settings Addition
Add this simple line to your Claude personal settings for automatic usage:
NIP Checker: When user asks to check/verify/lookup a Polish NIP number, use the check_nip MCP tool automatically.Usage Examples
Once configured, you can simply ask:
"check nip 9491626103""verify nip 123-456-78-90""lookup nip 9491626103 for yesterday""is account 38109017950000000151316514 assigned to nip 9491626103?"
API Source
This tool uses the official Polish Ministry of Finance API:
Base URL:
https://wl-api.mf.gov.pl/Documentation: Available at the API endpoint
Data Source: Official VAT taxpayer registry ("Biała Lista Podatników")
Requirements
Node.js 18.0.0 or higher
Internet connection for API access
License
MIT License - see LICENSE file for details.
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Support
For issues and feature requests, please use the GitHub Issues page.
Made with ❤️ by Solverio for the Polish business community.
Available Tools
2 toolscheck_nipB
Check Polish NIP (Tax Identification Number) in the Ministry of Finance VAT taxpayer database
| Name | Required | Description | Default |
|---|---|---|---|
| nip | Yes | Polish NIP number (10 digits, hyphens optional) | |
| date | No | Date for verification (YYYY-MM-DD format, optional - defaults to today) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It mentions the data source (Ministry of Finance VAT taxpayer database) but does not disclose behavior such as read-only nature, response format, error cases, or potential rate limits. The description adds minimal behavioral context beyond the name.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, concise sentence that front-loads the action and key context. Every word earns its place, with no unnecessary filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple with two well-documented parameters, and the description covers the core purpose. However, without an output schema or annotations, it does not explain what the check returns (e.g., registration status, boolean result), and it omits any reference to the optional date parameter, leaving some context gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the schema already documents both parameters. The description adds context for 'nip' as a Polish Tax Identification Number, but does not elaborate on the 'date' parameter or its default behavior, providing only marginal value beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states the tool checks a Polish NIP against the Ministry of Finance VAT taxpayer database, using a specific verb and resource. This distinguishes it from the sibling tool check_nip_bank_account, which focuses on bank account verification.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides no guidance on when to use this tool versus the sibling check_nip_bank_account, nor any scenarios for use. The description is purely functional and lacks context for selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
check_nip_bank_accountA
Verify if a bank account is assigned to a specific NIP
| Name | Required | Description | Default |
|---|---|---|---|
| nip | Yes | Polish NIP number (10 digits) | |
| date | No | Date for verification (YYYY-MM-DD format, optional) | |
| bankAccount | Yes | Bank account number (26 digits) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the full behavioral burden. The verb 'verify' strongly implies a read-only operation, but the description does not explicitly state there are no side effects, permissions required, or other relevant behavioral details. It is not misleading, but minimal.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single clear sentence with no redundant words or repetition. It earns its place by stating exactly what the tool does.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple, with all parameters documented in the schema. The description fully captures the action and implies a boolean result. It lacks explicit mention of return format or any edge cases, but given the simplicity, it is nearly complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with each parameter (nip, date, bankAccount) already documented with types, patterns, and descriptions. The description adds no additional parameter-level semantics beyond reminding that the bank account is being verified against a NIP. Baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('verify') and resource ('bank account assigned to a specific NIP'), clearly distinguishing it from the sibling tool 'check_nip' which likely just checks NIP validity. The purpose is unambiguous and actionable.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly states the tool's context (verifying bank account assignment to a NIP) but does not explicitly mention alternatives or exclusions. The sibling tool 'check_nip' provides implicit contrast, but no direct guidance is given in the description.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
2 tool updates
v1.0.4- First observed
check_nip - First observed
check_nip_bank_account
TDQS
The two tools have completely distinct purposes: one checks the NIP itself against the VAT database, the other verifies a bank account against a NIP. There is no overlap or ambiguity in their functions.
Both tool names follow the same verb_noun pattern: check_nip and check_nip_bank_account. The pattern is predictably extended with a qualifier, maintaining consistency.
With only 2 tools, the server is minimal but well-scoped for its narrow purpose (NIP validation). It falls slightly below the typical 3-15 range, but the focus on two core operations makes the count appropriate.
The server covers the two essential operations for its domain: validating a NIP and verifying a bank account association. No obvious gaps exist for the stated purpose of a NIP checker.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Verify Polish companies by NIP/KRS/REGON + EU VAT (VIES). 9 MCP tools, no key.
Validate EU, UK, AU VAT numbers for AI agents. EU ViDA e-invoicing compliance.
Polish company registry: 4.4M firms, KRS/REGON data, VAT white list checks, financial statements
Commerce validators: live EU VAT (VIES), EORI, email/MX lookups; IBAN/ABA/GTIN checksums; VAT rates.
Related MCP Servers
- AlicenseAqualityDmaintenanceEnables real-time validation of EU VAT numbers using the official VIES service. Supports all 27 EU member states with automatic country code detection and provides company information for valid VAT numbers.41MIT
- AlicenseAqualityBmaintenanceProvides AI agents with real-time access to Polish official data: VAT whitelist for company verification and NBP exchange rates, enabling checks on VAT status, company details, and currency conversion without API keys.5MIT
- AlicenseNot gradedqualityCmaintenanceMCP server for verifying Polish business entities from the National Court Register (KRS) and VAT White List. Allows querying by KRS, NIP, or REGON to retrieve official company data including name, address, board, and capital.Apache 2.0
- AlicenseAqualityCmaintenanceMCP server that provides AI agents with Polish business data tools: identifier validation (NIP, PESEL, REGON, KRS, IBAN), VAT whitelist checks, EU VIES lookups, and NBP exchange rates.521MIT
Appeared in Searches
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/solverio-pl/nip-checker-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server