We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/GutjahrAI/sap-odata-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
index.ts•433 B
/**
* SAP OData MCP Server Entry Point
*
* This is the main entry point for the SAP OData Model Context Protocol server.
* It creates and starts the server instance.
*/
import { SAPODataMCPServer } from "./server";
// Create and start the server
const server = new SAPODataMCPServer();
// Handle startup
server.run().catch((error) => {
console.error("Failed to start SAP OData MCP server:", error);
process.exit(1);
});