Skip to content

Commit 9e41234

Browse files
committed
docs(mcp-server): update server config instructions
1 parent 708687a commit 9e41234

File tree

1 file changed

+23
-18
lines changed

1 file changed

+23
-18
lines changed

reference/mcp-server.mdx

Lines changed: 23 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -97,26 +97,23 @@ Click [here](goose://extension?cmd=npx&arg=-y&arg=mcp-remote&arg=https%3A%2F%2Fm
9797
{
9898
"mcpServers": {
9999
"kernel": {
100-
"command": "npx",
101-
"args": ["-y", "mcp-remote", "https://mcp.onkernel.com/mcp"]
100+
"url": "https://mcp.onkernel.com/mcp",
101+
"type": "http"
102102
}
103103
}
104104
}
105105
```
106106

107-
1. Press **⌘/Ctrl P** → search **MCP: Add Server**.
108-
2. Select **Command (stdio)**.
109-
3. Enter:
110-
```bash
111-
npx -y mcp-remote https://mcp.onkernel.com/mcp
112-
```
107+
1. Press **⌘/Ctrl Shift P** → search **MCP: Add Server**.
108+
2. Select **HTTP (HTTP or Server-Sent Events)**.
109+
3. Enter: `https://mcp.onkernel.com/mcp`
113110
4. Name the server **Kernel** → Enter.
114-
5. Activate via **MCP: List Servers → Kernel → Start Server**.
111+
5. Click **Allow** when asked to authenticate to mcp.onkernel.com.
115112

116113
### Windsurf
117114

118115
1. Press **⌘/Ctrl ,** to open settings.
119-
2. Go to **Cascade → MCP servers → Add custom server**.
116+
2. Navigate **Cascade → MCP servers → View raw config**.
120117
3. Paste:
121118

122119
```json
@@ -130,20 +127,20 @@ Click [here](goose://extension?cmd=npx&arg=-y&arg=mcp-remote&arg=https%3A%2F%2Fm
130127
}
131128
```
132129

130+
4. On **Manage MCPs**, click **Refresh** to load Kernel MCP.
131+
133132
### Zed
134133

135-
Open `settings.json` and add:
134+
1. Press **⌘/Ctrl ,** to open settings.
135+
3. Paste:
136136

137137
```json
138138
{
139139
"context_servers": {
140140
"kernel": {
141-
"command": {
142-
"path": "npx",
143-
"args": ["-y", "mcp-remote", "https://mcp.onkernel.com/mcp"],
144-
"env": {}
145-
},
146-
"settings": {}
141+
"source": "custom",
142+
"command": "npx",
143+
"args": ["-y", "mcp-remote", "https://mcp.onkernel.com/mcp"]
147144
}
148145
}
149146
}
@@ -155,7 +152,15 @@ Many other MCP-capable tools accept:
155152

156153
- **Command:** `npx`
157154
- **Arguments:** `-y mcp-remote https://mcp.onkernel.com/mcp`
158-
- **Environment:** _(none)_
155+
156+
```json
157+
{
158+
"kernel": {
159+
"command": "npx",
160+
"args": ["-y", "mcp-remote", "https://mcp.onkernel.com/mcp"]
161+
}
162+
}
163+
```
159164

160165
Configure these values wherever the tool expects MCP server settings.
161166

0 commit comments

Comments
 (0)