We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/lihongjie0209/sqlx-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
index.js•333 B
const path = require('path');
// Export the path to the binary for this platform
function getBinaryPath() {
return path.join(__dirname, 'bin', 'sqlx-mcp.exe');
}
// Support both CommonJS and ES modules patterns
module.exports = getBinaryPath;
module.exports.getBinaryPath = getBinaryPath;
module.exports.default = getBinaryPath;