@chronary/mcp 1.2.0 → 1.2.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/CHANGELOG.md +4 -0
- package/dist/version.js +1 -1
- package/package.json +6 -5
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to `@chronary/mcp` will be documented in this file starting with the soft-launch release.
|
|
4
4
|
|
|
5
|
+
## 1.2.2 — 2026-06-25
|
|
6
|
+
|
|
7
|
+
- Add Official MCP Registry support: `mcpName: "ai.chronary/mcp"` in `package.json` (ownership-validated against the published npm tarball) and a `server.json` manifest declaring both the npx stdio package and the hosted `https://api.chronary.ai/mcp` Streamable HTTP endpoint. No behavioral change to the server itself.
|
|
8
|
+
|
|
5
9
|
## 0.1.3 — 2026-05-20
|
|
6
10
|
|
|
7
11
|
- First OIDC + Sigstore provenance release. Published via npm Trusted Publishing from `Chronary/chronary-mcp`'s `release-artifact.yml`. No behavioral change vs 0.1.2 — 0.1.2 was the manual bootstrap publish (classic token, no provenance) required because npm has no Pending Publisher flow.
|
package/dist/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '1.2.
|
|
1
|
+
export const VERSION = '1.2.2';
|
|
2
2
|
//# sourceMappingURL=version.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chronary/mcp",
|
|
3
|
-
"
|
|
3
|
+
"mcpName": "ai.chronary/mcp",
|
|
4
|
+
"version": "1.2.2",
|
|
4
5
|
"description": "MCP server for Chronary — calendar tools for AI assistants (Claude Desktop, Cursor, VS Code, Windsurf)",
|
|
5
6
|
"license": "Apache-2.0",
|
|
6
7
|
"type": "module",
|
|
@@ -39,15 +40,15 @@
|
|
|
39
40
|
"access": "public"
|
|
40
41
|
},
|
|
41
42
|
"dependencies": {
|
|
42
|
-
"@chronary/sdk": "^0.4.
|
|
43
|
-
"@chronary/toolkit": "^1.2.
|
|
43
|
+
"@chronary/sdk": "^0.4.1",
|
|
44
|
+
"@chronary/toolkit": "^1.2.1",
|
|
44
45
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
45
46
|
"zod": "^4.4"
|
|
46
47
|
},
|
|
47
48
|
"devDependencies": {
|
|
48
49
|
"@types/node": "^25.9.1",
|
|
49
|
-
"typescript": "^
|
|
50
|
-
"vitest": "^4.1.
|
|
50
|
+
"typescript": "^6.0.3",
|
|
51
|
+
"vitest": "^4.1.9"
|
|
51
52
|
},
|
|
52
53
|
"scripts": {
|
|
53
54
|
"build": "tsc",
|