@debian777/kairos-mcp 3.0.1 → 3.1.0-pre.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 +16 -3
- package/dist/.tsbuildinfo +1 -1
- package/dist/embed-docs/mem/00000000-0000-0000-0000-000000002001.md +1 -1
- package/dist/embed-docs/mem/00000000-0000-0000-0000-000000002002.md +1 -1
- package/dist/http/http-api-me.d.ts +7 -0
- package/dist/http/http-api-me.d.ts.map +1 -0
- package/dist/http/http-api-me.js +19 -0
- package/dist/http/http-api-me.js.map +1 -0
- package/dist/http/http-api-routes.d.ts.map +1 -1
- package/dist/http/http-api-routes.js +4 -0
- package/dist/http/http-api-routes.js.map +1 -1
- package/dist/http/http-api-spaces.d.ts +7 -0
- package/dist/http/http-api-spaces.d.ts.map +1 -0
- package/dist/http/http-api-spaces.js +22 -0
- package/dist/http/http-api-spaces.js.map +1 -0
- package/dist/http/http-auth-callback.d.ts.map +1 -1
- package/dist/http/http-auth-callback.js +5 -0
- package/dist/http/http-auth-callback.js.map +1 -1
- package/dist/http/http-auth-middleware.d.ts.map +1 -1
- package/dist/http/http-auth-middleware.js +6 -2
- package/dist/http/http-auth-middleware.js.map +1 -1
- package/dist/http/http-health-routes.d.ts.map +1 -1
- package/dist/http/http-health-routes.js +3 -19
- package/dist/http/http-health-routes.js.map +1 -1
- package/dist/http/http-server.d.ts.map +1 -1
- package/dist/http/http-server.js +2 -0
- package/dist/http/http-server.js.map +1 -1
- package/dist/http/http-ui-static.d.ts +9 -0
- package/dist/http/http-ui-static.d.ts.map +1 -0
- package/dist/http/http-ui-static.js +22 -0
- package/dist/http/http-ui-static.js.map +1 -0
- package/dist/services/embedding/providers.js +2 -2
- package/dist/services/embedding/providers.js.map +1 -1
- package/dist/services/memory/store-chain-default-handler.d.ts.map +1 -1
- package/dist/services/memory/store-chain-default-handler.js +2 -4
- package/dist/services/memory/store-chain-default-handler.js.map +1 -1
- package/dist/services/memory/store-chain-header-handler.d.ts.map +1 -1
- package/dist/services/memory/store-chain-header-handler.js +2 -4
- package/dist/services/memory/store-chain-header-handler.js.map +1 -1
- package/dist/services/qdrant/memory-store.js +6 -6
- package/dist/services/qdrant/memory-store.js.map +1 -1
- package/dist/services/qdrant/utils.js +1 -1
- package/dist/services/qdrant/utils.js.map +1 -1
- package/dist/services/redis-cache.js +5 -5
- package/dist/services/redis-cache.js.map +1 -1
- package/dist/services/stats/model-stats.js +3 -3
- package/dist/services/stats/model-stats.js.map +1 -1
- package/dist/tools/kairos_spaces.d.ts +20 -0
- package/dist/tools/kairos_spaces.d.ts.map +1 -1
- package/dist/tools/kairos_spaces.js +16 -9
- package/dist/tools/kairos_spaces.js.map +1 -1
- package/dist/ui/assets/index-CJu_Ql29.js +91 -0
- package/dist/ui/assets/index-DynG_bK0.css +1 -0
- package/dist/ui/favicon.svg +24 -0
- package/dist/ui/index.html +14 -0
- package/dist/ui/logo.svg +24 -0
- package/package.json +38 -4
package/README.md
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
# KAIROS MCP
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
[Node.js Version](https://nodejs.org/)
|
|
3
|
+
<img src="logo/kaiiros-mcp.svg" width="128" alt="KAIROS MCP logo" />
|
|
5
4
|
|
|
6
|
-
|
|
5
|
+
[](https://opensource.org/licenses/MIT)
|
|
6
|
+
[](https://nodejs.org/)
|
|
7
|
+
|
|
8
|
+
KAIROS MCP™ gives AI agents persistent memory and deterministic protocol
|
|
7
9
|
execution. Agents store, retrieve, and run reusable protocol chains across
|
|
8
10
|
sessions — without losing context between runs.
|
|
9
11
|
|
|
@@ -139,6 +141,17 @@ Run without `-y` to choose agents interactively. Full list and install details:
|
|
|
139
141
|
See [CONTRIBUTING.md](CONTRIBUTING.md) for development setup, contribution
|
|
140
142
|
guidelines, and agent-facing design principles.
|
|
141
143
|
|
|
144
|
+
## Trademark
|
|
145
|
+
|
|
146
|
+
KAIROS MCP™ and the KAIROS MCP logo are trademarks of the project.
|
|
147
|
+
|
|
148
|
+
The software is open source under the MIT License,
|
|
149
|
+
but the name and branding are not covered by that license.
|
|
150
|
+
|
|
151
|
+
Forks must remove the KAIROS MCP branding.
|
|
152
|
+
|
|
153
|
+
See [TRADEMARK.md](TRADEMARK.md) for details.
|
|
154
|
+
|
|
142
155
|
## License
|
|
143
156
|
|
|
144
157
|
MIT — see [LICENSE](LICENSE).
|