Sentry MCP Server

create_project

Create a new project in Sentry. Track deployments, releases, and health metrics.

Input Schema

NameRequiredDescriptionDefault
formatNoOutput format (default: markdown)markdown
nameYesThe name of the project to create
organization_slugYesThe slug of the organization to create the project in
platformNoThe platform for the project (e.g., python, javascript, etc.)
team_slugYesThe slug of the team to associate the project with
viewNoView type (default: detailed)detailed

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "format": { "default": "markdown", "description": "Output format (default: markdown)", "enum": [ "plain", "markdown" ], "type": "string" }, "name": { "description": "The name of the project to create", "type": "string" }, "organization_slug": { "description": "The slug of the organization to create the project in", "type": "string" }, "platform": { "description": "The platform for the project (e.g., python, javascript, etc.)", "type": "string" }, "team_slug": { "description": "The slug of the team to associate the project with", "type": "string" }, "view": { "default": "detailed", "description": "View type (default: detailed)", "enum": [ "summary", "detailed" ], "type": "string" } }, "required": [ "organization_slug", "team_slug", "name" ], "type": "object" }