uniqueness-mcp 0.7.0 → 0.7.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/dist/server.js +1 -1
- package/package.json +2 -1
package/dist/server.js
CHANGED
|
@@ -2,7 +2,7 @@ import { randomUUID } from "node:crypto";
|
|
|
2
2
|
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
|
|
3
3
|
import { z } from "zod";
|
|
4
4
|
export const MCP_SERVER_NAME = "uniqueness";
|
|
5
|
-
export const MCP_SERVER_VERSION = "0.7.
|
|
5
|
+
export const MCP_SERVER_VERSION = "0.7.1";
|
|
6
6
|
export const MCP_TOOL_ALIASES = {
|
|
7
7
|
get_personal_context: ["get_connection_brief"],
|
|
8
8
|
resume_personal_context: ["resume_connection_brief"],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "uniqueness-mcp",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.1",
|
|
4
4
|
"description": "Local stdio fallback for the hosted Uniqueness Engine MCP server.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -23,6 +23,7 @@
|
|
|
23
23
|
"zod": "^3.23.0"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
|
+
"@types/node": "^26.4.1",
|
|
26
27
|
"typescript": "^5.9.2"
|
|
27
28
|
},
|
|
28
29
|
"license": "MIT"
|