We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Ayi456/visual-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import express from 'express';
import { UserController } from '../controllers/UserController.js';
export function setupUserRoutes(app: express.Application, userController: UserController) {
app.get('/api/users/:userId/quota', userController.getQuota);
app.get('/api/users/:userId/settings', userController.getSettings);
app.post('/api/users/:userId/settings', userController.updateSettings);
}