a360-mcp
MCP server for Automation Anywhere Automation 360 (A360) Control Room — bot logic analysis and execution failure diagnostics.
Community project. Not affiliated with or endorsed by Automation Anywhere, Inc. "Automation Anywhere" and "Automation 360" are trademarks of their respective owner.
What it is for
A bot ran. It died. Which action, why, and what was missing upstream?
This server pulls the failed execution from the Control Room, pulls the bot's logic, and
maps one onto the other — so the answer is "action 37, Open Excel, file not found; there
is no existence check before it and no error handler around it" rather than a status code.
What it is not
Automation Anywhere ships MCP Inbound (https://<control-room>/mcp) from v.38, which
exposes bots as tools so an assistant can run them. If running bots is what you need,
use the vendor feature — it has RBAC, governance logging, and per-automation registration.
It does not read execution history, bot logic, WLM queues, or audit logs. That is this project's scope. The two are complementary.
Status
Beta. Diagnostic pipeline (diagnose_execution), bot logic walker, and snapshot store are
implemented and unit-tested (647 tests). Writes are opt-in and gated. Not yet validated
against a live Control Room instance — the A360 filter operator set and bot JSON node
schema are permissive parsers, awaiting field verification.
Requirements
- Python 3.11+
- An Automation 360 Control Room account with an API key
(needs a custom role carrying
Generate API-Key— no system role has it by default) - Read privileges on the bots you want to diagnose (
View my bots)
Setup
The default is uvx — no separate install step, it just runs.
# Install uv (one-time)
# macOS / Linux
curl -LsSf https://astral.sh/uv/install.sh | sh
# Windows PowerShell
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
# Verify the server runs
uvx --from a360-mcp a360-mcp --version
To update — uvx caches the last version; pull new releases with --refresh:
uvx --refresh --from a360-mcp a360-mcp --version
If uvx is blocked — pip
Windows Smart App Control blocks uvx (it unpacks an unsigned temporary executable on
every run). Use pip instead:
pip install a360-mcp
python -m a360_mcp --version
Launch with python -m a360_mcp rather than the a360-mcp console script — that script is
an unsigned .exe shim pip generates, and SAC blocks it too.
MCP client configuration
Add the server to your client's config file. The env block is identical no matter how
you installed — only command / args differ.
| Install | command |
args |
|---|---|---|
| uvx (default) | uvx |
["--from","a360-mcp","a360-mcp"] |
| pip | python |
["-m","a360_mcp"] |
Required env vars:
| Variable | Meaning |
|---|---|
A360_CONTROL_ROOM_URL |
Control Room base URL (e.g. https://cr.example.com) |
A360_USERNAME |
Service account username |
A360_API_KEY or A360_PASSWORD |
One of the two — mutually exclusive |
Claude Code
.mcp.json (project root) or ~/.claude.json (global):
{
"mcpServers": {
"a360": {
"command": "uvx",
"args": ["--from", "a360-mcp", "a360-mcp"],
"env": {
"A360_CONTROL_ROOM_URL": "https://cr.example.com",
"A360_USERNAME": "svc_mcp",
"A360_API_KEY": "${A360_API_KEY}"
}
}
}
}
Codex
.codex/config.toml (project) or ~/.codex/config.toml (global):
[mcp_servers.a360]
command = "uvx"
args = ["--from", "a360-mcp", "a360-mcp"]
# pip: command = "python" / args = ["-m", "a360_mcp"]
[mcp_servers.a360.env]
A360_CONTROL_ROOM_URL = "https://cr.example.com"
A360_USERNAME = "svc_mcp"
A360_API_KEY = "${A360_API_KEY}"
OpenCode
opencode.json (project root):
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"a360": {
"type": "local",
"command": ["uvx", "--from", "a360-mcp", "a360-mcp"],
"enabled": true,
"environment": {
"A360_CONTROL_ROOM_URL": "https://cr.example.com",
"A360_USERNAME": "svc_mcp",
"A360_API_KEY": "${A360_API_KEY}"
}
}
}
}
${ENV} reference
The CLI expands ${VAR} as a full value only — A360_API_KEY=${A360_API_KEY} resolves
to the value of the A360_API_KEY env var at startup. Partial references like
${ENV}_suffix are rejected to prevent silent misconfiguration.
Tools
The server exposes a layered tool set, gated by A360_TOOL_PACKAGE (default core):
| Package | Includes | Use case |
|---|---|---|
core |
get_execution, list_executions, get_bot_actions |
Read-only triage |
bot_read |
same as core |
Bot content reads (deeper reads land later) |
log_read |
same as core |
Audit/log reads (deeper reads land later) |
diagnose |
core + diagnose_execution |
Default for most workflows |
browser_read |
diagnose + inspect_console / inspect_network / screenshot_debug / get_computed_style | Read-only browser diagnostics (Playwright optional) |
browser |
browser_read + open_debug_window / close_debug_window | Full browser layer (consumes a session slot) |
full |
everything | No gating |
Set with A360_TOOL_PACKAGE=diagnose (env) or --tool-package diagnose (CLI).
Headline tool: diagnose_execution
Given an execution ID, returns a verdict-first diagnosis:
- Fetch the execution (
GET /v3/activity/execution/{id}). - If the status is not failure-family, return a one-line verdict immediately.
- Feature-detect the
errorkey, fall back to parsingmessage. - Fetch the bot logic (
GET /v2/repository/files/{fileId}/content). - Walk action nodes (iterative DFS, no recursion).
- Map the failure onto a node by line number.
- Pull upstream / downstream context and Try/Catch presence.
- If no Try/Catch, emit an instrumentation prescription ("place
Catchwith line number + exception message assignments, log to server, screen capture inside"). - Snapshot the diagnosis locally (90-day CR retention fallback).
Bot JSON never enters the model context — only the parsed action surface and a disk path.
Authentication
The server uses POST /v2/authentication with the X-Authorization: <token> header
(no Bearer prefix). Tokens live 20 minutes; refreshes are serialized under a mutex
because refresh kills the previous token. An account may hold only 5 concurrent
sessions — the token is cached and the optional debug browser window consumes one slot
too.
API key is preferred for service accounts; password is supported but should be paired
with a non-2FA role (the A360 v2 auth request has no mfaCode field).
Safety
- Writes are opt-in per instance —
allow_writesdefaults toFalse. A missing flag never means "writable". - Mutating tools (deploy / publish / update / delete / create / cancel / stop / upload
/ rename / move / checkout / checkin, plus the browser window tools) require
approve=truein the tool call. - Publish-grade tools (deploy / publish) require an additional
confirm_environment=prodfield, so a single confirmation cannot ship to production. - The browser layer never clicks. It observes console, network, screenshots, and
computed CSS.
inspect_*tools structurally cannot open a window — onlyopen_debug_windowcan. - Fail-open by default for write guards; flip with
A360_WRITE_GUARDS_FAIL=closed. - Diagnosed executions are snapshotted locally on first read — the 90-day cloud retention limit has no backup path otherwise.
Every refusal states the next action. Never refuses without a path forward.
Cloud retention
| Data | Retention |
|---|---|
| Execution history | 90 days |
| Audit log | 180 days (365 in some regions) |
Diagnosed executions are cached under state_dir()/snapshots/{account_key}/ with the
bot logic at time of diagnosis. Re-diagnosing an old execution reads from disk, not the
Control Room, and the response is marked original_expired past 90 days.
Developer setup
git clone https://github.com/jshsakura/a360-mcp.git
cd a360-mcp
uv venv --python 3.12 .venv
uv pip install -e ".[dev]"
# Tests — always run pytest under the memory-cap wrapper, raw pytest has
# killed the local tmux session before.
saferun -m 4G .venv/bin/pytest tests/ -q
# Lint / format / type
.venv/bin/ruff check src tests
.venv/bin/black src tests
.venv/bin/isort src tests
.venv/bin/mypy src
Browser tests are mocked (Playwright is a soft dependency, lazy-imported). To exercise the real browser layer:
uv pip install -e ".[browser]"
playwright install chromium
License
Apache-2.0. See LICENSE.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file a360_mcp-0.1.0.tar.gz.
File metadata
- Download URL: a360_mcp-0.1.0.tar.gz
- Upload date:
- Size: 148.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
31233b5e79ffd72fafb73f75c6a2e6b464f00a46102801359ac4043f406e2cff
|
|
| MD5 |
b9a56ea7ca66ebfb09c83b1827c6f7dc
|
|
| BLAKE2b-256 |
1d96f62583baaaa9ba0f78f7a9cd0ee34b87165ed9bc004156740ae6318588ec
|
Provenance
The following attestation bundles were made for a360_mcp-0.1.0.tar.gz:
Publisher:
ci.yml on jshsakura/a360-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
a360_mcp-0.1.0.tar.gz -
Subject digest:
31233b5e79ffd72fafb73f75c6a2e6b464f00a46102801359ac4043f406e2cff - Sigstore transparency entry: 2365032951
- Sigstore integration time:
-
Permalink:
jshsakura/a360-mcp@df82334ca7bd4d35b1dba0fe72b3e57fa9e471c7 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/jshsakura
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@df82334ca7bd4d35b1dba0fe72b3e57fa9e471c7 -
Trigger Event:
push
-
Statement type:
File details
Details for the file a360_mcp-0.1.0-py3-none-any.whl.
File metadata
- Download URL: a360_mcp-0.1.0-py3-none-any.whl
- Upload date:
- Size: 103.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8178b73c3c0cf75d547f2ea249c4b26f1d32ffa427b414a415a880e8665d9b7a
|
|
| MD5 |
1f3448387b4acfda11d93daa5964ddc6
|
|
| BLAKE2b-256 |
667cf3462826244845d6e245131d7b2dc7da92090a8d88c79e69d12da680d340
|
Provenance
The following attestation bundles were made for a360_mcp-0.1.0-py3-none-any.whl:
Publisher:
ci.yml on jshsakura/a360-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
a360_mcp-0.1.0-py3-none-any.whl -
Subject digest:
8178b73c3c0cf75d547f2ea249c4b26f1d32ffa427b414a415a880e8665d9b7a - Sigstore transparency entry: 2365033105
- Sigstore integration time:
-
Permalink:
jshsakura/a360-mcp@df82334ca7bd4d35b1dba0fe72b3e57fa9e471c7 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/jshsakura
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@df82334ca7bd4d35b1dba0fe72b3e57fa9e471c7 -
Trigger Event:
push
-
Statement type: