Polish Business Intelligence MCP
Server Quality Checklist
Latest release: v0.1.0
- Disambiguation4/5
lookup_company and check_vat_status both operate on NIP numbers and return VAT-related information, which could cause initial confusion, but their scope is clearly different: full company details vs. a quick yes/no status. The three exchange-rate tools are each well-differentiated.
Naming Consistency5/5All tool names follow a consistent verb_noun snake_case pattern: lookup_company, check_vat_status, get_all_rates, get_currency_rate, convert_currency. The verbs are all actions and the nouns clearly indicate the target, making the naming predictable and readable.
Tool Count5/5With 5 tools across two related but distinct subdomains (VAT whitelist and exchange rates), the set is well-scoped. Each tool serves a clear purpose, and the count is neither bloated nor too sparse for the apparent functionality.
Completeness5/5The VAT domain is covered with a full lookup and a fast status check; the exchange-rate domain is covered with all rates, a single rate, and conversion. Historical date support is included, and there are no obvious missing operations for the stated business intelligence purpose.
Average 4.3/5 across 5 of 5 tools scored.
See the Tool Scores section below for per-tool breakdowns.
- No community issues in the last 6 months
- 14 commits in the last 12 weeks
- No stable releases found
- No critical vulnerability alerts
- No high-severity vulnerability alerts
- No code scanning findings
- CI is passing
This repository is licensed under MIT License.
This repository includes a README.md file.
No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.
Tip: use the "Try in Browser" feature on the server page to seed initial usage.
Add a glama.json file to provide metadata about your server.
If you are the author, simply .
If the server belongs to an organization, first add
glama.jsonto the root of your repository:{ "$schema": "https://glama.ai/mcp/schemas/server.json", "maintainers": [ "your-github-username" ] }Then . Browse examples.
Add related servers to improve discoverability.
How to sync the server with GitHub?
Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.
To manually sync the server, click the "Sync Server" button in the MCP server admin interface.
How is the quality score calculated?
The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).
Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.
Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).
Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.
Tool Scores
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden of behavioral disclosure. It does disclose input normalization ('Spaces and dashes are fine — they are stripped') and the list of returned fields, which is useful. However, it omits potential error conditions (e.g., NIP not found on the whitelist), rate limits, or any explicit statement that this is a read-only operation, leaving gaps in transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise: two short sentences explaining the main purpose and one argument explanation. It is front-loaded with the core action and contains no redundant or filler words, making it efficient and easy to parse.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (single parameter, read-only lookup) and the presence of an output schema, the description covers the essentials well—purpose, result fields, and input format. The only notable gap is the lack of explicit guidance on when to use this tool over sibling check_vat_status, but this is a minor omission for such a straightforward operation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters5/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema only provides the parameter name and type, while the description adds critical semantics: it specifies that the NIP must be a 10-digit Polish NIP and that spaces/dashes are stripped. This fully compensates for the absent schema description, providing an agent with all necessary input details.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states a specific action ('Look up a Polish company by NIP'), identifies the authoritative source ('Ministry of Finance VAT whitelist'), and enumerates the returned data (company name, VAT status, address, registration date, bank accounts). This differentiates it from sibling tools like check_vat_status by implying a full profile rather than a single status check.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides contextual information about the target (Polish company, NIP) but does not explicitly explain when to use this tool versus the sibling check_vat_status or other alternatives. Usage is implied rather than stated, so some ambiguity remains for an agent deciding between tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the burden. It discloses the return format (yes/no/exempt answer plus company name) and describes the check as 'definitive', but it doesn't mention error handling for invalid NIPs, whether any side effects occur, or data source reliability. The description provides some transparency but leaves gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and front-loaded, immediately answering 'what does this do?'. The return behavior, use case, and argument format are each explained in a short, purposeful way without any wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness5/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite the tool's simplicity, the description covers purpose, return values, a concrete use case, and parameter format. An output schema exists, and the description already clarifies the return structure, making it complete for agent decision-making.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, so the description fully compensates for the single parameter 'nip' by specifying the format ('10-digit Polish NIP') and allowed formatting ('Spaces and dashes are fine'). This adds practical value beyond the schema's bare string type.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function with a specific verb ('check') and resource ('NIP registered as an active VAT payer in Poland'). It distinguishes itself from siblings like lookup_company and get_all_rates by focusing specifically on VAT status verification.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides clear context for when to use the tool ('useful for fast agent decisions such as 'can I trust this invoice?''). While it doesn't explicitly name alternatives or exclusions, the use case is specific enough to guide selection among the sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses a key behavioral nuance: NBP publishes rates only on banking days, so weekend dates return the most recent available table and the effective date is shown. This goes beyond the schema and helps the agent interpret results.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two concise sentences plus a compact Args block. It front-loads the core purpose and only adds necessary detail about the parameter. No redundant or filler content.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (one optional parameter, output schema available), the description is highly complete. It covers purpose, parameter semantics, and a real-world edge case. It does not list every currency or error handling, but that exceeds what's needed for selection and invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters5/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has only a 'date' parameter with zero description coverage, so the description must compensate fully. It does: explains the ISO format, marks it optional, and describes what happens with weekend dates. This gives the agent everything needed to invoke the tool correctly.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: 'Get all current PLN exchange rates from the National Bank of Poland' with specific scope (Table A, list of currencies). It differentiates from siblings like get_currency_rate, which likely returns a single rate, by emphasizing 'all' rates.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides useful context (optional historical date, weekend behavior) but does not explicitly mention when to use this tool versus alternatives like get_currency_rate or convert_currency. The usage guidance is implied by the 'all' phrasing, not stated directly.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description bears full responsibility for disclosing behavior. It transparently states the use of NBP mid-market rates, the PLN pivot for foreign-to-foreign conversions, and the optional historical date. It does not mention potential edge cases like rate unavailability for certain currencies or errors, but it covers the core operational details beyond what a schema would show.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with a clear single-sentence purpose, followed by a concise Args list. Every sentence adds necessary information, with no filler or repetition. The structure is easy to scan and immediately usable by an agent.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers the core functionality, parameter meanings, and the pivot mechanism. It has an output schema (though not shown), so return values are presumably handled there. Missing are notes on error handling or unsupported currency codes, but given the tool's moderate complexity, the description is sufficiently complete for an agent to invoke it correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters5/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate, and it does. Each parameter (amount, from_currency, to_currency, date) is explained with examples for currencies and an explicit format for date. This adds all the semantic meaning missing from the schema, which only has titles.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly specifies the tool's function: converting an amount between PLN and another currency or between two foreign currencies using NBP mid-market rates. It distinguishes this from sibling tools like get_currency_rate by emphasizing conversion of an amount rather than just rate lookup.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description conveys when to use this tool (for conversions) and explains the PLN pivot mechanism, which is essential for understanding how conversions work. It does not explicitly name alternatives or exclusions, but the sibling tool names (get_currency_rate, get_all_rates) imply those are for rate-only tasks, providing implicit differentiation.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the transparency burden. It discloses a meaningful behavioral detail: 'Tries Table A first and falls back to Table B for exotic currencies.' This explains why different currencies may be resolved via different NBP tables. It does not cover failure modes or error handling, but the disclosed fallback logic adds important context beyond the schema.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with the primary function in the first sentence, followed by a compact and clear Args block. There is no fluff, and every sentence adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple (2 parameters, 1 required), and the description covers the data source (NBP), the currency pair (vs PLN), the fallback behavior, and parameter formats. Since an output schema exists, return value details are not needed. Minor gaps like error cases are not covered, but the core usage is fully specified.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters5/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has no descriptions for its parameters (0% coverage). The description compensates fully by defining currency_code as an ISO 4217 code with examples ('EUR', 'USD', 'GBP') and date as an optional ISO date (YYYY-MM-DD) for historical rates, providing formats and semantics beyond the raw field names.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: 'Get the official NBP mid-market exchange rate for a single currency against PLN.' It uses a specific verb and resource, and the phrase 'single currency' differentiates it from the sibling tool 'get_all_rates'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description indicates the tool is specifically for retrieving a single exchange rate against PLN and optionally for historical dates. It provides clear context but does not explicitly rule out alternatives like 'convert_currency' or state when not to use it, though the single-currency framing implicitly guides selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
GitHub Badge
Glama performs regular codebase and documentation scans to:
- Confirm that the MCP server is working as expected.
- Confirm that there are no obvious security issues.
- Evaluate tool definition quality.
Our badge communicates server capabilities, safety, and installation instructions.
Card Badge
Copy to your README.md:
Score Badge
Copy to your README.md:
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/neflingcreations/PBI-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server