Sentry
Search, query, and debug errors intelligently.
| Family | Category | Sub-type | Auth type | Trending score |
|---|---|---|---|---|
| Developer Platform | developer | observability | bearer_token | 76 |
Overview
| Product URL | API docs | Supported features |
|---|---|---|
| https://sentry.io/ | https://docs.sentry.io/api/ | tool_discovery, health_check |
Setup
- Install the connector instance.
- Store the provider token or connection secret.
- Sync the tools and test the connection.
- Review approval-gated write tools before running them.
Auth & Configuration
| Field | Required | Type | Notes |
|---|---|---|---|
organizationSlug | Yes | string | Organization slug used to scope Sentry issue and project queries. |
Example config
json
{
"organizationSlug": "acme-inc"
}- Set
organizationSlugin the instance config before syncing tools.
Available Tools
| Tool | Requires approval | Description |
|---|---|---|
list_projects | No | List projects within a Sentry organization. |
list_issues | No | List Sentry issues for an organization. |
search_issues | No | Search Sentry issues with a free-text query. |
Use list_projects for the main execution example below because it is safe to run without approval.
Examples
Install
bash
chainabit connectors install sentry --name "Sentry" --config '{"organizationSlug":"acme-inc"}'bash
curl -X POST "$BASE_URL/connectors/instances" \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{
"connectorKey": "sentry",
"displayName": "Sentry",
"config": {
"organizationSlug": "acme-inc"
}
}'javascript
const response = await fetch(`${BASE_URL}/connectors/instances`, {
method: 'POST',
headers: {
Authorization: `Bearer ${TOKEN}`,
'Content-Type': 'application/json',
},
body: JSON.stringify({
"connectorKey": "sentry",
"displayName": "Sentry",
"config": {
"organizationSlug": "acme-inc"
}
}),
});Credentials
bash
chainabit connectors auth <instance-id>bash
curl -X POST "$BASE_URL/connectors/instances/<instance-id>/credentials" \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{
"credType": "bearer_token",
"credentials": {
"token": "YOUR_BEARER_TOKEN"
}
}'javascript
await fetch(`${BASE_URL}/connectors/instances/<instance-id>/credentials`, {
method: 'POST',
headers: {
Authorization: `Bearer ${TOKEN}`,
'Content-Type': 'application/json',
},
body: JSON.stringify({
"credType": "bearer_token",
"credentials": {
"token": "YOUR_BEARER_TOKEN"
}
}),
});Execute
bash
chainabit connectors exec <instance-id> list_projects --input '{}'bash
curl -X POST "$BASE_URL/connectors/instances/<instance-id>/tools/tool_list_projects/execute" \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{
"input": {}
}'javascript
const response = await fetch(
`${BASE_URL}/connectors/instances/<instance-id>/tools/tool_list_projects/execute`,
{
method: 'POST',
headers: {
Authorization: `Bearer ${TOKEN}`,
'Content-Type': 'application/json',
},
body: JSON.stringify({
"input": {}
}),
},
);Security Notes
- Keep tokens, API keys, and connection strings in the encrypted credentials vault.
- Do not allow arbitrary server URLs for remote MCP connectors.
- Set
organizationSlugin the instance config before syncing tools.
Troubleshooting
- If the health check fails, verify the token scope or credential payload and try again.
- If the tool list is empty, re-run sync-tools after storing the latest credentials.