Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 23 additions & 18 deletions reference/mcp-server.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -97,26 +97,23 @@ Click [here](goose://extension?cmd=npx&arg=-y&arg=mcp-remote&arg=https%3A%2F%2Fm
{
"mcpServers": {
"kernel": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.onkernel.com/mcp"]
"url": "https://mcp.onkernel.com/mcp",
"type": "http"
Comment thread
masnwilliams marked this conversation as resolved.
Outdated
}
}
}
```

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

### Windsurf

1. Press **⌘/Ctrl ,** to open settings.
2. Go to **Cascade → MCP servers → Add custom server**.
2. Navigate **Cascade → MCP servers → View raw config**.
3. Paste:

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

4. On **Manage MCPs**, click **Refresh** to load Kernel MCP.

### Zed

Open `settings.json` and add:
1. Press **⌘/Ctrl ,** to open settings.
3. Paste:
Comment thread
masnwilliams marked this conversation as resolved.
Outdated

```json
{
"context_servers": {
"kernel": {
"command": {
"path": "npx",
"args": ["-y", "mcp-remote", "https://mcp.onkernel.com/mcp"],
"env": {}
},
"settings": {}
"source": "custom",
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.onkernel.com/mcp"]
}
}
}
Expand All @@ -155,7 +152,15 @@ Many other MCP-capable tools accept:

- **Command:** `npx`
- **Arguments:** `-y mcp-remote https://mcp.onkernel.com/mcp`
- **Environment:** _(none)_

```json
{
"kernel": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.onkernel.com/mcp"]
}
}
```

Configure these values wherever the tool expects MCP server settings.

Expand Down