Sentry MCP Server
Description
# Sentry MCP Server This is a Machine Control Protocol (MCP) server for interacting with Sentry's API. ## Prerequisites - Node.js (v16 or higher) - npm or yarn - A Sentry account with API access ## Setup - 1 Install dependencies: ```bash npm install ``` - 2 Configure Codeium…
About
# Sentry MCP Server This is a Machine Control Protocol (MCP) server for interacting with Sentry's API. ## Prerequisites - Node.js (v16 or higher) - npm or yarn - A Sentry account with API access ## Setup - 1 Install dependencies: ```bash npm install ``` - 2 Configure Codeium MCP: - Add the following configuration to…
Details
- Author
- MaximilianoGarciaRoe
- Downloads
- 104
- Categories
- Developer Tools
Jump to
- Enables AI to call Sentry’s API via MCP
- Provides get_sentry_issue command for issue retrieval
- Requires only a Sentry auth token and organization slug
- Simple setup with Codeium MCP configuration
- Uses Node.js (v16 or higher) and TypeScript
Install dependencies with npm install, then configure your Codeium MCP config file (~/.codeium/windsurf/mcp_config.json) with the server command, path to main.ts, and environment variables SENTRY_AUTH_TOKEN and SENTRY_ORG. The server starts automatically when Codeium needs it; available commands include get_sentry_issue.
Sentry MCP Server
This is a Machine Control Protocol (MCP) server for interacting with Sentry's API.
Prerequisites
- Node.js (v16 or higher)
- npm or yarn
- A Sentry account with API access
Setup
- 1 Install dependencies:
npm install
- 2 Configure Codeium MCP:
- Add the following configuration to your Codeium MCP config file (~/.codeium/windsurf/mcp_config.json):
{
"mcpServers": {
"sentry": {
"command": "npx",
"args": [
"-y",
"tsx",
"/path/to/sentry_mcp/main.ts"
],
"env": {
"SENTRY_AUTH_TOKEN": "your_auth_token",
"SENTRY_ORG": "your_organization_slug"
}
}
}
}
Usage
The MCP server will be automatically started by Codeium when needed. Available commands:
- get_sentry_issue: Retrieve information about a specific Sentry issue by ID or URL
Development
To run the server locally for development:
npm start
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.





