We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/kelvis-santos/MCP-vscode-examples'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
module.ts•219 B
// MCP Module Pattern Example
// Exemplo fictício de Module MCP (autocontido para apresentação)
import { UserController } from './controller.js';
export class UserModule {
userController = new UserController();
}