1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
{
"permissions": {
"allow": [
"Read",
"Grep",
"Glob",
"LS",
"Bash(npm test:*)",
"Bash(npm run lint:*)",
"Bash(npm run build:*)",
"Bash(git status:*)",
"Bash(git diff:*)",
"Bash(git log:*)",
"Bash(npm install:*)",
"Bash(npm init:*)",
"Bash(npm run dev:*)",
"Bash(npx:*)",
"Bash(npx drizzle-kit:*)",
"Bash(psql:*)",
"Bash(cat:*)",
"Bash(echo:*)",
"Bash(mkdir:*)",
"Bash(touch:*)",
"Bash(cp:*)",
"Bash(mv:*)",
"Bash(node:*)",
"Bash(tsx:*)",
"Bash(ts-node:*)",
"Write(**/*.ts)",
"Write(**/*.json)",
"Write(**/*.js)",
"Write(**/*.tsx)",
"Write(**/*.jsx)",
"Write(**/*.md)",
"Write(**/*.sql)",
"Write(**/*.sh)",
"Write(.env.example)",
"Write(drizzle.config.ts)",
"MultiEdit(**/*.ts)",
"MultiEdit(**/*.json)",
"Edit",
"MultiEdit"
],
"deny": [
"Read(./.env)",
"Read(./.env.local)",
"Read(./.env.production)",
"Read(./secrets/**)",
"Read(./node_modules/**)",
"Bash(rm -rf:*)",
"Bash(git push:*)",
"Write(./.env)",
"Write(./.env.local)",
"Write(./.env.production)"
],
"defaultMode": "acceptEdits"
},
"env": {
"CLAUDE_BASH_MAINTAIN_PROJECT_WORKING_DIR": "1",
"NODE_ENV": "development",
"DATABASE_URL": "postgresql://user:pass@host/dbname?sslmode=require",
"OPENAI_API_KEY": "sk-your-openai-api-key-here",
"MCP_SERVER_PORT": "3000",
"LOG_LEVEL": "info",
"VECTOR_SEARCH_LIMIT": "10",
"SIMILARITY_THRESHOLD": "0.7",
"MEMORY_EXPIRATION_DAYS": "90",
"MAX_MEMORIES_PER_USER": "10000",
"IMPORTANCE_DECAY_RATE": "0.1"
},
"cleanupPeriodDays": 30,
"includeCoAuthoredBy": false,
"statusLine": {
"type": "command",
"command": "~/.claude/statusline.sh"
},
"hooks": {
"PostToolUse": [
{
"matcher": "Edit|MultiEdit|Write",
"hooks": [
{
"type": "command",
"command": "date '+File modified at %Y-%m-%d %H:%M:%S'",
"timeout": 5
},
{
"type": "command",
"command": "$CLAUDE_PROJECT_DIR/.claude/hooks/typescript-dev.sh",
"timeout": 10
}
]
}
],
"PreToolUse": [
{
"matcher": "Bash",
"hooks": [
{
"type": "command",
"command": "echo 'Command logged' >> ~/.claude/command-log.txt"
}
]
}
]
},
"enableAllProjectMcpServers": true,
"enabledMcpjsonServers": [
"evmauth",
"timestamp"
],
"_metadata": {
"name": "Memory MCP Server",
"version": "1.0.0",
"category": "mcp-server",
"generated": "2025-08-20T13:36:56.497Z",
"generator": "manual",
"note": "Official Claude Code configuration"
}
}
|