vatnode-mcp 0.3.0 → 0.3.1
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 +2 -2
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -28,7 +28,7 @@ Lets AI assistants (Claude Desktop, Cursor, ChatGPT, Continue, Cline, …) look
|
|
|
28
28
|
|
|
29
29
|
Free tools work fully offline — data is bundled via [`eu-vat-rates-data`](https://www.npmjs.com/package/eu-vat-rates-data) and updated daily from the European Commission TEDB.
|
|
30
30
|
|
|
31
|
-
`validate_vat_number` requires a vatnode API key. The free tier includes a monthly request quota — [get one in 30 seconds](https://vatnode.dev).
|
|
31
|
+
`validate_vat_number` requires a vatnode API key. The free tier includes a monthly request quota — [get one in 30 seconds](https://vatnode.dev/login?ref=mcp-readme).
|
|
32
32
|
|
|
33
33
|
---
|
|
34
34
|
|
|
@@ -92,7 +92,7 @@ Any MCP-compatible client can connect — point it at `npx -y vatnode-mcp` and (
|
|
|
92
92
|
- VIES consultation numbers (audit-grade proof of validation)
|
|
93
93
|
- Per-key rate limiting + dashboard analytics
|
|
94
94
|
|
|
95
|
-
[**Sign up free →**](https://vatnode.dev)
|
|
95
|
+
[**Sign up free →**](https://vatnode.dev/login?ref=mcp-readme)
|
|
96
96
|
|
|
97
97
|
---
|
|
98
98
|
|
package/dist/index.js
CHANGED
|
@@ -11,7 +11,7 @@ import {
|
|
|
11
11
|
isEUMember,
|
|
12
12
|
dataVersion
|
|
13
13
|
} from "eu-vat-rates-data";
|
|
14
|
-
var VERSION = "0.3.
|
|
14
|
+
var VERSION = "0.3.1";
|
|
15
15
|
var API_BASE = process.env.VATNODE_API_URL ?? "https://api.vatnode.dev";
|
|
16
16
|
var API_KEY = process.env.VATNODE_API_KEY;
|
|
17
17
|
var USER_AGENT = `vatnode-mcp/${VERSION} (+https://vatnode.dev)`;
|
|
@@ -158,7 +158,7 @@ async function callVatnodeApi(path, init) {
|
|
|
158
158
|
ok: false,
|
|
159
159
|
error: err(
|
|
160
160
|
"This tool requires a vatnode API key.",
|
|
161
|
-
"Set the VATNODE_API_KEY environment variable in your MCP client config. Get a free key at https://vatnode.dev (free tier includes a monthly request quota)."
|
|
161
|
+
"Set the VATNODE_API_KEY environment variable in your MCP client config. Get a free key at https://vatnode.dev/login?ref=mcp-tool (free tier includes a monthly request quota)."
|
|
162
162
|
)
|
|
163
163
|
};
|
|
164
164
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vatnode-mcp",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"mcpName": "io.github.vatnode/vatnode-mcp",
|
|
5
5
|
"description": "Official Model Context Protocol (MCP) server for vatnode — EU VAT validation, rates, and format checks for AI agents (Claude, Cursor, ChatGPT).",
|
|
6
6
|
"keywords": [
|