We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/yuki-yano/macos-notify-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
mcp-wrapper.cjs•294 B
#!/usr/bin/env node
// CommonJS wrapper for ES module MCP server
// This ensures compatibility with npm global installs
async function main() {
try {
await import('./index.js')
} catch (error) {
console.error('Failed to start MCP server:', error)
process.exit(1)
}
}
main()