-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.3 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
47
48
49
50
51
52
53
54
55
{
"name": "vatnode-mcp",
"version": "0.3.0",
"mcpName": "io.github.vatnode/vatnode-mcp",
"description": "Official Model Context Protocol (MCP) server for vatnode — EU VAT validation, rates, and format checks for AI agents (Claude, Cursor, ChatGPT).",
"keywords": [
"mcp",
"model-context-protocol",
"vat",
"vies",
"eu-vat",
"tax",
"claude",
"anthropic",
"vatnode"
],
"license": "MIT",
"author": "vatnode",
"homepage": "https://vatnode.dev/docs/mcp",
"repository": {
"type": "git",
"url": "git+https://github.com/vatnode/vatnode-mcp.git"
},
"bugs": {
"url": "https://github.com/vatnode/vatnode-mcp/issues",
"email": "support@vatnode.dev"
},
"type": "module",
"bin": {
"vatnode-mcp": "./dist/index.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsup",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit",
"test": "npm run build && node test/smoke.mjs",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"eu-vat-rates-data": "^2026.5.20",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/node": "^22.10.0",
"tsup": "^8.3.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
}
}