Tool reference
Every tool takesapp_name and app_environment to identify which application to target. Both are matched case-insensitively, so MyApp/Production and myapp/production resolve to the same application. If the name doesn’t match an application you can access, the tool returns an error that lists the applications available to you, so the agent can retry with a valid name.
App discovery
get_applications
Get all AppSignal applications the user has access to.
Returns applications in app_name/app_environment format. Use this first to discover available applications before calling other tools.
No parameters required.
get_app_resources
Discover available resources in an AppSignal application — namespaces, dashboards, users, notifiers, log sources, log line actions, deploy markers, and uptime monitors.
Particularly useful when setting up triggers, assigning incidents, or understanding the structure of an application.
The
deploy_markers section returns up to 100 recent deploys, each with its full revision and the time range it was live. Narrow it with deploy_marker_namespace or deploy_marker_revision. To find the errors a deploy introduced, pass its revision to get_exception_incidents (or use revision: "last" for the most recent deploy).
The uptime_monitors section lists each monitored URL and its settings. Uptime itself is not stored — it is computed from metrics, so query the uptime_monitor_error_count counter with get_metrics_timeseries to calculate it.
Error incidents
get_exception_incidents
List and search AppSignal exceptions and errors.
Use this to get an overview of recent exceptions, search within a time period, find incidents by state, or check which incidents need attention. Returns 50 incidents per page.
get_incident
Get detailed information about an AppSignal incident.
Returns current state, assignment, first and last occurrence, error messages, stack traces, or anomaly alert details. Supports exception and anomaly incidents.
update_incidents
Bulk update incidents for an AppSignal application.
Use this to change incident state, update severity, or assign and unassign team members across multiple incidents at once. Use get_app_resources with sections: ["users"] to find user IDs for assignment.
manage_incident_note
Create or update a note on an AppSignal incident. Markdown is supported.
Use this to add comments, status updates, investigation findings, or resolution steps. Include a full GitHub issue URL in the note to link that issue to the incident, when the app has GitHub configured.
This tool was previously named
create_incident_note. The old name still works as an alias, so existing prompts and configurations keep working.Performance
get_performance
Performance overview: sample-based performance traces and slow actions from traces.
For standard Ruby and Elixir apps, returns sample-based performance traces. For apps that also send OpenTelemetry traces, additionally returns a ranked list of actions with mean duration, throughput, and error rate. Apps being migrated to OpenTelemetry may return both.
Follow-up tools: use get_incident to inspect a specific performance incident, get_traces to pull traces for a slow action, and update_incidents to change state, severity, or assignees.
get_traces
Query performance and error traces, inspect span trees, and view span details.
Supports two trace types:
- Performance traces — identified by namespace and
action_name. Use these to investigate slow requests. - Error traces — identified by digest. Get the digest from
get_incidentorget_exception_incidents, then use it here to see the actual error traces.
- List mode — find traces and get trace IDs. Provide namespace +
action_name, ordigest. - Tree mode — pass a
trace_idto see all spans as a compact tree. - Span detail mode — pass
trace_idandspan_idfor full span attributes, events, and resource info.
Anomaly detection
get_anomaly_incidents
List and search AppSignal anomaly detection alerts.
Returns 50 alerts per page, including timestamps and values for each alert.
get_triggers
List anomaly detection triggers for an AppSignal application.
Returns active (non-archived) triggers with their complete configuration — conditions, notifiers, and dashboard links. Use this to find trigger IDs before calling manage_trigger or archive_trigger.
manage_trigger
Create or update an anomaly detection trigger.
Triggers are immutable. When you update a trigger, AppSignal archives the existing one (closing all its alerts and incidents) and creates a new one with a version chain reference. Provide all fields for both create and update operations.
Use get_metric_names and get_metric_tags to discover available metrics and fields. Use get_app_resources(sections: ["notifiers"]) to find notifier IDs.
archive_trigger
Archive an anomaly detection trigger and close all associated alerts and incidents.
Idempotent — no-ops if the trigger is already archived. Use get_triggers to find the trigger ID.
Logging
get_log_lines
Query log lines using AppSignal’s expression syntax.
Supports exact match, contains, negation, numeric comparisons, boolean logic, and nested attributes. Returns up to 100 lines per call, newest-first by default. For large time ranges, split into multiple calls and iterate forward.
Query syntax:
Available fields:
severity, hostname, group, message, and any custom attributes.
manage_log_line_action
Create or update a log line action.
Log line actions run during log ingestion, in the order you define. There are three types:
- filter — discards matching log lines so they are never stored or processed further
- trigger — fires alerts and incidents when the query matches
- metrics — extracts counter, gauge, or distribution metrics from matching log lines
reorder_log_line_actions to change the order after creation.
New actions are appended at the end of the execution order.
reorder_log_line_actions
Change the execution order of log line actions.
Provide action IDs in the desired sequence. Any action IDs not included are appended at the end in their current relative order. Use get_app_resources(sections: ["log_line_actions"]) to find IDs and see the current order.
delete_log_line_action
Permanently delete a log line action.
Use get_app_resources(sections: ["log_line_actions"]) to find the action ID first.
Metrics
discover_metrics
Discover available metric categories and their metrics for monitoring.
Use this to get an overview of what you can monitor, or drill into a specific category. Also accepts a dashboard:id reference to show metrics used in a specific dashboard.
get_metric_names
Get the names of all metrics for the given application.
Returns metric names as a comma-separated string. Use these as input to get_metric_tags, get_metrics_timeseries, and get_metrics_list.
get_metric_tags
Get the tags and metric type (Gauge, Counter, etc.) for a specific metric.
Use the results to build valid queries with get_metrics_timeseries and get_metrics_list.
get_metrics_timeseries
Get a timeseries for a metric in the given application.
Returns point-by-point data for a given time range, metric type, and tag combination. Tag values support wildcard matching with *.
get_metrics_list
Get an aggregated value for a metric over a time range.
Returns a single aggregated value rather than a point-by-point timeseries. Useful for summary views.
Dashboards
manage_dashboard
Create or update an AppSignal dashboard.
This tool manages dashboard metadata only (title and description). Use create_dashboard_visual and update_dashboard_visual to add charts.
create_dashboard_visual
Add a new chart to an existing dashboard. Two visual types are available:
timeseries(default) — a line or area graph plotting one or more metrics over time.number— a Big Number tile showing a single aggregated metric, useful for a total, the latest reading, or a mean at a glance.
discover_metrics or get_metrics_list to find available metrics first.
These parameters apply to both visual types:
These parameters apply to
timeseries visuals only:
These parameters apply to
number visuals only:
A Big Number tile takes one metric and one aggregation across the dashboard’s selected time range. Ask for it in plain language:
Text
create_dashboard_visual call:
update_dashboard_visual
Update an existing chart on a dashboard. This works for both timeseries and Big Number visuals — the type is read from the existing visual, so you don’t pass type.
All fields are optional except the identifiers, and unspecified fields keep their current values. Passing metrics or metric replaces the whole metric definition on that visual rather than merging into it.
Token permissions
Each MCP token has configurable permissions by toolset:app, exceptions, performance, metrics, anomalies, dashboards, logging. Each toolset can be set to read, write, or disabled.
Tokens can also be scoped to specific applications and set to automatically expose new tools as they are added. For the steps to create one, see Authentication.
Missing a tool?
Alongside the toolsets above, AppSignal MCP exposesget_more_tools, a discovery and feedback tool. It unlocks no hidden tools today. Instead, it confirms the current tool list and logs what you asked for, so the AppSignal team can see which capabilities people reach for.
get_more_tools takes two parameters:
Most agents won’t reach for it on their own, so ask explicitly:
“Use the AppSignal
get_more_tools tool to look for a way to bulk-export incidents to CSV.”
The server replies that the full tool list is already shown and that your request was logged against your account and organization. Nothing new is returned to the agent — the value is the logged request.