@hiveai/mcp 0.2.9 → 0.2.10
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/dist/index.js +1 -1
- package/dist/server.js +1 -1
- package/package.json +23 -12
package/dist/index.js
CHANGED
|
@@ -1401,7 +1401,7 @@ When done, respond with: "Imported N memories: [list of IDs]" or "Nothing action
|
|
|
1401
1401
|
|
|
1402
1402
|
// src/server.ts
|
|
1403
1403
|
var SERVER_NAME = "haive";
|
|
1404
|
-
var SERVER_VERSION = "0.2.
|
|
1404
|
+
var SERVER_VERSION = "0.2.10";
|
|
1405
1405
|
function jsonResult(data) {
|
|
1406
1406
|
return {
|
|
1407
1407
|
content: [
|
package/dist/server.js
CHANGED
|
@@ -1396,7 +1396,7 @@ When done, respond with: "Imported N memories: [list of IDs]" or "Nothing action
|
|
|
1396
1396
|
|
|
1397
1397
|
// src/server.ts
|
|
1398
1398
|
var SERVER_NAME = "haive";
|
|
1399
|
-
var SERVER_VERSION = "0.2.
|
|
1399
|
+
var SERVER_VERSION = "0.2.10";
|
|
1400
1400
|
function jsonResult(data) {
|
|
1401
1401
|
return {
|
|
1402
1402
|
content: [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hiveai/mcp",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.10",
|
|
4
4
|
"description": "hAIve MCP server — exposes memory + project context to any MCP-compatible AI client",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -10,7 +10,15 @@
|
|
|
10
10
|
},
|
|
11
11
|
"bugs": "https://github.com/Doucs91/hAIve/issues",
|
|
12
12
|
"homepage": "https://github.com/Doucs91/hAIve#readme",
|
|
13
|
-
"keywords": [
|
|
13
|
+
"keywords": [
|
|
14
|
+
"ai",
|
|
15
|
+
"memory",
|
|
16
|
+
"mcp",
|
|
17
|
+
"haive",
|
|
18
|
+
"model-context-protocol",
|
|
19
|
+
"agent",
|
|
20
|
+
"team"
|
|
21
|
+
],
|
|
14
22
|
"type": "module",
|
|
15
23
|
"main": "./dist/server.js",
|
|
16
24
|
"types": "./dist/server.d.ts",
|
|
@@ -24,16 +32,12 @@
|
|
|
24
32
|
"bin": {
|
|
25
33
|
"haive-mcp": "./dist/index.js"
|
|
26
34
|
},
|
|
27
|
-
"files": [
|
|
28
|
-
|
|
29
|
-
"
|
|
30
|
-
|
|
31
|
-
"test:watch": "vitest",
|
|
32
|
-
"typecheck": "tsc --noEmit",
|
|
33
|
-
"clean": "rm -rf dist .tsbuildinfo"
|
|
34
|
-
},
|
|
35
|
+
"files": [
|
|
36
|
+
"dist",
|
|
37
|
+
"LICENSE"
|
|
38
|
+
],
|
|
35
39
|
"dependencies": {
|
|
36
|
-
"@hiveai/core": "
|
|
40
|
+
"@hiveai/core": "^0.2.9",
|
|
37
41
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
38
42
|
"zod": "^3.23.8"
|
|
39
43
|
},
|
|
@@ -44,5 +48,12 @@
|
|
|
44
48
|
"@hiveai/embeddings": {
|
|
45
49
|
"optional": true
|
|
46
50
|
}
|
|
51
|
+
},
|
|
52
|
+
"scripts": {
|
|
53
|
+
"build": "tsup",
|
|
54
|
+
"test": "vitest run",
|
|
55
|
+
"test:watch": "vitest",
|
|
56
|
+
"typecheck": "tsc --noEmit",
|
|
57
|
+
"clean": "rm -rf dist .tsbuildinfo"
|
|
47
58
|
}
|
|
48
|
-
}
|
|
59
|
+
}
|