Skip to main content
Glama

Gotas Commerce MCP Server

simple-server.js1 kB
const { createServer } = require('@smithery/sdk'); const express = require('express'); // Criar servidor MCP const mcpServer = createServer({ name: 'Gotas Commerce', description: 'Cryptocurrency payment gateway for USDT transactions' }); // Definir uma ferramenta simples mcpServer.tool({ name: 'hello-world', description: 'Returns a hello world message', parameters: {}, handler: async () => { return "Hello from Gotas Commerce MCP Server!"; } }); // Iniciar o servidor HTTP const port = process.env.PORT || 3000; const app = express(); // Middleware básico app.use(express.json()); // Montar o handler MCP no endpoint /mcp const mcpHandler = mcpServer.createExpressHandler(); app.use('/mcp', mcpHandler); // Rota raiz para verificação de saúde app.get('/', (req, res) => { res.json({ status: 'ok', message: 'Gotas Commerce MCP Server is running' }); }); // Iniciar o servidor Express app.listen(port, () => { console.log(`Server running on port ${port}`); });

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/caiovicentino/mcpGOTAS'

If you have feedback or need assistance with the MCP directory API, please join our Discord server