promptDefinitions.json•1.64 kB
[
{
"name": "find_errors_in_file",
"description": "Use this prompt when you need to find errors in Sentry for a given file.",
"inputSchema": {
"type": "object",
"properties": {
"organizationSlug": {
"type": "string",
"description": "The organization's slug. You can find a existing list of organizations you have access to using the `find_organizations()` tool."
},
"filename": {
"type": "string",
"description": "The filename to search for errors in."
}
},
"required": ["organizationSlug", "filename"],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}
},
{
"name": "fix_issue_with_seer",
"description": "Use this prompt when you need to fix an issue with Seer.\nYou can pass in either an `issueId` and `organizationSlug`, or an `issueUrl`.",
"inputSchema": {
"type": "object",
"properties": {
"organizationSlug": {
"type": "string",
"description": "The organization's slug. You can find a existing list of organizations you have access to using the `find_organizations()` tool."
},
"issueId": {
"type": "string",
"description": "The Issue ID. e.g. `PROJECT-1Z43`"
},
"issueUrl": {
"type": "string",
"format": "uri",
"description": "The URL of the issue. e.g. https://my-organization.sentry.io/issues/PROJECT-1Z43"
}
},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}
}
]