archgraph-argo 0.10.47 → 0.10.48
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/install-argo.ps1 +3 -3
- package/package.json +1 -1
package/install-argo.ps1
CHANGED
|
@@ -1005,7 +1005,7 @@ if ($SkipMcp) {
|
|
|
1005
1005
|
type = 'stdio'
|
|
1006
1006
|
command = 'node'
|
|
1007
1007
|
args = @($argoServer)
|
|
1008
|
-
}) -ExtraServers ([ordered]@{ 'graph-mcp' = $
|
|
1008
|
+
}) -ExtraServers ([ordered]@{ 'graph-mcp' = $graphMcpVSCode })
|
|
1009
1009
|
Write-Host "argo MCP config written -> $mcpPath"
|
|
1010
1010
|
|
|
1011
1011
|
Write-Host '==> Registering argo MCP server in Cursor'
|
|
@@ -1013,7 +1013,7 @@ if ($SkipMcp) {
|
|
|
1013
1013
|
type = 'stdio'
|
|
1014
1014
|
command = 'node'
|
|
1015
1015
|
args = @($argoServer)
|
|
1016
|
-
}) -ExtraServers ([ordered]@{ 'graph-mcp' = $
|
|
1016
|
+
}) -ExtraServers ([ordered]@{ 'graph-mcp' = $graphMcpCursor })
|
|
1017
1017
|
Write-Host "argo MCP config written -> $CursorMcpPath"
|
|
1018
1018
|
|
|
1019
1019
|
Write-Host '==> Registering argo MCP server in OpenCode'
|
|
@@ -1021,7 +1021,7 @@ if ($SkipMcp) {
|
|
|
1021
1021
|
type = 'local'
|
|
1022
1022
|
command = @('node', $argoServer)
|
|
1023
1023
|
enabled = $true
|
|
1024
|
-
}) -ExtraServers ([ordered]@{ 'graph-mcp' = $
|
|
1024
|
+
}) -ExtraServers ([ordered]@{ 'graph-mcp' = $graphMcpOpenCode })
|
|
1025
1025
|
Write-Host "argo MCP config written -> $OpenCodeConfigPath"
|
|
1026
1026
|
|
|
1027
1027
|
if (-not $SkipOpenClaw) {
|
package/package.json
CHANGED