tim0-12432/HotkeylessAHK-mcp-skill
MCP Server and Agent Skill for enabling LLM Agents to interact with your local Hotkeyless Autohotkey
Platform-specific configuration:
{
"mcpServers": {
"HotkeylessAHK-mcp-skill": {
"command": "npx",
"args": [
"-y",
"HotkeylessAHK-mcp-skill"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
This repository provides:
packages/
mcp-server/ # Node MCP server package
skills/ # Agent skill documents
examples/ # End-to-end usage examples---
---
bun install
bun run buildnpm should also work without problems!
`opencode.json`:
{
...
"mcp": {
...
"hotkeyless-ahk": {
"type": "local",
"command": ["node", "<absolute path to the built files>/mcp-server/dist/index.js"],
"enabled": true,
"environment": {
"BLACKLIST": "shutdown,restart,kill"
...
}
}
},
...
}`.mcp.json`:
{
"mcpServers": {
...
"hotkeyless-ahk": {
"command": "node",
"args": ["<absolute path to the built files>/mcp-server/dist/index.js"],
"env": {
"BLACKLIST": "shutdown,restart,kill"
...
}
}
}
}`mcp-config.json`:
{
...
"mcpServers": {
...
"hotkeyless-ahk": {
"type": "local",
"command": "node",
"args": ["<absolute path to the built files>/mcp-server/dist/index.js"],
"env": {
"BLACKLIST": "shutdown,restart,kill"
...
},
"tools": ["*"]
}
},
...
}GET /list returns JSON array of { command: string, note: string }Loading reviews...