We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Cheffromspace/MCPControl'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
utils.ts•271 B
/**
* Utility functions for AutoHotkey provider
*/
/**
* Get the path to AutoHotkey executable
* Can be configured via AUTOHOTKEY_PATH environment variable
*/
export function getAutoHotkeyPath(): string {
return process.env.AUTOHOTKEY_PATH || 'AutoHotkey.exe';
}