create_project
Create a new project in Sentry MCP, providing a unique SENTRY_DSN for error tracking. Define project name, team, platform, and organization for effective monitoring setup.
Instructions
Create a new project in Sentry, giving you access to a new SENTRY_DSN.
Use this tool when you need to:
Create a new project in a Sentry organization
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | The name of the project to create. Typically this is commonly the name of the repository or service. It is only used as a visual label in Sentry. | |
organizationSlug | No | The organization's slug. This will default to the first org you have access to. | |
platform | No | The platform for the project (e.g., python, javascript, react, etc.) | |
teamSlug | Yes | The team's slug. This will default to the first team you have access to. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "The name of the project to create. Typically this is commonly the name of the repository or service. It is only used as a visual label in Sentry.",
"type": "string"
},
"organizationSlug": {
"description": "The organization's slug. This will default to the first org you have access to.",
"type": "string"
},
"platform": {
"description": "The platform for the project (e.g., python, javascript, react, etc.)",
"type": "string"
},
"teamSlug": {
"description": "The team's slug. This will default to the first team you have access to.",
"type": "string"
}
},
"required": [
"teamSlug",
"name"
],
"type": "object"
}