sentry-mcp
Verified Safeby getsentry
Overview
The Sentry Model Context Protocol (MCP) server is designed as middleware to the Sentry API, optimized for human-in-the-loop coding agents and AI assistants (like Cursor, Claude Code) to facilitate developer workflows and debugging use cases.
Installation
npx @sentry/mcp-server@latest --access-token=<YOUR_SENTRY_TOKEN_HERE>Environment Variables
- OPENAI_API_KEY
- SENTRY_ACCESS_TOKEN
- SENTRY_HOST
- SENTRY_CLIENT_ID
- SENTRY_CLIENT_SECRET
- COOKIE_SECRET
- MCP_URL
- MCP_SKILLS
- SENTRY_DSN
- LOG_LEVEL
- OPENAI_MODEL
- OPENAI_REASONING_EFFORT
Security Notes
The project uses robust OAuth and token encryption for handling Sentry API credentials, which is a strong positive. It explicitly avoids logging API keys. However, the `biome.json` configuration permits `noExplicitAny` and `noDangerouslySetInnerHtml`, which can introduce vulnerabilities if not meticulously managed. While `sanitizeHtml` is used in some web rendering contexts (Cloudflare app), the `noExplicitAny` can hide potential type-related security flaws in a complex codebase integrating multiple APIs and LLMs.
Similar Servers
XcodeBuildMCP
A Model Context Protocol (MCP) server that provides Xcode-related tools for AI assistants, enabling programmatic interaction with Xcode projects, simulators, devices, and Swift packages.
awesome-mcp-devtools
This repository provides a curated list of developer tools, SDKs, frameworks, libraries, utilities, and resources for working with Model Context Protocol (MCP) servers.
mcpc
A framework for building agentic Model Context Protocol (MCP) servers by composing existing MCP tools. It enables the creation of portable, interoperable AI agents with flexible execution modes and robust logging/tracing capabilities.
mcp-ai-agent-guidelines
A comprehensive framework for building, orchestrating, and validating AI agents and their design processes, with a strong focus on code quality, security, and prompt engineering.