get_honeybadger_notices
Retrieve and analyze error notices for a specific fault using the Honeybadger MCP Server. Input a fault ID and optional project ID to fetch relevant error occurrences, aiding in debugging and issue resolution.
Instructions
Fetch notices (occurrences) for a specific fault
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fault_id | Yes | The ID of the fault to fetch notices for | |
limit | No | Number of notices to fetch (default: 10, max: 100) | |
project_id | No | Optional project ID (uses env var if not provided) |
Input Schema (JSON Schema)
{
"properties": {
"fault_id": {
"description": "The ID of the fault to fetch notices for",
"type": "string"
},
"limit": {
"default": 10,
"description": "Number of notices to fetch (default: 10, max: 100)",
"type": "number"
},
"project_id": {
"description": "Optional project ID (uses env var if not provided)",
"type": "string"
}
},
"required": [
"fault_id"
],
"type": "object"
}