@omnizoek/mcp-server 0.1.3 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +15 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,11 +1,11 @@
1
1
  # @omnizoek/mcp-server
2
2
 
3
- > **Model Context Protocol server** for OmniZoek — exposes 10 Dutch government data APIs as AI agent tools.
3
+ > **Model Context Protocol server** for OmniZoek — exposes 16 Dutch government data APIs as AI agent tools.
4
4
 
5
- Add this server to Claude Desktop, Cursor, or any MCP-compatible AI client and your agent can instantly look up Dutch addresses, validate IBANs, check vehicle ZE-zone compliance, look up energy labels, and more — all backed by live BAG, EP-Online, RDW, VIES, NS, and ENTSO-E data.
5
+ Add this server to Claude Desktop, Cursor, or any MCP-compatible AI client and your agent can instantly look up Dutch addresses, validate IBANs, geocode locations, look up exchange rates, check company LEI records, check vehicle history, check ZE-zone compliance, look up energy labels, and more — all backed by live BAG, EP-Online, RDW, VIES, NS, ENTSO-E, PDOK, ECB, and GLEIF data.
6
6
 
7
7
  [![npm version](https://img.shields.io/npm/v/@omnizoek/mcp-server)](https://www.npmjs.com/package/@omnizoek/mcp-server)
8
- [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
8
+ [![License: Proprietary](https://img.shields.io/badge/License-Proprietary-red.svg)](LICENSE)
9
9
 
10
10
  ---
11
11
 
@@ -23,6 +23,12 @@ Add this server to Claude Desktop, Cursor, or any MCP-compatible AI client and y
23
23
  | `omnizoek_grid_trigger` | Get current ENTSO-E electricity price and whether the negative-price trigger is active |
24
24
  | `omnizoek_minimum_wage` | Look up the Dutch statutory minimum wage for a given age |
25
25
  | `omnizoek_holiday_surcharge` | Check if a date is a Dutch public holiday and get the wage surcharge multiplier |
26
+ | `omnizoek_exchange_rates` | Get the latest ECB daily euro foreign exchange reference rates |
27
+ | `omnizoek_vat_rates` | Get VAT rates for an EU country (full category breakdown for NL) |
28
+ | `omnizoek_geocode` | Forward geocode a free-text query to Dutch coordinates (PDOK Locatieserver) |
29
+ | `omnizoek_reverse_geocode` | Reverse geocode WGS84 coordinates to a Dutch address |
30
+ | `omnizoek_lei_lookup` | Look up a legal entity by LEI code or search by company name (GLEIF) |
31
+ | `omnizoek_vehicle_history` | Full vehicle history from RDW: specs, fuel, APK expiry, open recalls |
26
32
 
27
33
  ---
28
34
 
@@ -120,6 +126,12 @@ Once configured, you can ask your AI agent:
120
126
  - *"What is the minimum wage for a 19-year-old in the Netherlands today?"*
121
127
  - *"Is 25 December 2025 a public holiday, and what is the retail surcharge multiplier?"*
122
128
  - *"What is the current electricity price in the Netherlands, and is the negative-price trigger active?"*
129
+ - *"What are today's euro exchange rates from the ECB?"*
130
+ - *"What are the VAT rates in the Netherlands, broken down by category?"*
131
+ - *"Geocode the address Damrak 1 Amsterdam to coordinates."*
132
+ - *"What address is nearest to coordinates 52.3756, 4.8951?"*
133
+ - *"Look up the LEI record for ING Bank N.V. in the Netherlands."*
134
+ - *"What is the APK expiry date and are there any open recalls for kenteken AB123C?"*
123
135
 
124
136
  ---
125
137
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@omnizoek/mcp-server",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "MCP server that exposes OmniZoek Dutch government data APIs as AI agent tools (Claude Desktop, Cursor, and any MCP-compatible client).",
5
5
  "author": "OmniZoek <support@omnizoek.nl>",
6
6
  "license": "UNLICENSED",