@sutraha/mcp-server 0.6.2 → 0.6.3
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 +2 -2
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -23,7 +23,7 @@ Add to your MCPorter config:
|
|
|
23
23
|
"servers": {
|
|
24
24
|
"sutraha-hq": {
|
|
25
25
|
"command": "npx",
|
|
26
|
-
"args": ["@sutraha/mcp-server@0.6.
|
|
26
|
+
"args": ["@sutraha/mcp-server@0.6.3"],
|
|
27
27
|
"env": {
|
|
28
28
|
"CONVEX_URL": "https://your-deployment.convex.cloud",
|
|
29
29
|
"CONVEX_SITE_URL": "https://your-deployment.convex.site",
|
|
@@ -48,7 +48,7 @@ For write attribution, tools accept `sessionKey` directly (recommended). They al
|
|
|
48
48
|
|
|
49
49
|
## Versioning / Compatibility Policy
|
|
50
50
|
|
|
51
|
-
- **Pin MCP version** in MCPorter config (example uses `@sutraha/mcp-server@0.6.
|
|
51
|
+
- **Pin MCP version** in MCPorter config (example uses `@sutraha/mcp-server@0.6.3`).
|
|
52
52
|
- Use `sessionKey` for identity on all tool calls.
|
|
53
53
|
- Keep local files short and stable:
|
|
54
54
|
- `SUTRAHA_PROTOCOL.md` (shared operating contract)
|
package/dist/index.js
CHANGED
|
@@ -13,7 +13,7 @@ import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js"
|
|
|
13
13
|
import { z } from "zod";
|
|
14
14
|
import { api } from "./api.js";
|
|
15
15
|
import { createClientFromEnv } from "./convex-client.js";
|
|
16
|
-
const MCP_SERVER_VERSION = "0.6.
|
|
16
|
+
const MCP_SERVER_VERSION = "0.6.2";
|
|
17
17
|
const MCP_PROTOCOL_VERSION = "0.1.0";
|
|
18
18
|
const MCP_SESSION_KEY_MODE = "sessionKey_preferred";
|
|
19
19
|
const client = createClientFromEnv();
|