-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
46 lines (46 loc) · 1.45 KB
/
Copy pathserver.json
File metadata and controls
46 lines (46 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.vatnode/vatnode-mcp",
"description": "Official MCP server: EU VAT validation via VIES, plus offline rates and format checks.",
"version": "0.3.0",
"repository": {
"url": "https://github.com/vatnode/vatnode-mcp",
"source": "github"
},
"websiteUrl": "https://vatnode.dev/docs/mcp",
"icons": [
{
"src": "https://vatnode.dev/icon.png",
"mimeType": "image/png",
"sizes": [
"512x512"
]
}
],
"packages": [
{
"registryType": "npm",
"registryBaseUrl": "https://registry.npmjs.org",
"identifier": "vatnode-mcp",
"version": "0.3.0",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "VATNODE_API_KEY",
"description": "vatnode API key (free tier available at https://vatnode.dev). Required only for the validate_vat_number tool — the four other tools (rates, format checks, country list) work offline without a key.",
"isRequired": false,
"isSecret": true
},
{
"name": "VATNODE_API_URL",
"description": "Override the vatnode API base URL (for self-hosting or staging environments). Defaults to https://api.vatnode.dev.",
"isRequired": false,
"isSecret": false,
"default": "https://api.vatnode.dev"
}
]
}
]
}