sentry_create_project
Create a new Sentry project to monitor deployments, releases, and application health metrics. Specify project name, slug, platform, and team for effective tracking.
Instructions
Create a new project in Sentry. Track deployments, releases and health metrics.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Project name | |
platform | No | Platform (e.g., 'javascript', 'python', 'node') | |
slug | Yes | Project slug (URL-friendly identifier) | |
team | Yes | Team slug |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "Project name",
"type": "string"
},
"platform": {
"description": "Platform (e.g., 'javascript', 'python', 'node')",
"type": "string"
},
"slug": {
"description": "Project slug (URL-friendly identifier)",
"type": "string"
},
"team": {
"description": "Team slug",
"type": "string"
}
},
"required": [
"name",
"slug",
"team"
],
"type": "object"
}