Sentry MCP Server

setup_sentry

Set up Sentry for a project returning a dsn and instructions for setup.

Input Schema

NameRequiredDescriptionDefault
environmentNoOptional environment name (e.g., production, staging, development)
formatNoOutput format (default: markdown)markdown
organization_slugYesThe slug of the organization to create the project in
project_nameYesThe name of the project to create
team_slugYesThe slug of the team to associate the project with

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "environment": { "description": "Optional environment name (e.g., production, staging, development)", "type": "string" }, "format": { "default": "markdown", "description": "Output format (default: markdown)", "enum": [ "plain", "markdown" ], "type": "string" }, "organization_slug": { "description": "The slug of the organization to create the project in", "type": "string" }, "project_name": { "description": "The name of the project to create", "type": "string" }, "team_slug": { "description": "The slug of the team to associate the project with", "type": "string" } }, "required": [ "organization_slug", "team_slug", "project_name" ], "type": "object" }