AI tools / MCP server for address validation via the Postcode.eu API
Project description
Postcode.eu AI Tools
AI tools / MCP server for address validation via the Postcode.eu API. This package provides an MCP (Model Context Protocol) server using FastMCP, exposing tools for Dutch address lookup and international address validation. Can also be used as a library to integrate these tools as you see fit.
Usage
As a library
Install the package and its dependencies using uv to use it in your own projects:
uv add postcode-eu-ai-tools
As an application
To run the MCP server directly, use the uv tool interface:
uvx postcode-eu-ai-tools
This starts the server on STDIO transport.
Connect MCP clients
Use the address validation tools in any client that supports local MCP servers. Just add the uvx postcode-eu-ai-tools command to your configuration.
Example configuration for Claude Code:
{
"mcpServers": {
"postcode-eu-address-validation": {
"command": "uvx",
"args": ["postcode-eu-ai-tools"],
"env": {
"POSTCODE_EU_API_KEY": "your_api_key",
"POSTCODE_EU_API_SECRET": "your_api_secret"
}
}
}
}
Configuration
Provide your Postcode.eu API credentials via one of these methods:
-
Environment Variables (recommended):
export POSTCODE_EU_API_KEY="your_api_key" export POSTCODE_EU_API_SECRET="your_api_secret" -
Using a configuration file:
uvx postcode-eu-ai-tools --save-credentials # You will then be asked for your API key and secret.
Register an account at account.postcode.eu to get your credentials. You can test our service for free.
Tools
The MCP server exposes these tools:
lookup_dutch_address
Look up a Dutch address by postcode (e.g., "1234AB") and house number (e.g., "69" or "123A"). Returns the full address, and provides house number suggestions if the addition is invalid. Otherwise returns an error message describing why the address is invalid.
See https://developer.postcode.eu/documentation/nl/v1/Address/viewByPostcode
Examples:
User:
What is the address for postcode 2012es with house number 30?
Assistant:
Julianastraat 30
2012ES Haarlem
Noord-Holland, Netherlands
User:
What is the address for 2161AM with house number 166b?
Assistant:
Stationsweg 166, 2161AM Lisse, Zuid-Holland, Netherlands (house number addition "b" incorrect).
Valid additions: "" (166) or "A" (166 A). Which one?
User:
Is the address 1000AA 1 a PO box?
Assistant:
Yes, Postbus 1, 1000AA Amsterdam, Noord-Holland, Netherlands (addressType: "PO box").
validate_address
Validate and complete an international address. Returns the first match if valid (meaning it's a full address that closely corresponds to the input). Otherwise returns an error message describing why the address is invalid. Partial addresses are considered invalid.
See https://developer.postcode.eu/documentation/international/v1/Validate/validate
Examples:
User:
Can you validate the address "leystraat 11 2000 antwerpen"?
Assistant:
Leysstraat 11
2000 Antwerpen
Belgium
Validated (grade B, building level).
User:
How about "Kirsten Flagstads plass 1" in Oslo?
Assistant:
Kirsten Flagstads plass 1
0150 Oslo
Norway
Validated (grade A, building level).
get_supported_countries
List countries that are supported for address validation.
See https://developer.postcode.eu/documentation/international/v1/Autocomplete/getSupportedCountries
Example:
User:
For which countries can you validate addresses?
Assistant:
Netherlands, Belgium, Germany, Luxembourg, Austria, Switzerland, France, United Kingdom, Spain, Denmark, Norway, Finland, Sweden.
is_supported_country
Check if a country is supported for address validation.
See https://developer.postcode.eu/documentation/international/v1/Autocomplete/getSupportedCountries
Example:
User:
Could you validate an address from Kazakhstan?
Assistant:
No, Kazakhstan (KAZ) is not supported.
Requirements
- Python 3.11+
- A Postcode.eu account. Register your account at account.postcode.eu. You can test our service for free.
License
The code is available under the Simplified BSD License; see the included LICENSE file.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file postcode_eu_ai_tools-1.0.0.tar.gz.
File metadata
- Download URL: postcode_eu_ai_tools-1.0.0.tar.gz
- Upload date:
- Size: 6.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b3ce64200f9bcfbbebe9c1ad4b4bedb35b0b7b139524ae1df0fa14f9fc652bb6
|
|
| MD5 |
b0e43e72f233caec6df102377f43f635
|
|
| BLAKE2b-256 |
c14008d30291057a85efb77d47b28805e6f9c9b535490755369f60877ba045f2
|
File details
Details for the file postcode_eu_ai_tools-1.0.0-py3-none-any.whl.
File metadata
- Download URL: postcode_eu_ai_tools-1.0.0-py3-none-any.whl
- Upload date:
- Size: 8.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cb92d0c04968dd4dd3df2b5bf521075fa01660dfdf37d3ed93b9bd9a1ed7c26c
|
|
| MD5 |
49ab878fcf19bb9aeda0f3902ec3e939
|
|
| BLAKE2b-256 |
7ef98664b9785683af5faa07e7601f5ae85845602dc58b980ba7ca52f0ec7517
|