Skip to content

Commit ac89be3

Browse files
committed
feat: bundle MCP server in plugin.json
Declare the memory-access MCP server inline in plugin.json so it starts automatically when the plugin is enabled. Users no longer need to manually add it to ~/.claude.json or run a setup command. AWS_PROFILE and AWS_REGION are inherited from the Claude Code session.
1 parent 9e0bfa9 commit ac89be3

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

.claude-plugin/plugin.json

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,16 @@
88
"homepage": "https://github.com/emmahyde/memory-access",
99
"repository": "https://github.com/emmahyde/memory-access",
1010
"license": "Apache-2.0",
11-
"keywords": ["memory-access", "mcp", "knowledge-graph", "embeddings", "insights"]
11+
"keywords": ["memory-access", "mcp", "knowledge-graph", "embeddings", "insights"],
12+
"mcpServers": {
13+
"memory-access": {
14+
"command": "uvx",
15+
"args": ["memory-access"],
16+
"env": {
17+
"MEMORY_DB_PATH": "~/.claude/memory-access/memory.db",
18+
"EMBEDDING_PROVIDER": "bedrock",
19+
"LLM_PROVIDER": "bedrock"
20+
}
21+
}
22+
}
1223
}

0 commit comments

Comments
 (0)