action1-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@action1-mcpwhich endpoints are missing updates?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
action1-mcp
MCP server for the Action1 RMM REST API. Gives Claude (or any other MCP client) read-only access to endpoints, missing updates, vulnerabilities, installed software, policies, automations and reports.
Unofficial — not affiliated with or endorsed by Action1 Corporation.
Why read-only
Action1's write surface deploys software and runs scripts on managed endpoints. That is remote code execution across a whole fleet, and it is not something to put behind a bearer token and a language model on day one. v1 exposes GETs only, and the guarantee is enforced in the HTTP client itself — not merely by the absence of write tools. See docs/ARCHITECTURE.md for the write tiers planned for v2 and SECURITY.md for the threat model.
Related MCP server: readonly-mcp-akamai
Quick start
git clone https://github.com/molnkontakt/action1-mcp.git
cd action1-mcp
python3 -m venv .venv && source .venv/bin/activate
pip install -e ".[dev]"
# Credentials from the Action1 console: Configuration → API Credentials
export ACTION1_CLIENT_ID=...
export ACTION1_CLIENT_SECRET=...
export ACTION1_REGION=NorthAmerica # or Europe / Australia / NA-2
export ACTION1_DEFAULT_ORG_ID=... # optional, saves passing org_id everywhere
action1-mcp # stdio transportWire it into Claude Code:
claude mcp add action1 --transport stdio --command action1-mcpShared HTTP server
One long-lived process instead of one per client session:
export ACTION1_MCP_BEARER="$(openssl rand -base64 36 | tr -d '=+/' | cut -c1-48)"
action1-mcp --transport http --host 127.0.0.1 --port 3002{
"mcpServers": {
"action1": {
"type": "http",
"url": "https://mcp.example.com/action1/mcp",
"headers": { "Authorization": "Bearer <ACTION1_MCP_BEARER>" }
}
}
}Bind loopback and put a TLS-terminating reverse proxy in front. The server
refuses to bind a non-loopback address when ACTION1_MCP_BEARER is unset, but
that check is a backstop, not a deployment plan — see
docs/DEPLOY.md.
Configuration
Variable | Default | Purpose |
| — | Required. API credential from the Action1 console |
| — | Required. |
|
|
|
| unset | Org used when a tool is called without |
| unset | Bearer token required by the HTTP transport |
|
| Local throttle; Action1's ceiling is 30/min per tenant |
|
| Cap on items one tool call will page through |
|
| Items per API request |
|
| Per-request timeout |
|
| Retries after a rate-limit response |
|
| Unblocks non-GET requests. No write tools exist in v1 |
Tools
21 read tools — see docs/TOOLS.md for the full reference.
Area | Tools |
Identity |
|
Tenant |
|
Endpoints |
|
Patching |
|
Vulnerabilities |
|
Automation |
|
Reports |
|
Every list tool returns the same envelope:
{"items": [...], "returned": 200, "total_items": 1432, "truncated": true}truncated: true means the cap stopped the walk before the data ran out. The
list is a prefix, not the whole set — narrow the query rather than concluding
from a partial answer.
Rate limiting
Action1 counts requests per enterprise, across every endpoint and every
integration hitting the tenant — so this server shares its budget with your
PowerShell scripts and any other tooling. It throttles locally below the
documented ceiling rather than discovering it through 429s, and when one arrives
anyway it honours the retry_after the API returns before falling back to
exponential backoff.
Development
pytest # no network: every request is served by an httpx MockTransport
ruff check .
mypy srcLicense
Apache-2.0. Provided as is; review before pointing it at a production tenant.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
AlicenseAqualityCmaintenanceRead-only MCP server that allows AI assistants to query and monitor KVM Fleet devices, audit logs, and console sessions through the official REST API.5111MIT- AlicenseAqualityDmaintenanceRead-only MCP server for Akamai CDN that enables searching properties, browsing EdgeWorker code, querying DNS zones, inspecting network lists, and translating error codes via natural language.161MIT
- Flicense-qualityCmaintenanceMCP server that exposes Acronis Cyber Protect Cloud APIs as 14 read-only tools for managing alerts, tasks, agents, resources, policies, and tenants.
- AlicenseAqualityCmaintenanceRead-only MCP server for the SentinelOne management API, exposing sites, endpoint agents, threats, and activity logs with aggregation tools for MSP/MSSP reporting.6172MIT
Related MCP Connectors
Read-only MCP server for ClassQuill, a tutoring-business-management platform.
Read-only Dant3 MCP for public rooms, agents, jobs and provisional machine onboarding.
Read-only MCP access to sessions, funnels, campaigns, errors, live visitors, and anomalies.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/molnkontakt/action1-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server