loaditout.ai
SkillsPacksTrendingLeaderboardAPI DocsBlogSubmitRequestsCompareAgentsXPrivacyDisclaimer
{}loaditout.ai
Skills & MCPPacksBlog

HotkeylessAHK-mcp-skill

MCP Tool

tim0-12432/HotkeylessAHK-mcp-skill

MCP Server and Agent Skill for enabling LLM Agents to interact with your local Hotkeyless Autohotkey

Install

$ npx loaditout add tim0-12432/HotkeylessAHK-mcp-skill

Platform-specific configuration:

.claude/settings.json
{
  "mcpServers": {
    "HotkeylessAHK-mcp-skill": {
      "command": "npx",
      "args": [
        "-y",
        "HotkeylessAHK-mcp-skill"
      ]
    }
  }
}

Add the config above to .claude/settings.json under the mcpServers key.

About

Hotkeyless AHK MCP and Skills

This repository provides:

  • A TypeScript MCP server that wraps the Hotkeyless AHK HTTP API.
  • Reusable skill documents for OpenCode, Claude, and generic agent runtimes.
  • Practical examples for desktop automation scenarios.
Workspace layout
packages/
  mcp-server/   # Node MCP server package
  skills/       # Agent skill documents
examples/       # End-to-end usage examples

---

  1. MCP server
  • Quick start
  • Hotkeyless AHK API contract
  • Configuration
  1. Agent skills
  • Quick start

---

MCP server
Quick start
1. Build server
bun install
bun run build

npm should also work without problems!

2. Setup your harness
OpenCode

`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"
          ...
      }
    }
  },
  ...
}
ClaudeCode

`.mcp.json`:

{
  "mcpServers": {
    ...
    "hotkeyless-ahk": {
      "command": "node",
      "args": ["<absolute path to the built files>/mcp-server/dist/index.js"],
      "env": {
        "BLACKLIST": "shutdown,restart,kill"
        ...
      }
    }
  }
}
Github Copilot

`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": ["*"]
    }
  },
  ...
}
Hotkeyless AHK API contract
  • GET /list returns JSON array of { command: string, note: string }
  • `GET /

Tags

agent-skillsahkahkv2hotkeyless-ahkmcp-server

Reviews

Loading reviews...

Quality Signals

0
Installs
Last updated6 days ago
Security: BREADME
New

Safety

Risk Levelmedium
Data Access
read
Network Accessnone

Details

Sourcegithub-crawl
Last commit4/6/2026
View on GitHub→

Embed Badge

[![Loaditout](https://loaditout.ai/api/badge/tim0-12432/HotkeylessAHK-mcp-skill)](https://loaditout.ai/skills/tim0-12432/HotkeylessAHK-mcp-skill)