We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/msenol/Gorev'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
gorev-mcp•472 B
#!/usr/bin/env node
/**
* Gorev MCP Server Executable Entry Point
*
* This is the main executable that gets called when using:
* - npx @mehmetsenol/gorev-mcp-server
* - npm install -g @mehmetsenol/gorev-mcp-server && gorev-mcp
*/
const path = require('path');
// Import and execute the main wrapper from parent directory
const wrapper = require(path.join(__dirname, '..', 'index.js'));
// Call main function directly since this is our entry point
wrapper.main();