kairo-mcp 1.3.0 → 1.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/CHANGELOG.md CHANGED
@@ -6,6 +6,34 @@ All notable changes to Kairo are documented here. The format is based on
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [1.3.1] - 2026-05-21
10
+
11
+ Docs-only patch. v1.3.0 published `kairo-mcp` to npm; v1.3.1 reflects
12
+ that in the README badge row so visitors see the published version
13
+ and download count at a glance.
14
+
15
+ ### Added
16
+
17
+ - **README badge row** gains two real, dynamic shields:
18
+ - `[![npm](.../npm/v/kairo-mcp)](npmjs.com/package/kairo-mcp)` —
19
+ latest published version, pulled live from the npm registry.
20
+ - `[![npm downloads](.../npm/dm/kairo-mcp)]` — monthly download
21
+ count.
22
+ Both are dynamic; both will tick upward (or sideways) on their own
23
+ as downstream users `npm install` the package.
24
+
25
+ ### Notes
26
+
27
+ - **No code changes. No schema changes. No MCP contract changes. No
28
+ CLI behaviour changes. No stability registry changes.** Pure docs.
29
+ - Tag `v1.3.1` is shipped to GitHub for completeness, but **a re-
30
+ publish to npm is NOT required** — npm's badge endpoint serves the
31
+ latest version regardless of repo tags, and the published tarball
32
+ for `kairo-mcp@1.3.0` is unchanged.
33
+ - A separate `npm publish` for `1.3.1` is optional. If desired, run
34
+ `npm publish` per PUBLISHING.md — but the README badges work
35
+ whether or not you do.
36
+
9
37
  ## [1.3.0] - 2026-05-21
10
38
 
11
39
  **npm distribution.** Kairo becomes installable like a real developer
@@ -1091,7 +1119,8 @@ nestjs/nest). See [DOGFOOD_REPORT.md](DOGFOOD_REPORT.md).
1091
1119
  `kairo_continuity` cooperation prompt.
1092
1120
  - Project documentation, ADRs, CI (lint/typecheck/test/build) and release workflows.
1093
1121
 
1094
- [Unreleased]: https://github.com/sandy001-kki/Kairo/compare/v1.3.0...HEAD
1122
+ [Unreleased]: https://github.com/sandy001-kki/Kairo/compare/v1.3.1...HEAD
1123
+ [1.3.1]: https://github.com/sandy001-kki/Kairo/compare/v1.3.0...v1.3.1
1095
1124
  [1.3.0]: https://github.com/sandy001-kki/Kairo/compare/v1.2.0...v1.3.0
1096
1125
  [1.2.0]: https://github.com/sandy001-kki/Kairo/compare/v1.1.3...v1.2.0
1097
1126
  [1.1.3]: https://github.com/sandy001-kki/Kairo/compare/v1.1.2...v1.1.3
package/README.md CHANGED
@@ -4,6 +4,8 @@
4
4
  > Local-first. Deterministic. Replay-safe.
5
5
 
6
6
  [![ci](https://github.com/sandy001-kki/Kairo/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/sandy001-kki/Kairo/actions/workflows/ci.yml)
7
+ [![npm](https://img.shields.io/npm/v/kairo-mcp.svg?color=cb3837&logo=npm&logoColor=white)](https://www.npmjs.com/package/kairo-mcp)
8
+ [![npm downloads](https://img.shields.io/npm/dm/kairo-mcp.svg?color=cb3837)](https://www.npmjs.com/package/kairo-mcp)
7
9
  [![Latest release](https://img.shields.io/github/v/release/sandy001-kki/Kairo?display_name=tag&sort=semver&color=blue)](https://github.com/sandy001-kki/Kairo/releases)
8
10
  [![Tests](https://img.shields.io/badge/tests-193%20passing-brightgreen)](tests)
9
11
  [![ADRs](https://img.shields.io/badge/ADRs-17-informational)](docs/adr)
@@ -1,7 +1,7 @@
1
1
  import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';
2
2
  import type { SessionManager } from '../core/session/sessionManager.js';
3
3
  export declare const SERVER_NAME = "kairo";
4
- export declare const SERVER_VERSION = "1.3.0";
4
+ export declare const SERVER_VERSION = "1.3.1";
5
5
  /**
6
6
  * Builds the MCP server and binds tools, the cooperation prompt, and read-only state
7
7
  * resources. Transport-agnostic: the caller connects a transport (see index.ts).
@@ -2,7 +2,7 @@ import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';
2
2
  import { registerTools } from './registerTools.js';
3
3
  import { CONTINUITY_PROMPT_TEXT } from '../prompts/continuityPrompt.js';
4
4
  export const SERVER_NAME = 'kairo';
5
- export const SERVER_VERSION = '1.3.0';
5
+ export const SERVER_VERSION = '1.3.1';
6
6
  /**
7
7
  * Builds the MCP server and binds tools, the cooperation prompt, and read-only state
8
8
  * resources. Transport-agnostic: the caller connects a transport (see index.ts).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kairo-mcp",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "Kairo — a persistent engineering memory and session-continuity control layer for AI coding agents, exposed over the Model Context Protocol.",
5
5
  "license": "MIT",
6
6
  "author": "Kairo maintainers",