Skip to content

Commit 41d87bb

Browse files
jeremyederclaude
andauthored
feat: add Memory MCP server allow list to repository settings (#203)
Add all 9 Anthropic Memory MCP server tool calls to the repository-level allow list (.claude/settings.json) to enable Claude Code agents to use memory server features without requiring user approval. Memory MCP calls added: - mcp__memory__create_entities - mcp__memory__create_relations - mcp__memory__add_observations - mcp__memory__delete_entities - mcp__memory__delete_observations - mcp__memory__delete_relations - mcp__memory__read_graph - mcp__memory__search_nodes - mcp__memory__open_nodes This enables full knowledge graph functionality (create, read, update, delete) for storing architectural decisions, patterns, and learnings across development sessions. Aligns with project principle: "Proactively use Memory MCP server to store architectural decisions and learnings" 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent b80eea9 commit 41d87bb

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

.claude/settings.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"permissions": {
3+
"allow": [
4+
"Skill(frontend-design:frontend-design)",
5+
"Bash(black:*)",
6+
"Bash(isort:*)",
7+
"Bash(jq:*)",
8+
"Bash(env)",
9+
"Bash(harbor:*)",
10+
"Bash(agentready assess:*)",
11+
"Bash(pytest:*)",
12+
"mcp__memory__create_entities",
13+
"mcp__memory__create_relations",
14+
"mcp__memory__add_observations",
15+
"mcp__memory__delete_entities",
16+
"mcp__memory__delete_observations",
17+
"mcp__memory__delete_relations",
18+
"mcp__memory__read_graph",
19+
"mcp__memory__search_nodes",
20+
"mcp__memory__open_nodes"
21+
],
22+
"deny": [],
23+
"ask": []
24+
}
25+
}

0 commit comments

Comments
 (0)