Overview
MCP Dutch Postal Codes is a server application designed to retrieve Dutch address information using postal codes or WGS84 coordinates.
To use the MCP server, install it using Go, and run the server to start querying postal codes. You can run it manually or through a configured MCP host.
- Retrieves address information based on postal codes and coordinates. - Supports multiple transport methods including HTTP and SSE. - Easy installation and configuration for common MCP hosts.
- Querying address details for logistics and delivery services.
- Integrating postal code data into applications for location-based services.
- Supporting geographic information systems (GIS) with postal code data.
Add to your AI client
Use these steps to connect mcp-dutch-postal-codes in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-dutch-postal-codes-dstotijn": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-dutch-postal-codes-dstotijn"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-dutch-postal-codes-dstotijn": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-dutch-postal-codes-dstotijn"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-dutch-postal-codes-dstotijn": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-dutch-postal-codes-dstotijn"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-dutch-postal-codes-dstotijn": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-dutch-postal-codes-dstotijn"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-dutch-postal-codes-dstotijn": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-dutch-postal-codes-dstotijn"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-dutch-postal-codes-dstotijn": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-dutch-postal-codes-dstotijn"
]
}
}
}FAQ
What programming language is used for mcp-dutch-postal-codes?
The project is developed in Go.
Is there a license for using this project?
Yes, it is licensed under the Apache-2.0 license.
How can I run the server?
You can run the server using the command `mcp-dutch-postal-codes --sse` after installation.