@omnizoek/mcp-server 0.1.3 → 0.1.5
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.
- package/README.md +83 -3
- package/dist/chunk-PGBDPHC7.js +21769 -0
- package/dist/http.js +1350 -0
- package/dist/index.js +94 -343
- package/package.json +6 -3
package/README.md
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
# @omnizoek/mcp-server
|
|
2
2
|
|
|
3
|
-
> **Model Context Protocol server** for OmniZoek — exposes
|
|
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,
|
|
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
|
[](https://www.npmjs.com/package/@omnizoek/mcp-server)
|
|
8
|
-
[](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,80 @@ 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?"*
|
|
135
|
+
|
|
136
|
+
---
|
|
137
|
+
|
|
138
|
+
## Remote deployment (HTTP / Glama.ai Connector)
|
|
139
|
+
|
|
140
|
+
The package ships a second entry point — `dist/http.js` — that exposes the same
|
|
141
|
+
16 tools via MCP Streamable HTTP transport. Use this to run OmniZoek MCP as a
|
|
142
|
+
remote server.
|
|
143
|
+
|
|
144
|
+
### Run locally
|
|
145
|
+
|
|
146
|
+
```bash
|
|
147
|
+
PORT=3000 OMNIZOEK_API_KEY=omni_live_... npx omnizoek-mcp-http
|
|
148
|
+
# MCP endpoint: POST http://localhost:3000/mcp
|
|
149
|
+
# Health check: GET http://localhost:3000/health
|
|
150
|
+
```
|
|
151
|
+
|
|
152
|
+
### Docker (HTTP mode)
|
|
153
|
+
|
|
154
|
+
```bash
|
|
155
|
+
docker run -p 3000:3000 \
|
|
156
|
+
-e OMNIZOEK_API_KEY=omni_live_... \
|
|
157
|
+
-e HTTP_MODE=1 \
|
|
158
|
+
omnizoek/mcp-server
|
|
159
|
+
```
|
|
160
|
+
|
|
161
|
+
### Cloud Run (Google Cloud)
|
|
162
|
+
|
|
163
|
+
```bash
|
|
164
|
+
gcloud run deploy omnizoek-mcp \
|
|
165
|
+
--image omnizoek/mcp-server \
|
|
166
|
+
--set-env-vars HTTP_MODE=1 \
|
|
167
|
+
--port 3000 \
|
|
168
|
+
--allow-unauthenticated
|
|
169
|
+
|
|
170
|
+
# Map custom domain (CNAME mcp → ghs.googlehosted.com already set in DNS)
|
|
171
|
+
gcloud run domain-mappings create \
|
|
172
|
+
--service omnizoek-mcp \
|
|
173
|
+
--domain mcp.omnizoek.nl \
|
|
174
|
+
--region europe-west4
|
|
175
|
+
```
|
|
176
|
+
|
|
177
|
+
The MCP endpoint will be available at `https://mcp.omnizoek.nl/mcp`.
|
|
178
|
+
|
|
179
|
+
### Authentication
|
|
180
|
+
|
|
181
|
+
Pass your OmniZoek API key on each request via either header:
|
|
182
|
+
|
|
183
|
+
```
|
|
184
|
+
Authorization: Bearer omni_live_YOUR_KEY
|
|
185
|
+
X-Api-Key: omni_live_YOUR_KEY
|
|
186
|
+
```
|
|
187
|
+
|
|
188
|
+
The server requires a key on every request — there is no server-side fallback key.
|
|
189
|
+
This means the deployed endpoint cannot be abused to bill a single account;
|
|
190
|
+
each caller must supply their own key.
|
|
191
|
+
|
|
192
|
+
> For private/single-tenant deployments you can set `OMNIZOEK_ALLOW_ENV_KEY=1`
|
|
193
|
+
> alongside `OMNIZOEK_API_KEY` to use the env var as a fallback.
|
|
194
|
+
|
|
195
|
+
### Glama.ai Connector submission
|
|
196
|
+
|
|
197
|
+
| Field | Value |
|
|
198
|
+
|---|---|
|
|
199
|
+
| Name | OmniZoek |
|
|
200
|
+
| Description | 16 Dutch government data APIs — address enrichment, IBAN→BIC, VAT verify, geocode, vehicle history, energy labels, exchange rates and more. |
|
|
201
|
+
| Server URL | `https://mcp.omnizoek.nl/mcp` |
|
|
202
|
+
| Private Notes | `Authorization: Bearer omni_test_YOUR_KEY` (use a **test key** — never billed) |
|
|
123
203
|
|
|
124
204
|
---
|
|
125
205
|
|