We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/okets/folder-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
index.ts•228 B
#!/usr/bin/env node
/**
* Main entry point for the MCP server
* This file is a simple wrapper that calls the main server function
*/
import { main } from './mcp-server.js';
// Start the server
main().catch(console.error);