devsh-memory-mcp 0.3.1 → 0.3.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.
@@ -1156,7 +1156,7 @@ function createMemoryMcpServer(config) {
1156
1156
  case "spawn_agent": {
1157
1157
  const { prompt, agentName: spawnAgentName, repo, branch, dependsOn, priority } = args;
1158
1158
  const jwt = process.env.CMUX_TASK_RUN_JWT;
1159
- const apiBaseUrl = process.env.CMUX_API_BASE_URL ?? "https://cmux.sh";
1159
+ const serverUrl = process.env.CMUX_SERVER_URL ?? "https://cmux-server.cmux.sh";
1160
1160
  const orchestrationId = process.env.CMUX_ORCHESTRATION_ID;
1161
1161
  if (!jwt) {
1162
1162
  return {
@@ -1167,11 +1167,11 @@ function createMemoryMcpServer(config) {
1167
1167
  };
1168
1168
  }
1169
1169
  try {
1170
- const url = `${apiBaseUrl}/api/v1/cmux/orchestration/spawn`;
1170
+ const url = `${serverUrl}/api/orchestrate/spawn`;
1171
1171
  const response = await fetch(url, {
1172
1172
  method: "POST",
1173
1173
  headers: {
1174
- "Authorization": `Bearer ${jwt}`,
1174
+ "X-Task-Run-JWT": jwt,
1175
1175
  "Content-Type": "application/json"
1176
1176
  },
1177
1177
  body: JSON.stringify({
package/dist/cli.js CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  runServer
4
- } from "./chunk-U2TWXSPB.js";
4
+ } from "./chunk-AK4NHBEY.js";
5
5
 
6
6
  // src/cli.ts
7
7
  function parseArgs() {
package/dist/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  createMemoryMcpServer,
3
3
  runServer
4
- } from "./chunk-U2TWXSPB.js";
4
+ } from "./chunk-AK4NHBEY.js";
5
5
  export {
6
6
  createMemoryMcpServer,
7
7
  runServer
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devsh-memory-mcp",
3
- "version": "0.3.1",
3
+ "version": "0.3.3",
4
4
  "description": "MCP server for devsh/cmux agent memory - enables Claude Desktop and external clients to access sandbox memory and orchestrate multi-agent workflows",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",