You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: claude/content/tutorials/handbook/components/settings.md
+46Lines changed: 46 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -98,6 +98,29 @@ When defined, this setting disables the [IPinfo](https://ipinfo.io) API call tha
98
98
99
99
Optional MCP servers extend framework capabilities for specific workflows. These integrate with your profile methodology to provide specialized tools.
100
100
101
+
### Claude Code
102
+
103
+
The Claude Code [MCP server](https://code.claude.com/docs/en/mcp) exposes Claude Code tools to Claude Desktop, enabling file operations, code search, and terminal access from the desktop application.
104
+
105
+
```json
106
+
{
107
+
"mcpServers": {
108
+
"claude": {
109
+
"command": "claude",
110
+
"args": ["mcp", "serve"],
111
+
"env": {}
112
+
}
113
+
}
114
+
}
115
+
```
116
+
117
+
#### Server Capabilities
118
+
119
+
- File reading and writing
120
+
- Code search and navigation
121
+
- Terminal command execution
122
+
- Project context awareness
123
+
101
124
### Language Server Protocol
102
125
103
126
For **Developer** and **Engineer** profiles, the required `code-review` plugin LSP [MCP server](https://code.claude.com/docs/en/mcp) enables intelligent code analysis, navigation, and development assistance across multiple programming languages.
@@ -126,6 +149,29 @@ For **Developer** and **Engineer** profiles, the required `code-review` plugin L
126
149
- Language-aware code intelligence
127
150
- Multi-project workspace support
128
151
152
+
### Safari
153
+
154
+
For macOS users, the Safari [MCP server](https://github.com/axivo/mcp-safari) enables browser automation for visual testing, web research, and interactive browsing sessions.
155
+
156
+
```json
157
+
{
158
+
"mcpServers": {
159
+
"safari": {
160
+
"command": "npx",
161
+
"args": ["-y", "@axivo/mcp-safari"],
162
+
"env": {}
163
+
}
164
+
}
165
+
}
166
+
```
167
+
168
+
#### Server Capabilities
169
+
170
+
- Page navigation and screenshot capture
171
+
- Element interaction (click, type, scroll)
172
+
- JavaScript execution in browser context
173
+
- Tab management
174
+
129
175
## User Memory Edits
130
176
131
177
Claude Desktop users can store memory entries that persist across conversations with `memory_user_edits` function. These entries appear in every session before any other context loads.
Copy file name to clipboardExpand all lines: claude/content/wiki/getting-started.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -245,6 +245,9 @@ To extend the platform usage, set up the container environment with the addition
245
245
{{< /tabs >}}
246
246
<!-- prettier-ignore-end -->
247
247
248
+
> [!NOTE]
249
+
> Add the Claude Code MCP server in `claude_desktop_config.json` configuration file as detailed in [Advanced Settings](/tutorials/handbook/components/settings) tutorial, if access to local files is required.
0 commit comments