vatnode-mcp 0.3.1 → 0.3.2
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 +5 -2
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -137,8 +137,11 @@ npm test
|
|
|
137
137
|
Releases are published to npm via [Trusted Publishing](https://docs.npmjs.com/trusted-publishers) — no NPM_TOKEN secret, every release signed with [npm provenance](https://docs.npmjs.com/generating-provenance-statements).
|
|
138
138
|
|
|
139
139
|
```bash
|
|
140
|
-
# bump version in package.json
|
|
141
|
-
|
|
140
|
+
# bump the version in ALL of: package.json, src/index.ts (VERSION),
|
|
141
|
+
# and server.json (top-level "version" + packages[0].version — the MCP
|
|
142
|
+
# Registry publish reads server.json and rejects a duplicate version).
|
|
143
|
+
# Commit, then:
|
|
144
|
+
git tag v0.3.2
|
|
142
145
|
git push --tags
|
|
143
146
|
```
|
|
144
147
|
|
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.2";
|
|
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)`;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vatnode-mcp",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
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": [
|