Reflex MCP Tools
Tools available in the Reflex MCP server for managing errors.reflex_list
List errors by status.Parameters
| Name | Type | Required | Description |
|---|---|---|---|
status | string | No | Filter: unresolved, resolved, ignored |
since | string | No | Time range (default: 7d) |
limit | number | No | Max results (default: 20) |
Examples
“What unresolved errors do we have?”
“Show me errors from the last 24 hours”
reflex_show
Get details about a specific error.Parameters
| Name | Type | Required | Description |
|---|---|---|---|
error_id | string | Yes | The error ID |
Examples
“Tell me more about error err_abc123”
reflex_search
Search errors by message or type.Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | Yes | Search query |
since | string | No | Time range |
Examples
“Find payment-related errors”
“Search for timeout errors”
reflex_resolve
Mark an error as resolved.Parameters
| Name | Type | Required | Description |
|---|---|---|---|
error_id | string | Yes | The error ID |
note | string | No | Resolution note |
Examples
“Resolve the PaymentError - we deployed a fix”
reflex_ignore
Ignore an error (stop alerts).Parameters
| Name | Type | Required | Description |
|---|---|---|---|
error_id | string | Yes | The error ID |
reason | string | No | Reason for ignoring |
duration | string | No | How long: forever, 24h, 7d |
Examples
“Ignore this error, it’s a known issue”
reflex_unresolve
Reopen a resolved error.Parameters
| Name | Type | Required | Description |
|---|---|---|---|
error_id | string | Yes | The error ID |
Examples
“Reopen the PaymentError, it’s happening again”
reflex_stats
Get error statistics.Parameters
| Name | Type | Required | Description |
|---|---|---|---|
since | string | No | Time range (default: 7d) |
Examples
“How many errors this week?“
reflex_events
Get occurrences of an error.Parameters
| Name | Type | Required | Description |
|---|---|---|---|
error_id | string | Yes | The error ID |
limit | number | No | Max results |
Examples
“Show me recent occurrences of this error”