archgraph-argo 0.10.44 → 0.10.46

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.
Files changed (2) hide show
  1. package/install-argo.ps1 +11 -1
  2. package/package.json +1 -1
package/install-argo.ps1 CHANGED
@@ -975,6 +975,16 @@ if ($SkipMcp) {
975
975
  url = $GraphMcpUrl
976
976
  enabled = $true
977
977
  }
978
+ # OpenClaw MCP servers are keyed by `transport` (streamable-http / sse /
979
+ # stdio), not by a `type: remote` alias: canonicalizeConfiguredMcpServer only
980
+ # maps type http/streamable-http/sse/stdio to a transport, so a bare
981
+ # {type:remote,url} entry would be dialed over SSE and the streamable-http
982
+ # endpoint returns 404 (openclaw mcp probe graph-mcp: SSE error Non-200 404).
983
+ $openClawGraphMcpServer = [ordered]@{
984
+ url = $GraphMcpUrl
985
+ transport = 'streamable-http'
986
+ enabled = $true
987
+ }
978
988
 
979
989
  Write-Host '==> Registering argo MCP server in VS Code (GitHub Copilot)'
980
990
  $mcpPath = if ($McpPath) { $McpPath } else { Join-Path $env:APPDATA 'Code\User\mcp.json' }
@@ -1007,7 +1017,7 @@ if ($SkipMcp) {
1007
1017
  # installer runs from a non-workspace npm-global package dir).
1008
1018
  $openClawRepoRoot = if ($OpenClawRepoRoot) { $OpenClawRepoRoot } else { $repoRoot }
1009
1019
  Write-Host "[22/22] argo MCP server -> $(Join-Path $OpenClawHome 'openclaw.json') (OpenClaw mcp.servers.argo, env.ARGO_REPO_ROOT pinned)"
1010
- Write-OpenClawMcpConfig -OpenClawHome $OpenClawHome -RepoRoot $openClawRepoRoot -ArgoServer $argoServer -GraphMcpServer $graphMcpServer
1020
+ Write-OpenClawMcpConfig -OpenClawHome $OpenClawHome -RepoRoot $openClawRepoRoot -ArgoServer $argoServer -GraphMcpServer $openClawGraphMcpServer
1011
1021
  }
1012
1022
  }
1013
1023
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "archgraph-argo",
3
- "version": "0.10.44",
3
+ "version": "0.10.46",
4
4
  "description": "Deploy the ArchGraph ARGO toolchain, skills, and rules (schema, scripts, argo-init skill, global rule) with one command.",
5
5
  "license": "MIT",
6
6
  "bin": {