Hotkeyless AHK MCP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| BASE_URL | No | Address of the Hotkeyless AHK server | http://localhost:42800 |
| BLACKLIST | No | A list of commands to avoid being called, comma-separated | |
| TIMEOUT_MS | No | Timeout milliseconds for each request | 4000 |
| CACHE_TTL_MS | No | Cache lifetime for command list in milliseconds | 5000 |
| ENDPOINT_LIST | No | Endpoint address of the command list | /list |
| ENDPOINT_TRIGGER | No | Endpoint address for invoking commands | /send |
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
} |
| resources | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| discover_commandsB | Fetch available Hotkeyless commands from /list. |
| trigger_commandA | Trigger one Hotkeyless command by exact name using /trigger. Enforces blacklist and verifies command exists. |
| send_keysB | Send keystrokes through optional /send_keys endpoint. Returns clear error when endpoint is unsupported. |
| mouse_moveB | Move mouse cursor via optional /mouse_move endpoint. Returns clear error when endpoint is unsupported. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| hotkeyless-ahk-commands | Cached view of available command definitions returned by Hotkeyless /list endpoint. |
TDQS
Scored across 4 tools
Each tool has a distinct purpose: discover_commands fetches available commands, mouse_move moves the cursor, send_keys sends keystrokes, and trigger_command executes a command. No overlap exists.
All tools use a consistent verb_noun pattern with snake_case: discover_commands, mouse_move, send_keys, trigger_command. No deviations.
With 4 tools, the count is well-scoped for the specific domain of Hotkeyless AHK automation. It covers the core functionality without being too sparse or excessive.
The tool surface covers the essential operations: listing commands, moving mouse, sending keys, and triggering commands. No obvious gaps for the intended purpose, as optional endpoints are handled with clear errors.