Skip to main content

Reflex MCP Tools

Tools available in the Reflex MCP server for managing errors.

reflex_list

List errors by status.

Parameters

NameTypeRequiredDescription
statusstringNoFilter: unresolved, resolved, ignored
sincestringNoTime range (default: 7d)
limitnumberNoMax results (default: 20)

Examples

“What unresolved errors do we have?”
reflex_list(status: "unresolved")
“Show me errors from the last 24 hours”
reflex_list(since: "24h")

reflex_show

Get details about a specific error.

Parameters

NameTypeRequiredDescription
error_idstringYesThe error ID

Examples

“Tell me more about error err_abc123”
reflex_show(error_id: "err_abc123")
Search errors by message or type.

Parameters

NameTypeRequiredDescription
querystringYesSearch query
sincestringNoTime range

Examples

“Find payment-related errors”
reflex_search(query: "payment")
“Search for timeout errors”
reflex_search(query: "timeout", since: "24h")

reflex_resolve

Mark an error as resolved.

Parameters

NameTypeRequiredDescription
error_idstringYesThe error ID
notestringNoResolution note

Examples

“Resolve the PaymentError - we deployed a fix”
reflex_resolve(error_id: "err_abc123", note: "Fixed in deploy abc123")

reflex_ignore

Ignore an error (stop alerts).

Parameters

NameTypeRequiredDescription
error_idstringYesThe error ID
reasonstringNoReason for ignoring
durationstringNoHow long: forever, 24h, 7d

Examples

“Ignore this error, it’s a known issue”
reflex_ignore(error_id: "err_abc123", reason: "Known issue, will fix later")

reflex_unresolve

Reopen a resolved error.

Parameters

NameTypeRequiredDescription
error_idstringYesThe error ID

Examples

“Reopen the PaymentError, it’s happening again”
reflex_unresolve(error_id: "err_abc123")

reflex_stats

Get error statistics.

Parameters

NameTypeRequiredDescription
sincestringNoTime range (default: 7d)

Examples

“How many errors this week?“
reflex_stats(since: "7d")

reflex_events

Get occurrences of an error.

Parameters

NameTypeRequiredDescription
error_idstringYesThe error ID
limitnumberNoMax results

Examples

“Show me recent occurrences of this error”
reflex_events(error_id: "err_abc123", limit: 10)