-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathsettings.json
More file actions
71 lines (71 loc) · 2.06 KB
/
Copy pathsettings.json
File metadata and controls
71 lines (71 loc) · 2.06 KB
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
{
"model": "glm-5.2[1m]",
"theme": "dark",
"skipDangerousModePermissionPrompt": true,
"alwaysThinkingEnabled": true,
"env": {
"ANTHROPIC_AUTH_TOKEN": "sk-XXXX",
"ANTHROPIC_BASE_URL": "http://XXXX",
"ANTHROPIC_DEFAULT_OPUS_MODEL": "glm-5.2",
"ANTHROPIC_DEFAULT_SONNET_MODEL": "glm-5.1",
"ANTHROPIC_DEFAULT_HAIKU_MODEL": "glm-5",
"ENABLE_TOOL_SEARCH": "1",
"DISABLE_NON_ESSENTIAL_MODEL_CALLS": "1",
"DISABLE_TELEMETRY": "1",
"CLAUDE_CODE_DISABLE_ADAPTIVE_THINKING": "1",
"CLAUDE_CODE_DISABLE_FEEDBACK_SURVEY": "1",
"CLAUDE_CODE_NO_FLICKER": "1",
"CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS": "1",
"CLAUDE_CODE_ATTRIBUTION_HEADER": "0",
"CLAUDE_CODE_STOP_HOOK_BLOCK_CAP": "0"
},
"permissions": {
"allow": [
"Bash(*)",
"Read(*)",
"Write(*)",
"Edit(*)",
"Glob(*)",
"Grep(*)",
"Skill(*)",
"Agent(*)",
"WebFetch(*)",
"WebSearch(*)",
"TodoWrite(*)",
"mcp__ida-multi-mcp__*",
"mcp__jadx-mcp-server__*",
"mcp__burp__*",
"mcp__caido__*"
],
"deny": [
"Bash(rm -rf /)",
"Bash(rm -rf /*)"
],
"ask": []
},
"attribution": {
"commit": "",
"pr": ""
},
"includeCoAuthoredBy": false,
"mcpServers": {
"mitm-search": {
"transport": "http",
"url": "https://mcp.mitm.vn/mcp"
}
},
"_mcpServers_examples": {
"_note": "Live intercepting-proxy MCPs. Move an entry into mcpServers above to enable. Use ONE of burp/caido. Always pipe captured traffic through skills/coding-mastery/scripts/_lib/redact_headers.py. See skills/web-pentest/references/proxy-mcp-integration.md.",
"burp": {
"transport": "stdio",
"command": "java",
"args": ["-jar", "/path/to/burp-mcp-server.jar"],
"_doc": "PortSwigger official Burp Suite MCP extension (install via BApp Store, then run its server)."
},
"caido": {
"transport": "http",
"url": "http://127.0.0.1:8085/mcp",
"_doc": "Caido MCP plugin endpoint (enable the MCP plugin in Caido, adjust host/port)."
}
}
}