Skip to content
Merged
Changes from all commits
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
26 changes: 26 additions & 0 deletions docs/product/sentry-mcp/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,32 @@ Available via `Cursor` → `Settings` → `Cursor Settings` → `MCP` following

You can still edit the `mcp.json` file manually if you prefer.

### Amp

Add via the Amp VS Code extension settings screen or by updating your settings.json file:

```json
"amp.mcpServers": {
"sentry": {
"command": "npx",
"args": [
"-y",
"mcp-remote@latest",
"https://mcp.sentry.dev/mcp"
]
}
}
```

**Amp CLI Setup:**

Add via the `amp mcp add` command below

```bash
amp mcp add sentry -- npx -y mcp-remote@latest https://mcp.sentry.dev/mcp
```


### VS Code and GitHub Copilot

Add the server using `CMD+Shift+P` and selecting `MCP: Add Server`
Expand Down
Loading