tacticalrmm-mcp-server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| TACTICALRMM_API_KEY | Yes | TacticalRMM API key, sent as X-API-KEY | |
| TACTICALRMM_BASE_URL | Yes | Base URL of your TacticalRMM API host, e.g. https://api.your-instance.example.com | |
| TACTICALRMM_TIMEOUT_MS | No | HTTP request timeout in milliseconds | 30000 |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| tacticalrmm_get_server_infoA | Read TacticalRMM server version and dashboard information from /core/version/ and /core/dashinfo/. |
| tacticalrmm_list_clientsA | List clients visible to the TacticalRMM API key from /clients/. This tool is read-only. |
| tacticalrmm_list_agentsA | List agents visible to the TacticalRMM API key from /agents/ with optional client, site, monitoring_type, and detail filters. |
| tacticalrmm_get_agentA | Get one TacticalRMM agent record by agent_id from /agents//. This tool is read-only. |
| tacticalrmm_list_agent_softwareA | List software inventory for a TacticalRMM agent from /software//. This tool is read-only. |
| tacticalrmm_list_sitesB | List TacticalRMM sites from /clients/sites/. This tool is read-only. |
| tacticalrmm_list_agent_servicesA | List Windows service inventory for an agent from /services//. This tool is read-only. |
| tacticalrmm_list_win_updatesA | List Windows Update inventory for an agent from /winupdate//. This tool is read-only and does not scan or install updates. |
| tacticalrmm_list_alertsA | List TacticalRMM alerts from /alerts/. This tool is read-only; TacticalRMM expects a PATCH query for alert filters. |
| tacticalrmm_list_checksB | List TacticalRMM checks from /checks/. This tool is read-only. |
| tacticalrmm_list_agent_checksA | List checks assigned to one TacticalRMM agent from /agents//checks/. This tool is read-only. |
| tacticalrmm_get_check_historyA | Read history for one TacticalRMM check from /checks//history/. This tool is read-only. |
| tacticalrmm_list_tasksA | List TacticalRMM automated tasks from /tasks/. This tool is read-only and does not run tasks. |
| tacticalrmm_list_agent_tasksA | List automated tasks assigned to one TacticalRMM agent from /agents//tasks/. This tool is read-only. |
| tacticalrmm_list_scriptsA | List scripts from the TacticalRMM script library at /scripts/. This tool is read-only and does not run scripts. |
| tacticalrmm_list_policiesA | List automation policies from /automation/policies/. This tool is read-only. |
| tacticalrmm_list_agent_historyA | List history for one TacticalRMM agent from /agents//history/. This tool is read-only. |
| tacticalrmm_list_agent_notesA | List notes for one TacticalRMM agent from /agents//notes/. This tool is read-only. |
| tacticalrmm_list_pending_actionsA | List global pending actions from /logs/pendingactions/. This tool is read-only. |
| tacticalrmm_list_agent_pending_actionsA | List pending actions for one TacticalRMM agent from /agents//pendingactions/. This tool is read-only. |
| tacticalrmm_get_custom_fieldsA | List TacticalRMM custom fields from /core/customfields/. This tool is read-only. |
| tacticalrmm_get_audit_logsA | Query TacticalRMM audit logs from /logs/audit/. This is a read-only audit-log query; TacticalRMM examples use a PATCH request body for filters. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 22 tools
Each tool targets a distinct resource type (server info, clients, agents, sites, software, services, Windows updates, alerts, checks, tasks, scripts, policies, history, notes, pending actions, custom fields, audit logs). The only potential overlap is list_agents vs get_agent, but the singular vs plural and argument requirement make them clearly different.
All 22 tools follow a consistent tacticalrmm_<verb>_<object> pattern using snake_case and only two verbs (get and list). This uniformity makes tool names highly predictable and easy to navigate.
22 tools is slightly above the ideal 3-15 range, but the broad scope of TacticalRMM resources justifies the number. The set could feel repetitive since all tools are read-only list/get operations, but each endpoint is distinct and relevant to the domain.
The tool set is entirely read-only, offering no create, update, delete, execute, or run operations. For an RMM platform, this is a significant gap that prevents agents from taking management actions, limiting the server's usefulness beyond monitoring and reporting.