Fix server.json runtimeArguments format

- Use proper Argument object format instead of plain strings
- Add .mcpregistry tokens to .gitignore

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Signed-off-by: Drew Cain <groksrc@gmail.com>
This commit is contained in:
Drew Cain
2026-01-19 12:23:29 -06:00
parent 9d9ea4d61c
commit 4e5f701d22
2 changed files with 5 additions and 1 deletions
+1
View File
@@ -54,3 +54,4 @@ ENV/
claude-output
**/.claude/settings.local.json
.mcp.json
.mcpregistry_*
+4 -1
View File
@@ -13,7 +13,10 @@
"identifier": "basic-memory",
"version": "0.17.7",
"runtimeHint": "uvx",
"runtimeArguments": ["basic-memory", "mcp"],
"runtimeArguments": [
{"type": "positional", "value": "basic-memory"},
{"type": "positional", "value": "mcp"}
],
"transport": {
"type": "stdio"
}