mcp-ksef-pl
This server enables AI agents to work with Polish electronic invoicing (KSeF) and cross-border Peppol invoices, and to validate Polish tax identifiers.
Generate FA(2) invoices (
generate_fa2_invoice): Create KSeF-compliant FA(2) XML invoices from structured data (seller/buyer info, line items, VAT summary, payment details)Generate FA(3) invoices (
generate_fa3_invoice): Create KSeF-compliant FA(3) XML invoices required for KSeF API v2 submissions, supporting Polish NIP, EU VAT numbers, and absent buyer IDsValidate FA(2) invoices (
validate_fa2_invoice): Run XSD schema validation and Polish business rule checks, returning errors and warningsParse FA(2) invoices (
parse_fa2_invoice): Parse FA(2) XML into a structured dictionary (header, seller, buyer, line items)Submit invoices to KSeF (
submit_invoice_to_ksef): Send FA(3) XML to the KSeF platform (API v2) and receive a reference number (requires an external session token)Check KSeF invoice status (
get_ksef_invoice_status): Retrieve the processing status of a submitted invoice by reference numberSearch KSeF invoices (
search_ksef_invoices): Query invoices in KSeF by date range and subject type (seller/buyer direction)Validate Polish NIP (
validate_polish_nip): Verify a 10-digit Polish tax identification number using the official checksum algorithmValidate Polish REGON (
validate_polish_regon): Verify a 9- or 14-digit Polish business registry number using the official checksum algorithmGenerate Peppol invoices (
generate_peppol_invoice): Create Peppol BIS Billing 3.0 / EN 16931 compliant UBL 2.1 XML invoices for cross-border B2B invoicing
mcp-ksef-pl ๐ต๐ฑ
A Python MCP server providing tools for Polish electronic invoicing compliant with KSeF (FA(2)) and Peppol BIS Billing 3.0 / EN 16931. It enables AI agents (Claude, IDEs) to generate, validate, and submit invoices to the Krajowy System e-Faktur (KSeF), as well as validate Polish tax identifiers (NIP and REGON).
Built on
This package is built on mcp-einvoicing-core, the shared base library for European e-invoicing MCP servers. It provides an OAuth2 HTTP client, token cache, data models, logging utilities, and an exception hierarchy.
mcp-einvoicing-core is installed automatically as a dependency, no additional step is required.
Related MCP server: mcp-fattura-elettronica-it
๐๏ธ Architecture
The server acts as an intelligent communication interface between the AI agent and the KSeF platform and the Peppol network:
[ ERP System / Application ] <--> [ MCP Server ] <--> [ KSeF (MF) / Peppol Network ]
^ |
| v
[ AI Agent (Claude) ] <--- (FA(2) / EN 16931)๐ ๏ธ Available tools
FA(3) / FA(2) invoice handling
Tool | Description |
| Generates a KSeF-compliant FA(3) XML invoice (required for KSeF API v2 submissions) |
| Generates a KSeF-compliant FA(2) XML invoice (legacy format, read-only use) |
| Validates FA(3) XML: XSD validation and FA(3)-specific business rules |
| Validates FA(2) XML: XSD validation (if the schema is available) and business rules |
| Parses FA(2) XML into a structured dictionary |
KSeF lifecycle
Tool | Description |
| Submits an FA(3) invoice to the KSeF platform and returns a reference number |
| Retrieves the processing status of an invoice by its reference number |
| Searches invoices in KSeF by date range and direction (seller/buyer) |
Identifier validation
Tool | Description |
| Validates a NIP (10-digit tax identification number) using a checksum algorithm |
| Validates a REGON (9- or 14-digit registry number) using a checksum algorithm |
Peppol / EN 16931
Tool | Description |
| Generates a UBL 2.1 invoice compliant with Peppol BIS Billing 3.0 / EN 16931 |
| Validates a UBL 2.1 Peppol invoice against the CEN EN 16931 base Schematron rules ( |
Peppol network tools
Peppol participant lookup, service-endpoint lookup, a DNS-only diagnostic, AS4 send, and the OpenPeppol eDEC codelist tools are provided by the shared core Peppol tool plugin (mcp_einvoicing_core.peppol.tools.register_peppol_tools), mounted in server.py with a Poland-specific identifier adapter: a bare NIP (e.g. 1234563218) is normalized to the 9945:<digits> Peppol scheme (PL:VAT, per the OpenPeppol eDEC Participant Identifier Schemes code list); an already scheme-qualified identifier (e.g. 9945:1234563218) passes through unchanged. Use these tools to check PEF (Poland's Peppol Access Point for public-procurement B2G invoicing) registration status ahead of generate_peppol_invoice.
Tool | Description |
| Check whether a business is registered on the Peppol network; returns registration status and supported document types |
| Fetch the AS4 endpoint for a participant's document type |
| DNS-only (SML) diagnostic, independent of SMP reachability |
| Transmit a UBL/CII invoice via AS4 |
| OpenPeppol eDEC codelist lookups (require |
| OpenPeppol eDEC codelist checks and version reporting |
See the mcp-einvoicing-core README for full parameter documentation on these tools.
๐ Installation
Via PyPI (recommended)
pip install mcp-ksef-plOr without prior installation using uvx:
uvx mcp-ksef-plFrom source
git clone https://github.com/cmendezs/mcp-ksef-pl.git
cd mcp-ksef-pl
uv sync --all-extrasโ๏ธ Configuration (environment variables)
Variable | Default | Description |
|
| KSeF environment: |
| โ | KSeF session token (obtained through the challenge-response flow with MF) |
| โ | NIP of the entity submitting invoices |
|
| HTTP request timeout in seconds |
|
| Enforce SPKI SHA-256 pinning on the MF encryption certificate. No-op until fingerprints are populated for the active environment, even when set to |
| โ | Local directory containing your own copy of the OpenPeppol eDEC Code Lists, required by the Peppol codelist tools (not bundled with this package; see |
๐ KSeF authentication
KSeF API v2 uses a multi-step challenge/redeem flow to issue an AccessToken. This MCP server accepts an already-obtained token and cannot automate the signing step (it requires a qualified electronic signature).
Step-by-step flow
Account setup. Register at the KSeF portal: https://ksef.mf.gov.pl/. Select the target environment (test or production). The test environment is at
https://ksef-test.mf.gov.pl/.Request a challenge. Call the KSeF API to obtain a challenge XML envelope:
curl -s https://ksef-test.mf.gov.pl/auth/challenge \ -H "Accept: application/json" \ -d '{"contextIdentifier": {"type": "onip", "identifier": "YOUR_NIP"}}' \ -H "Content-Type: application/json"The response contains a
challengestring and atimestamp.Sign the challenge. Build an
<InitSessionTokenRequest>XML envelope containing the challenge, then sign it with your qualified e-signature. Accepted signing tools:Qualified e-signature providers: KIR (Szafir), Certum, Sigillum
podpis.gov.pl(government signing portal)Profil Zaufany (Trusted Profile): https://www.podatki.gov.pl/ksef/
Example using
xmlsec1with a PKCS#12 certificate:# Build the challenge XML (template at specs/przyklad-wyzwania.xml) xmlsec1 --sign --pkcs12 your-cert.p12 --pwd "password" \ --output signed-challenge.xml challenge-template.xmlSubmit the signed challenge. POST the signed XML to receive an
authOperationreference:curl -s https://ksef-test.mf.gov.pl/auth/xades-signature \ -H "Content-Type: application/octet-stream" \ --data-binary @signed-challenge.xmlRedeem the AccessToken. Exchange the authenticated operation for an AccessToken:
curl -s https://ksef-test.mf.gov.pl/auth/token/redeem \ -H "Content-Type: application/json" \ -H "Authorization: Bearer <referenceNumber-or-authOperation-token-from-step-4>"The response contains
accessToken.tokenandaccessToken.context.referenceNumber.Set the token. Export the token for this MCP server:
export KSEF_SESSION_TOKEN="<the AccessToken from step 5>"The token is valid for approximately 2 hours from issuance (per MF documentation). After expiry, repeat steps 2-5.
References
KSeF technical documentation: https://www.podatki.gov.pl/ksef/dokumentacja-techniczna-ksef/
Authentication spec (CIRFMF): https://github.com/CIRFMF/ksef-docs/blob/main/uwierzytelnianie.md
Interactive session spec (CIRFMF): https://github.com/CIRFMF/ksef-docs/blob/main/sesja-interaktywna.md
FA(3) migration announcement:
specs/ksef-v2-fa3-migration-announcement-20250630.pdf
๐ค Claude Desktop integration
Add the following configuration to your claude_desktop_config.json file:
{
"mcpServers": {
"ksef-pl": {
"command": "uvx",
"args": ["mcp-ksef-pl"],
"env": {
"KSEF_ENVIRONMENT": "test",
"KSEF_SESSION_TOKEN": "<your-ksef-session-token>",
"KSEF_NIP": "<your-nip>"
}
}
}
}โจ๏ธ Cursor integration
Cursor supports MCP servers via stdio. Add the configuration to:
Globally (all projects):
~/.cursor/mcp.jsonPer project (this repository only):
.cursor/mcp.json
{
"mcpServers": {
"ksef-pl": {
"command": "uvx",
"args": ["mcp-ksef-pl"],
"env": {
"KSEF_ENVIRONMENT": "test",
"KSEF_SESSION_TOKEN": "<your-ksef-session-token>",
"KSEF_NIP": "<your-nip>"
}
}
}
}Reload the Cursor window (Ctrl+Shift+P โ Reload Window) after saving changes.
๐ช Kiro integration
Kiro supports MCP servers through a dedicated configuration file:
Globally:
~/.kiro/settings/mcp.jsonWorkspace:
.kiro/settings/mcp.json
{
"mcpServers": {
"ksef-pl": {
"command": "uvx",
"args": ["mcp-ksef-pl"],
"env": {
"KSEF_ENVIRONMENT": "test",
"KSEF_SESSION_TOKEN": "<your-ksef-session-token>",
"KSEF_NIP": "<your-nip>"
},
"disabled": false,
"autoApprove": []
}
}
}Security tip: instead of entering the token directly, use the syntax
"KSEF_SESSION_TOKEN": "${KSEF_SESSION_TOKEN}", as Kiro resolves shell environment variables at startup.
๐ XSD schema
The official FA(2) and FA(3) XSD schemas ship inside the package (src/mcp_ksef_pl/schemas/)
and are loaded automatically via importlib.resources โ no manual download or configuration
is required. validate_fa2_invoice and validate_fa3_invoice run full XSD validation out
of the box for every installation.
๐งช Tests
# Run unit tests
uv run pytest tests/ -vOther e-invoicing MCP servers
Country | Server |
๐ Global | |
๐ง๐ช Belgium | |
๐ง๐ท Brazil | |
๐ซ๐ท France | |
๐ฉ๐ช Germany | |
๐ฎ๐น Italy | |
๐ต๐ฑ Poland | |
๐ช๐ธ Spain |
๐ License
This project is distributed under the Apache 2.0 license. See the LICENSE file for details.
Project maintained by cmendezs. For questions about the KSeF or Peppol implementation, open an Issue.
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 Servers
- AlicenseAqualityBmaintenanceModel Context Protocol (MCP) server for French Electronic Invoicing (NF XP Z12-013). Provide tools to validate, generate, and explore API specifications for PDP/OD interoperability.34Apache 2.0
- AlicenseAqualityAmaintenanceModel Context Protocol (MCP) server for Italian Electronic Invoicing (FatturaPA / SDI). Provide tools to validate, generate, and explore API specifications for Sistema di Interscambio (SDI) interoperability.431Apache 2.0
- AlicenseAqualityAmaintenanceModel Context Protocol (MCP) server for Belgian Electronic Invoicing (Peppol BIS 3.0 / PINT-BE / Mercurius). Provides tools to validate, generate, and transform UBL 2.1 e-invoices, and look up BCE/KBO enterprise data and Peppol participants.50Apache 2.0
- AlicenseAqualityAmaintenanceModel Context Protocol (MCP) server for German Electronic Invoicing (ZUGFeRD 2.x / XRechnung 3.x). Provides tools to validate, generate, parse, and convert invoices compliant with EN 16931 and KoSIT.81Apache 2.0
Related MCP Connectors
MCP Spec Compliance MCP โ audits any MCP server.json against the official Model Context Protocol
MCP server for the PDFGate API. Generate PDFs, manage documents and handle e-signatures.
MCP server for AI access to Swagger by SmartBear.
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/cmendezs/mcp-ksef-pl'
If you have feedback or need assistance with the MCP directory API, please join our Discord server