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
16 changes: 15 additions & 1 deletion .agents/services/monitoring/sentry.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,20 @@ chmod 600 ~/.config/aidevops/credentials.sh

### 3. Configure OpenCode MCP

`~/.config/opencode/opencode.json` should contain an `mcpServers` object similar to:

```json
{
"mcpServers": {
"sentry": {
"command": "npx",
"args": ["@sentry/mcp-server@latest", "--access-token", "${SENTRY_YOURNAME}"],
"enabled": true
}
}
}
```

```bash
source ~/.config/aidevops/credentials.sh
tmp_json="$(mktemp)"
Expand Down Expand Up @@ -119,7 +133,7 @@ If you manually configure SDK options, keep `sendDefaultPii` disabled unless you

### Token returns empty organizations

Create a new Personal Auth Token **after** the organization exists.
Create a new Personal Auth Token **after** the organization exists. Tokens created before the org don't inherit access.

### "Not authenticated"

Expand Down
Loading