getsentry/sentry-mcp
sentry-mcp is hosted online, so all tools can be tested directly either in theInspector tabor in theOnline Client.
If you are the rightful owner of sentry-mcp and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
Sentry-MCP is a prototype remote MCP server acting as middleware to the upstream Sentry API provider.
Try sentry-mcp with chat:
Tools
Functions exposed to the LLM to take actions
whoami
Identify the authenticated user in Sentry.
Use this tool when you need to:
- Get the user's name and email address.
find_organizations
Find organizations that the user has access to in Sentry.
Use this tool when you need to:
- View organizations in Sentry
- Find an organization's slug to aid other tool requests
- Search for specific organizations by name or slug
Returns up to 25 results. If you hit this limit, use the query parameter to narrow down results.
find_teams
Find teams in an organization in Sentry.
Use this tool when you need to:
- View teams in a Sentry organization
- Find a team's slug to aid other tool requests
- Search for specific teams by name or slug
Returns up to 25 results. If you hit this limit, use the query parameter to narrow down results.
find_projects
Find projects in Sentry.
Use this tool when you need to:
- View projects in a Sentry organization
- Find a project's slug to aid other tool requests
- Search for specific projects by name or slug
Returns up to 25 results. If you hit this limit, use the query parameter to narrow down results.
find_releases
Find releases in Sentry.
Use this tool when you need to:
- Find recent releases in a Sentry organization
- Find the most recent version released of a specific project
- Determine when a release was deployed to an environment
find_releases(organizationSlug='my-organization')
Find releases matching '2ce6a27' in the 'my-organization' organization
find_releases(organizationSlug='my-organization', query='2ce6a27')
get_issue_details
Get detailed information about a specific Sentry issue by ID.
๐ USE THIS TOOL WHEN USERS:
- Provide a specific issue ID (e.g., 'CLOUDFLARE-MCP-41', 'PROJECT-123')
- Ask to 'explain [ISSUE-ID]', 'tell me about [ISSUE-ID]'
- Want details/stacktrace/analysis for a known issue
- Provide a Sentry issue URL
โ DO NOT USE for:
- General searching or listing issues (use search_issues)
- Root cause analysis (use analyze_issue_with_seer)
TRIGGER PATTERNS:
- 'Explain ISSUE-123' โ use get_issue_details
- 'Tell me about PROJECT-456' โ use get_issue_details
- 'What happened in [issue URL]' โ use get_issue_details
With issue ID and organization
get_issue_details(organizationSlug='my-organization', issueId='CLOUDFLARE-MCP-41')
With event ID and organization
get_issue_details(organizationSlug='my-organization', eventId='c49541c747cb4d8aa3efb70ca5aba243')
get_trace_details
Get detailed information about a specific Sentry trace by ID.
๐ USE THIS TOOL WHEN USERS:
- Provide a specific trace ID (e.g., 'a4d1aae7216b47ff8117cf4e09ce9d0a')
- Ask to 'show me trace [TRACE-ID]', 'explain trace [TRACE-ID]'
- Want high-level overview and link to view trace details in Sentry
- Need trace statistics and span breakdown
โ DO NOT USE for:
- General searching for traces (use search_events with trace queries)
- Individual span details (this shows trace overview)
TRIGGER PATTERNS:
- 'Show me trace abc123' โ use get_trace_details
- 'Explain trace a4d1aae7216b47ff8117cf4e09ce9d0a' โ use get_trace_details
- 'What is trace [trace-id]' โ use get_trace_details
get_event_attachment
Download attachments from a Sentry event.
Use this tool when you need to:
- Download files attached to a specific event
- Access screenshots, log files, or other attachments uploaded with an error report
- Retrieve attachment metadata and download URLs
get_event_attachment(organizationSlug='my-organization', projectSlug='my-project', eventId='c49541c747cb4d8aa3efb70ca5aba243', attachmentId='12345')
List all attachments for an event
get_event_attachment(organizationSlug='my-organization', projectSlug='my-project', eventId='c49541c747cb4d8aa3efb70ca5aba243')
update_issue
Update an issue's status or assignment in Sentry. This allows you to resolve, ignore, or reassign issues.
Use this tool when you need to:
- Resolve an issue that has been fixed
- Assign an issue to a team member or team for investigation
- Mark an issue as ignored to reduce noise
- Reopen a resolved issue by setting status to 'unresolved'
update_issue(organizationSlug='my-organization', issueId='PROJECT-123', status='resolved')
Assign an issue to a user (use whoami to get your user ID)
update_issue(organizationSlug='my-organization', issueId='PROJECT-123', assignedTo='user:123456')
Assign an issue to a team
update_issue(organizationSlug='my-organization', issueId='PROJECT-123', assignedTo='team:789')
Mark an issue as ignored
update_issue(organizationSlug='my-organization', issueId='PROJECT-123', status='ignored')
search_events
Search for events AND perform counts/aggregations - the ONLY tool for statistics and counts.
Supports TWO query types:
- AGGREGATIONS (counts, sums, averages): 'how many errors', 'count of issues', 'total tokens'
- Individual events with timestamps: 'show me error logs from last hour'
๐ข USE THIS FOR ALL COUNTS/STATISTICS:
- 'how many errors today' โ returns count
- 'count of database failures' โ returns count
- 'total number of issues' โ returns count
- 'average response time' โ returns avg()
- 'sum of tokens used' โ returns sum()
๐ ALSO USE FOR INDIVIDUAL EVENTS:
- 'error logs from last hour' โ returns event list
- 'database errors with timestamps' โ returns event list
- 'trace spans for slow API calls' โ returns span list
Dataset Selection (AI automatically chooses):
- errors: Exception/crash events
- logs: Log entries
- spans: Performance data, AI/LLM calls, token usage
โ DO NOT USE for grouped issue lists โ use search_issues
create_team
Create a new team in Sentry.
๐ USE THIS TOOL WHEN USERS WANT TO:
- 'Create a new team'
- 'Set up a team called [X]'
- 'I need a team for my project'
Be careful when using this tool!
create_project
Create a new project in Sentry (includes DSN automatically).
๐ USE THIS TOOL WHEN USERS WANT TO:
- 'Create a new project'
- 'Set up a project for [app/service] with team [X]'
- 'I need a new Sentry project'
- Create project AND need DSN in one step
โ DO NOT USE create_dsn after this - DSN is included in output.
Be careful when using this tool!
update_project
Update project settings in Sentry, such as name, slug, platform, and team assignment.
Be careful when using this tool!
Use this tool when you need to:
- Update a project's name or slug to fix onboarding mistakes
- Change the platform assigned to a project
- Update team assignment for a project
update_project(organizationSlug='my-organization', projectSlug='old-project', name='New Project Name', slug='new-project-slug')
Assign a project to a different team
update_project(organizationSlug='my-organization', projectSlug='my-project', teamSlug='backend-team')
Update platform
update_project(organizationSlug='my-organization', projectSlug='my-project', platform='python')
create_dsn
Create an additional DSN for an EXISTING project.
๐ USE THIS TOOL WHEN:
- Project already exists and needs additional DSN
- 'Create another DSN for project X'
- 'I need a production DSN for existing project'
โ DO NOT USE for new projects (use create_project instead)
Be careful when using this tool!
find_dsns
List all Sentry DSNs for a specific project.
Use this tool when you need to:
- Retrieve a SENTRY_DSN for a specific project
analyze_issue_with_seer
Use Seer to analyze production errors and get detailed root cause analysis with specific code fixes.
Use this tool when you need:
- Detailed AI-powered root cause analysis
- Specific code fixes and implementation guidance
- Step-by-step troubleshooting for complex issues
- Understanding why an error is happening in production
What this tool provides:
- Root cause analysis with code-level explanations
- Specific file locations and line numbers where errors occur
- Concrete code fixes you can apply
- Step-by-step implementation guidance
This tool automatically:
- Checks if analysis already exists (instant results)
- Starts new AI analysis if needed (~2-5 minutes)
- Returns complete fix recommendations
analyze_issue_with_seer(issueUrl='https://my-org.sentry.io/issues/PROJECT-1Z43')
User: "Can you help me understand why this is failing in production?"
analyze_issue_with_seer(organizationSlug='my-organization', issueId='ERROR-456')
search_docs
Search Sentry documentation for SDK setup, instrumentation, and configuration guidance.
Use this tool when you need to:
- Set up Sentry SDK or framework integrations (Django, Flask, Express, Next.js, etc.)
- Configure features like performance monitoring, error sampling, or release tracking
- Implement custom instrumentation (spans, transactions, breadcrumbs)
- Configure data scrubbing, filtering, or sampling rules
Returns snippets only. Use get_doc(path='...') to fetch full documentation content.
get_doc
Fetch the full markdown content of a Sentry documentation page.
Use this tool when you need to:
- Read the complete documentation for a specific topic
- Get detailed implementation examples or code snippets
- Access the full context of a documentation page
- Extract specific sections from documentation
get_doc(path='/platforms/javascript/guides/nextjs.md')
search_issues
Search for grouped issues/problems in Sentry - returns a LIST of issues, NOT counts or aggregations.
Uses AI to translate natural language queries into Sentry issue search syntax. Returns grouped issues with metadata like title, status, and user count.
๐ USE THIS TOOL WHEN USERS WANT:
- A LIST of issues: 'show me issues', 'what problems do we have'
- Filtered issue lists: 'unresolved issues', 'critical bugs'
- Issues by impact: 'errors affecting more than 100 users'
- Issues by assignment: 'issues assigned to me'
โ DO NOT USE FOR COUNTS/AGGREGATIONS:
- 'how many errors' โ use search_events
- 'count of issues' โ use search_events
- 'total number of errors today' โ use search_events
- 'sum/average/statistics' โ use search_events
โ ALSO DO NOT USE FOR:
- Individual error events with timestamps โ use search_events
- Details about a specific issue ID โ use get_issue_details
REMEMBER: This tool returns a LIST of issues, not counts or statistics!
Prompts
Interactive templates invoked by user choice
find_errors_in_file
Use this prompt when you need to find errors in Sentry for a given file.
fix_issue_with_seer
Use this prompt when you need to fix an issue with Seer.
You can pass in either an issueId and organizationSlug, or an issueUrl.
Resources
Contextual data attached and managed by the client
sentry-mcp-about
URI: sentry://about
MIME: text/markdown
Information about Sentry MCP service and its capabilities
javascript-docs
URI: https://docs.sentry.io/platforms/javascript/
MIME: text/markdown
Sentry SDK documentation for javascript
python-docs
URI: https://docs.sentry.io/platforms/python/
MIME: text/markdown
Sentry SDK documentation for python
java-docs
URI: https://docs.sentry.io/platforms/java/
MIME: text/markdown
Sentry SDK documentation for java
dotnet-docs
URI: https://docs.sentry.io/platforms/dotnet/
MIME: text/markdown
Sentry SDK documentation for dotnet
go-docs
URI: https://docs.sentry.io/platforms/go/
MIME: text/markdown
Sentry SDK documentation for go
php-docs
URI: https://docs.sentry.io/platforms/php/
MIME: text/markdown
Sentry SDK documentation for php
ruby-docs
URI: https://docs.sentry.io/platforms/ruby/
MIME: text/markdown
Sentry SDK documentation for ruby
android-docs
URI: https://docs.sentry.io/platforms/android/
MIME: text/markdown
Sentry SDK documentation for android
apple-docs
URI: https://docs.sentry.io/platforms/apple/
MIME: text/markdown
Sentry SDK documentation for apple
unity-docs
URI: https://docs.sentry.io/platforms/unity/
MIME: text/markdown
Sentry SDK documentation for unity
unreal-docs
URI: https://docs.sentry.io/platforms/unreal/
MIME: text/markdown
Sentry SDK documentation for unreal
rust-docs
URI: https://docs.sentry.io/platforms/rust/
MIME: text/markdown
Sentry SDK documentation for rust
elixir-docs
URI: https://docs.sentry.io/platforms/elixir/
MIME: text/markdown
Sentry SDK documentation for elixir
kotlin-docs
URI: https://docs.sentry.io/platforms/kotlin/
MIME: text/markdown
Sentry SDK documentation for kotlin
native-docs
URI: https://docs.sentry.io/platforms/native/
MIME: text/markdown
Sentry SDK documentation for native
dart-docs
URI: https://docs.sentry.io/platforms/dart/
MIME: text/markdown
Sentry SDK documentation for dart
godot-docs
URI: https://docs.sentry.io/platforms/godot/
MIME: text/markdown
Sentry SDK documentation for godot
nintendo-switch-docs
URI: https://docs.sentry.io/platforms/nintendo-switch/
MIME: text/markdown
Sentry SDK documentation for nintendo-switch
playstation-docs
URI: https://docs.sentry.io/platforms/playstation/
MIME: text/markdown
Sentry SDK documentation for playstation
powershell-docs
URI: https://docs.sentry.io/platforms/powershell/
MIME: text/markdown
Sentry SDK documentation for powershell
react-native-docs
URI: https://docs.sentry.io/platforms/react-native/
MIME: text/markdown
Sentry SDK documentation for react-native
xbox-docs
URI: https://docs.sentry.io/platforms/xbox/
MIME: text/markdown
Sentry SDK documentation for xbox
javascript-nextjs-guide
URI: https://docs.sentry.io/platforms/javascript/guides/nextjs/
MIME: text/markdown
Sentry integration guide for nextjs on javascript
javascript-react-guide
URI: https://docs.sentry.io/platforms/javascript/guides/react/
MIME: text/markdown
Sentry integration guide for react on javascript
javascript-gatsby-guide
URI: https://docs.sentry.io/platforms/javascript/guides/gatsby/
MIME: text/markdown
Sentry integration guide for gatsby on javascript
javascript-remix-guide
URI: https://docs.sentry.io/platforms/javascript/guides/remix/
MIME: text/markdown
Sentry integration guide for remix on javascript
javascript-vue-guide
URI: https://docs.sentry.io/platforms/javascript/guides/vue/
MIME: text/markdown
Sentry integration guide for vue on javascript
javascript-angular-guide
URI: https://docs.sentry.io/platforms/javascript/guides/angular/
MIME: text/markdown
Sentry integration guide for angular on javascript
javascript-hono-guide
URI: https://docs.sentry.io/platforms/javascript/guides/hono/
MIME: text/markdown
Sentry integration guide for hono on javascript
javascript-svelte-guide
URI: https://docs.sentry.io/platforms/javascript/guides/svelte/
MIME: text/markdown
Sentry integration guide for svelte on javascript
javascript-express-guide
URI: https://docs.sentry.io/platforms/javascript/guides/express/
MIME: text/markdown
Sentry integration guide for express on javascript
javascript-fastify-guide
URI: https://docs.sentry.io/platforms/javascript/guides/fastify/
MIME: text/markdown
Sentry integration guide for fastify on javascript
javascript-astro-guide
URI: https://docs.sentry.io/platforms/javascript/guides/astro/
MIME: text/markdown
Sentry integration guide for astro on javascript
javascript-bun-guide
URI: https://docs.sentry.io/platforms/javascript/guides/bun/
MIME: text/markdown
Sentry integration guide for bun on javascript
javascript-capacitor-guide
URI: https://docs.sentry.io/platforms/javascript/guides/capacitor/
MIME: text/markdown
Sentry integration guide for capacitor on javascript
javascript-cloudflare-guide
URI: https://docs.sentry.io/platforms/javascript/guides/cloudflare/
MIME: text/markdown
Sentry integration guide for cloudflare on javascript
javascript-connect-guide
URI: https://docs.sentry.io/platforms/javascript/guides/connect/
MIME: text/markdown
Sentry integration guide for connect on javascript
javascript-cordova-guide
URI: https://docs.sentry.io/platforms/javascript/guides/cordova/
MIME: text/markdown
Sentry integration guide for cordova on javascript
javascript-deno-guide
URI: https://docs.sentry.io/platforms/javascript/guides/deno/
MIME: text/markdown
Sentry integration guide for deno on javascript
javascript-electron-guide
URI: https://docs.sentry.io/platforms/javascript/guides/electron/
MIME: text/markdown
Sentry integration guide for electron on javascript
javascript-ember-guide
URI: https://docs.sentry.io/platforms/javascript/guides/ember/
MIME: text/markdown
Sentry integration guide for ember on javascript
javascript-nuxt-guide
URI: https://docs.sentry.io/platforms/javascript/guides/nuxt/
MIME: text/markdown
Sentry integration guide for nuxt on javascript
javascript-solid-guide
URI: https://docs.sentry.io/platforms/javascript/guides/solid/
MIME: text/markdown
Sentry integration guide for solid on javascript
javascript-solidstart-guide
URI: https://docs.sentry.io/platforms/javascript/guides/solidstart/
MIME: text/markdown
Sentry integration guide for solidstart on javascript
javascript-sveltekit-guide
URI: https://docs.sentry.io/platforms/javascript/guides/sveltekit/
MIME: text/markdown
Sentry integration guide for sveltekit on javascript
javascript-tanstack-react-guide
URI: https://docs.sentry.io/platforms/javascript/guides/tanstack-react/
MIME: text/markdown
Sentry integration guide for tanstack-react on javascript
javascript-wasm-guide
URI: https://docs.sentry.io/platforms/javascript/guides/wasm/
MIME: text/markdown
Sentry integration guide for wasm on javascript
javascript-node-guide
URI: https://docs.sentry.io/platforms/javascript/guides/node/
MIME: text/markdown
Sentry integration guide for node on javascript
javascript-koa-guide
URI: https://docs.sentry.io/platforms/javascript/guides/koa/
MIME: text/markdown
Sentry integration guide for koa on javascript
javascript-nestjs-guide
URI: https://docs.sentry.io/platforms/javascript/guides/nestjs/
MIME: text/markdown
Sentry integration guide for nestjs on javascript
javascript-hapi-guide
URI: https://docs.sentry.io/platforms/javascript/guides/hapi/
MIME: text/markdown
Sentry integration guide for hapi on javascript
python-django-guide
URI: https://docs.sentry.io/platforms/python/guides/django/
MIME: text/markdown
Sentry integration guide for django on python
python-flask-guide
URI: https://docs.sentry.io/platforms/python/guides/flask/
MIME: text/markdown
Sentry integration guide for flask on python
python-fastapi-guide
URI: https://docs.sentry.io/platforms/python/guides/fastapi/
MIME: text/markdown
Sentry integration guide for fastapi on python
python-celery-guide
URI: https://docs.sentry.io/platforms/python/guides/celery/
MIME: text/markdown
Sentry integration guide for celery on python
python-tornado-guide
URI: https://docs.sentry.io/platforms/python/guides/tornado/
MIME: text/markdown
Sentry integration guide for tornado on python
python-pyramid-guide
URI: https://docs.sentry.io/platforms/python/guides/pyramid/
MIME: text/markdown
Sentry integration guide for pyramid on python
python-aiohttp-guide
URI: https://docs.sentry.io/platforms/python/guides/aiohttp/
MIME: text/markdown
Sentry integration guide for aiohttp on python
python-anthropic-guide
URI: https://docs.sentry.io/platforms/python/guides/anthropic/
MIME: text/markdown
Sentry integration guide for anthropic on python
python-airflow-guide
URI: https://docs.sentry.io/platforms/python/guides/airflow/
MIME: text/markdown
Sentry integration guide for airflow on python
python-aws-lambda-guide
URI: https://docs.sentry.io/platforms/python/guides/aws-lambda/
MIME: text/markdown
Sentry integration guide for aws-lambda on python
python-boto3-guide
URI: https://docs.sentry.io/platforms/python/guides/boto3/
MIME: text/markdown
Sentry integration guide for boto3 on python
python-bottle-guide
URI: https://docs.sentry.io/platforms/python/guides/bottle/
MIME: text/markdown
Sentry integration guide for bottle on python
python-chalice-guide
URI: https://docs.sentry.io/platforms/python/guides/chalice/
MIME: text/markdown
Sentry integration guide for chalice on python
python-dramatiq-guide
URI: https://docs.sentry.io/platforms/python/guides/dramatiq/
MIME: text/markdown
Sentry integration guide for dramatiq on python
python-falcon-guide
URI: https://docs.sentry.io/platforms/python/guides/falcon/
MIME: text/markdown
Sentry integration guide for falcon on python
python-langchain-guide
URI: https://docs.sentry.io/platforms/python/guides/langchain/
MIME: text/markdown
Sentry integration guide for langchain on python
python-litestar-guide
URI: https://docs.sentry.io/platforms/python/guides/litestar/
MIME: text/markdown
Sentry integration guide for litestar on python
python-logging-guide
URI: https://docs.sentry.io/platforms/python/guides/logging/
MIME: text/markdown
Sentry integration guide for logging on python
python-loguru-guide
URI: https://docs.sentry.io/platforms/python/guides/loguru/
MIME: text/markdown
Sentry integration guide for loguru on python
python-openai-guide
URI: https://docs.sentry.io/platforms/python/guides/openai/
MIME: text/markdown
Sentry integration guide for openai on python
python-quart-guide
URI: https://docs.sentry.io/platforms/python/guides/quart/
MIME: text/markdown
Sentry integration guide for quart on python
python-ray-guide
URI: https://docs.sentry.io/platforms/python/guides/ray/
MIME: text/markdown
Sentry integration guide for ray on python
python-redis-guide
URI: https://docs.sentry.io/platforms/python/guides/redis/
MIME: text/markdown
Sentry integration guide for redis on python
python-rq-guide
URI: https://docs.sentry.io/platforms/python/guides/rq/
MIME: text/markdown
Sentry integration guide for rq on python
python-sanic-guide
URI: https://docs.sentry.io/platforms/python/guides/sanic/
MIME: text/markdown
Sentry integration guide for sanic on python
python-sqlalchemy-guide
URI: https://docs.sentry.io/platforms/python/guides/sqlalchemy/
MIME: text/markdown
Sentry integration guide for sqlalchemy on python
python-starlette-guide
URI: https://docs.sentry.io/platforms/python/guides/starlette/
MIME: text/markdown
Sentry integration guide for starlette on python
dart-flutter-guide
URI: https://docs.sentry.io/platforms/dart/guides/flutter/
MIME: text/markdown
Sentry integration guide for flutter on dart
dotnet-aspnetcore-guide
URI: https://docs.sentry.io/platforms/dotnet/guides/aspnetcore/
MIME: text/markdown
Sentry integration guide for aspnetcore on dotnet
dotnet-maui-guide
URI: https://docs.sentry.io/platforms/dotnet/guides/maui/
MIME: text/markdown
Sentry integration guide for maui on dotnet
dotnet-wpf-guide
URI: https://docs.sentry.io/platforms/dotnet/guides/wpf/
MIME: text/markdown
Sentry integration guide for wpf on dotnet
dotnet-winforms-guide
URI: https://docs.sentry.io/platforms/dotnet/guides/winforms/
MIME: text/markdown
Sentry integration guide for winforms on dotnet
dotnet-aspnet-guide
URI: https://docs.sentry.io/platforms/dotnet/guides/aspnet/
MIME: text/markdown
Sentry integration guide for aspnet on dotnet
dotnet-aws-lambda-guide
URI: https://docs.sentry.io/platforms/dotnet/guides/aws-lambda/
MIME: text/markdown
Sentry integration guide for aws-lambda on dotnet
dotnet-azure-functions-guide
URI: https://docs.sentry.io/platforms/dotnet/guides/azure-functions/
MIME: text/markdown
Sentry integration guide for azure-functions on dotnet
dotnet-blazor-webassembly-guide
URI: https://docs.sentry.io/platforms/dotnet/guides/blazor-webassembly/
MIME: text/markdown
Sentry integration guide for blazor-webassembly on dotnet
dotnet-entityframework-guide
URI: https://docs.sentry.io/platforms/dotnet/guides/entityframework/
MIME: text/markdown
Sentry integration guide for entityframework on dotnet
dotnet-google-cloud-functions-guide
URI: https://docs.sentry.io/platforms/dotnet/guides/google-cloud-functions/
MIME: text/markdown
Sentry integration guide for google-cloud-functions on dotnet
dotnet-extensions-logging-guide
URI: https://docs.sentry.io/platforms/dotnet/guides/extensions-logging/
MIME: text/markdown
Sentry integration guide for extensions-logging on dotnet
dotnet-log4net-guide
URI: https://docs.sentry.io/platforms/dotnet/guides/log4net/
MIME: text/markdown
Sentry integration guide for log4net on dotnet
dotnet-nlog-guide
URI: https://docs.sentry.io/platforms/dotnet/guides/nlog/
MIME: text/markdown
Sentry integration guide for nlog on dotnet
dotnet-serilog-guide
URI: https://docs.sentry.io/platforms/dotnet/guides/serilog/
MIME: text/markdown
Sentry integration guide for serilog on dotnet
dotnet-uwp-guide
URI: https://docs.sentry.io/platforms/dotnet/guides/uwp/
MIME: text/markdown
Sentry integration guide for uwp on dotnet
dotnet-xamarin-guide
URI: https://docs.sentry.io/platforms/dotnet/guides/xamarin/
MIME: text/markdown
Sentry integration guide for xamarin on dotnet
java-spring-guide
URI: https://docs.sentry.io/platforms/java/guides/spring/
MIME: text/markdown
Sentry integration guide for spring on java
java-spring-boot-guide
URI: https://docs.sentry.io/platforms/java/guides/spring-boot/
MIME: text/markdown
Sentry integration guide for spring-boot on java
java-android-guide
URI: https://docs.sentry.io/platforms/java/guides/android/
MIME: text/markdown
Sentry integration guide for android on java
java-jul-guide
URI: https://docs.sentry.io/platforms/java/guides/jul/
MIME: text/markdown
Sentry integration guide for jul on java
java-log4j2-guide
URI: https://docs.sentry.io/platforms/java/guides/log4j2/
MIME: text/markdown
Sentry integration guide for log4j2 on java
java-logback-guide
URI: https://docs.sentry.io/platforms/java/guides/logback/
MIME: text/markdown
Sentry integration guide for logback on java
java-servlet-guide
URI: https://docs.sentry.io/platforms/java/guides/servlet/
MIME: text/markdown
Sentry integration guide for servlet on java
go-echo-guide
URI: https://docs.sentry.io/platforms/go/guides/echo/
MIME: text/markdown
Sentry integration guide for echo on go
go-fasthttp-guide
URI: https://docs.sentry.io/platforms/go/guides/fasthttp/
MIME: text/markdown
Sentry integration guide for fasthttp on go
go-fiber-guide
URI: https://docs.sentry.io/platforms/go/guides/fiber/
MIME: text/markdown
Sentry integration guide for fiber on go
go-gin-guide
URI: https://docs.sentry.io/platforms/go/guides/gin/
MIME: text/markdown
Sentry integration guide for gin on go
go-http-guide
URI: https://docs.sentry.io/platforms/go/guides/http/
MIME: text/markdown
Sentry integration guide for http on go
go-iris-guide
URI: https://docs.sentry.io/platforms/go/guides/iris/
MIME: text/markdown
Sentry integration guide for iris on go
go-logrus-guide
URI: https://docs.sentry.io/platforms/go/guides/logrus/
MIME: text/markdown
Sentry integration guide for logrus on go
go-negroni-guide
URI: https://docs.sentry.io/platforms/go/guides/negroni/
MIME: text/markdown
Sentry integration guide for negroni on go
go-slog-guide
URI: https://docs.sentry.io/platforms/go/guides/slog/
MIME: text/markdown
Sentry integration guide for slog on go
go-zerolog-guide
URI: https://docs.sentry.io/platforms/go/guides/zerolog/
MIME: text/markdown
Sentry integration guide for zerolog on go
php-laravel-guide
URI: https://docs.sentry.io/platforms/php/guides/laravel/
MIME: text/markdown
Sentry integration guide for laravel on php
php-symfony-guide
URI: https://docs.sentry.io/platforms/php/guides/symfony/
MIME: text/markdown
Sentry integration guide for symfony on php
ruby-delayed_job-guide
URI: https://docs.sentry.io/platforms/ruby/guides/delayed_job/
MIME: text/markdown
Sentry integration guide for delayed_job on ruby
ruby-rack-guide
URI: https://docs.sentry.io/platforms/ruby/guides/rack/
MIME: text/markdown
Sentry integration guide for rack on ruby
ruby-rails-guide
URI: https://docs.sentry.io/platforms/ruby/guides/rails/
MIME: text/markdown
Sentry integration guide for rails on ruby
ruby-resque-guide
URI: https://docs.sentry.io/platforms/ruby/guides/resque/
MIME: text/markdown
Sentry integration guide for resque on ruby
ruby-sidekiq-guide
URI: https://docs.sentry.io/platforms/ruby/guides/sidekiq/
MIME: text/markdown
Sentry integration guide for sidekiq on ruby
android-kotlin-guide
URI: https://docs.sentry.io/platforms/android/guides/kotlin/
MIME: text/markdown
Sentry integration guide for kotlin on android
apple-ios-guide
URI: https://docs.sentry.io/platforms/apple/guides/ios/
MIME: text/markdown
Sentry integration guide for ios on apple
apple-macos-guide
URI: https://docs.sentry.io/platforms/apple/guides/macos/
MIME: text/markdown
Sentry integration guide for macos on apple
apple-watchos-guide
URI: https://docs.sentry.io/platforms/apple/guides/watchos/
MIME: text/markdown
Sentry integration guide for watchos on apple
apple-tvos-guide
URI: https://docs.sentry.io/platforms/apple/guides/tvos/
MIME: text/markdown
Sentry integration guide for tvos on apple
apple-visionos-guide
URI: https://docs.sentry.io/platforms/apple/guides/visionos/
MIME: text/markdown
Sentry integration guide for visionos on apple
kotlin-multiplatform-guide
URI: https://docs.sentry.io/platforms/kotlin/guides/multiplatform/
MIME: text/markdown
Sentry integration guide for multiplatform on kotlin