aacworkflow-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| AACWORKFLOW_TOKEN | Yes | Your AACWorkflow token (mul_…) | |
| AACWORKFLOW_SERVER_URL | No | Base URL of AACWorkflow server | https://aacworkflow.com |
| AACWORKFLOW_WORKSPACE_ID | No | Optional default workspace ID |
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 |
|---|---|
| whoamiA | Get the authenticated user/account for the current token. |
| list_workspacesA | List the workspaces (companies) this token can access. |
| get_workspaceA | Get one workspace's details. |
| update_workspaceB | Update a workspace's name, description, context, or issue prefix. |
| list_membersB | List members of a workspace. |
| list_runtimesA | List agent runtimes (machines) in the workspace. |
| update_runtimeC | Update a runtime's configuration. |
| get_runtime_usageC | Resource consumption metrics for one runtime. |
| get_runtime_activityC | Activity log for one runtime. |
| list_agentsB | List agents in the workspace. |
| get_agentC | Get full details of one agent. |
| create_agentC | Create an agent on a runtime. Use visibility 'workspace' so all members can use it. |
| update_agentC | Update an agent. |
| list_agent_templatesA | List built-in agent template slugs. |
| create_agent_from_templateB | Create an agent from a template slug. |
| list_agent_tasksC | List tasks an agent has worked on. |
| archive_agentA | Archive an agent (soft-delete; it stops picking up new work). |
| restore_agentB | Restore a previously archived agent. |
| list_agent_skillsB | List skills attached to an agent. |
| attach_skill_to_agentC | Attach a skill to an agent. |
| detach_skill_from_agentB | Detach a skill from an agent. |
| list_skillsA | List skills available in the workspace. |
| get_skillC | Get one skill's details. |
| create_skillC | Create a skill. |
| update_skillD | Update a skill. |
| delete_skillC | Delete a skill. |
| import_skillA | Import a skill from GitHub, ClawHub, or another source URL. |
| list_issuesB | List issues (tasks). Filter by status / assignee / project. |
| get_issueB | Get one issue (task) with full detail. |
| create_issueC | Create a task. Dispatch to an agent with assignee_type='agent' + assignee_id. |
| update_issueC | Update an issue. |
| delete_issueA | Delete an issue. Immediately clears its comments, reactions, and attachments — cannot be undone. |
| assign_issue_to_agentA | Assign an existing issue to an agent (dispatches the task). |
| rerun_issueC | Re-run an issue's agent task. |
| comment_issueC | Add a comment to an issue. |
| list_commentsB | List comments on an issue. |
| search_issuesC | Full-text search issues. |
| list_issue_subscribersB | List subscribers on an issue. |
| subscribe_to_issueB | Subscribe to an issue's notifications. |
| unsubscribe_from_issueC | Unsubscribe from an issue's notifications. |
| list_issue_attachmentsB | List attachments on an issue. |
| get_attachmentA | Get an attachment's metadata (including its download URL). |
| delete_attachmentC | Delete an attachment. |
| list_projectsA | List projects in the workspace. |
| create_projectC | Create a project. |
| update_projectC | Update a project. |
| delete_projectC | Delete a project. |
| list_labelsB | List issue labels. |
| create_labelC | Create an issue label. |
| update_labelC | Update an issue label. |
| delete_labelC | Delete an issue label. |
| list_squadsB | List squads (teams). |
| get_squadB | Get one squad with its members. |
| create_squadD | Create a squad. |
| update_squadC | Update a squad's properties. |
| delete_squadA | Archive (soft-delete) a squad; assigned issues transfer to its leader. |
| list_squad_membersC | List a squad's members. |
| add_squad_memberC | Add an agent to a squad. |
| remove_squad_memberC | Remove a member from a squad. |
| list_autopilotsA | List autopilots (scheduled/triggered automations). |
| get_autopilotC | Get one autopilot. |
| create_autopilotB | Create an autopilot — a recurring/triggered automation that files an issue for an agent. |
| update_autopilotD | Update an autopilot. |
| delete_autopilotC | Delete an autopilot. |
| trigger_autopilotC | Manually trigger an autopilot run. |
| list_autopilot_runsB | List runs of an autopilot. |
| dashboard_usage_dailyC | Daily credit/token usage. |
| dashboard_usage_by_agentD | Usage by agent. |
| dashboard_agent_runtimeD | Agent run-time totals. |
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 69 tools
Most tools follow a clear CRUD pattern per resource (squad, agent, issue, project, label, skill, autopilot). A few potential overlaps exist (create_agent vs create_agent_from_template, list_members vs list_squad_members) but descriptions clarify them.
The vast majority use verb_noun snake_case (create_squad, delete_issue). Minor exceptions like whoami and dashboard_* prefix are acceptable, and the pattern is predictable.
69 tools is far beyond the typical range and even the relaxed threshold of 25+. While the server covers many domains, the sheer size makes it unwieldy for an agent to navigate and would benefit from modularization.
The toolset provides full CRUD for most resources and adds workflows (assign, rerun, comment, subscribe, attach). Missing administrative operations like create/delete workspace or runtime are likely out of scope, so coverage is strong.