We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/TrueCrimeDev/ahk-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
{
"name": "ahk-server-v2",
"version": "2.0.0",
"description": "AutoHotkey v2 MCP Server with LSP-like capabilities",
"main": "dist/index.js",
"type": "module",
"scripts": {
"start": "node dist/index.js",
"start:sse": "cross-env PORT=3000 node dist/index.js --sse",
"start:chatgpt": "cross-env PORT=3000 node dist/index.js --sse",
"dev": "set NODE_ENV=development && node dist/index.js",
"build": "npm run clean && tsc -p tsconfig.build.json",
"build:restart": "npm run build && npm run claude:restart",
"watch": "tsc -w",
"watch:restart": "npm run build:restart && npm run claude:watch",
"clean": "rimraf dist",
"lint": "npm run lint:maintained",
"lint:maintained": "eslint src --ext .ts --ignore-path .eslint.maintained.ignore",
"lint:fix": "eslint src --ext .ts --ignore-path .eslint.maintained.ignore --fix",
"lint:all": "eslint src --ext .ts",
"check:types": "tsc -p tsconfig.json --noEmit",
"lint-staged": "lint-staged",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky install",
"codeexec:generate": "tsx scripts/generate-code-exec-wrappers.ts",
"test": "npm run test:unit",
"test:unit": "cross-env NODE_ENV=test jest --config jest.config.cjs",
"test:unit:watch": "cross-env NODE_ENV=test jest --config jest.config.cjs --watch",
"test:integration": "cross-env NODE_ENV=test jest --config jest.config.integration.cjs",
"test:coverage": "cross-env NODE_ENV=test jest --config jest.config.coverage.cjs",
"test:coverage:report": "npm run test:coverage && open coverage/index.html",
"test:all": "npm run test:unit && npm run test:integration",
"test:mcp": "node scripts/test-mcp-run.js",
"smoke:mcp": "node scripts/smoke-mcp.js",
"debug:scan": "node scripts/scan-debug.js",
"debug:start": "node scripts/start-debug.js",
"claude:restart": "pwsh -NoProfile -ExecutionPolicy Bypass -File scripts/restart-claude-hook.ps1 -Once",
"claude:watch": "pwsh -NoProfile -ExecutionPolicy Bypass -File scripts/restart-claude-hook.ps1 -Watch",
"spec:new": "node -e \"console.log('Create new spec from .specify/templates/spec-template.md')\"",
"spec:plan": "node -e \"console.log('Create implementation plan from .specify/templates/plan-template.md')\"",
"spec:tasks": "node -e \"console.log('Create task breakdown from .specify/templates/tasks-template.md')\"",
"spec:review": "node -e \"console.log('Review .specify/memory/constitution.md for compliance')\""
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"antlr4ng": "^3.0.16",
"cors": "^2.8.5",
"cross-spawn": "7.0.6",
"express": "^5.1.0",
"flexsearch": "^0.7.43",
"prom-client": "^15.1.1",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.25.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"cross-env": "^10.0.0",
"dotenv": "^17.2.3",
"eslint": "^8.56.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-watch-typeahead": "^2.2.2",
"lint-staged": "^16.2.1",
"prettier": "^3.6.2",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"tsx": "^4.20.6",
"typescript": "^5.3.3"
}
}