@hiveai/mcp 0.9.6 → 0.9.7
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 +2 -1
- package/dist/index.js.map +1 -1
- package/dist/server.d.ts +15 -5
- package/dist/server.js +2 -1
- package/dist/server.js.map +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -1912,6 +1912,7 @@ var CodeMapInputSchema = {
|
|
|
1912
1912
|
"Approximate token budget for the response. When the matching set exceeds it, files are ranked by export density (exports per LOC) and the highest-signal ones are kept first. Omit to disable budgeting (legacy behavior)."
|
|
1913
1913
|
)
|
|
1914
1914
|
};
|
|
1915
|
+
var CodeMapInputZod = z18.object(CodeMapInputSchema);
|
|
1915
1916
|
async function codeMapTool(input, ctx) {
|
|
1916
1917
|
const map = await loadCodeMap2(ctx.paths);
|
|
1917
1918
|
if (!map) {
|
|
@@ -3451,7 +3452,7 @@ When done, respond with: "Imported N memories: [list of IDs]" or "Nothing action
|
|
|
3451
3452
|
|
|
3452
3453
|
// src/server.ts
|
|
3453
3454
|
var SERVER_NAME = "haive";
|
|
3454
|
-
var SERVER_VERSION = "0.9.
|
|
3455
|
+
var SERVER_VERSION = "0.9.7";
|
|
3455
3456
|
function jsonResult(data) {
|
|
3456
3457
|
return {
|
|
3457
3458
|
content: [
|