@hiveai/mcp 0.10.1 → 0.10.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 +3 -3
- package/dist/index.js +1 -1
- package/dist/server.js +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# @hiveai/mcp
|
|
2
2
|
|
|
3
|
-
> **hAIve MCP server**
|
|
3
|
+
> **hAIve MCP server** - policy-aware briefing and memory tools for MCP-compatible coding-agent harnesses.
|
|
4
4
|
|
|
5
|
-
The MCP server is how agents load team policy before changing code. By default it exposes a small
|
|
5
|
+
The MCP server is how agents load team policy before changing code. By default it exposes a small harness-oriented tool surface: briefing, relevant memories, failed-attempt capture, anchor verification, code-map lookup, and pre-commit checks. Larger maintenance and experimental surfaces are opt-in via `HAIVE_TOOL_PROFILE`.
|
|
6
6
|
|
|
7
|
-
hAIve is not just a memory database. The MCP layer participates in
|
|
7
|
+
hAIve is not just a memory database. The MCP layer participates in context policy: state-changing hAIve tools require `get_briefing` or `mem_relevant_to` first, so agents cannot silently skip team context while using hAIve.
|
|
8
8
|
|
|
9
9
|
---
|
|
10
10
|
|
package/dist/index.js
CHANGED
|
@@ -3874,7 +3874,7 @@ When done, respond with: "Imported N memories: [list of IDs]" or "Nothing action
|
|
|
3874
3874
|
// src/server.ts
|
|
3875
3875
|
import { loadConfigSync } from "@hiveai/core";
|
|
3876
3876
|
var SERVER_NAME = "haive";
|
|
3877
|
-
var SERVER_VERSION = "0.10.
|
|
3877
|
+
var SERVER_VERSION = "0.10.2";
|
|
3878
3878
|
function jsonResult(data) {
|
|
3879
3879
|
return {
|
|
3880
3880
|
content: [
|
package/dist/server.js
CHANGED
|
@@ -3872,7 +3872,7 @@ When done, respond with: "Imported N memories: [list of IDs]" or "Nothing action
|
|
|
3872
3872
|
// src/server.ts
|
|
3873
3873
|
import { loadConfigSync } from "@hiveai/core";
|
|
3874
3874
|
var SERVER_NAME = "haive";
|
|
3875
|
-
var SERVER_VERSION = "0.10.
|
|
3875
|
+
var SERVER_VERSION = "0.10.2";
|
|
3876
3876
|
function jsonResult(data) {
|
|
3877
3877
|
return {
|
|
3878
3878
|
content: [
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hiveai/mcp",
|
|
3
|
-
"version": "0.10.
|
|
4
|
-
"description": "hAIve MCP server
|
|
3
|
+
"version": "0.10.2",
|
|
4
|
+
"description": "hAIve MCP server - policy-aware briefing and memory tools for coding-agent harnesses",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -45,8 +45,8 @@
|
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
47
47
|
"zod": "^3.23.8",
|
|
48
|
-
"@hiveai/core": "0.10.
|
|
49
|
-
"@hiveai/embeddings": "0.10.
|
|
48
|
+
"@hiveai/core": "0.10.2",
|
|
49
|
+
"@hiveai/embeddings": "0.10.2"
|
|
50
50
|
},
|
|
51
51
|
"scripts": {
|
|
52
52
|
"build": "tsup",
|