Skip to main content
Glama

Verodat MCP Server

Official
serverConfig.ts611 B
import { API_CONFIG } from "./constants.js"; interface ServerConfig { authToken?: string; } let serverConfig: ServerConfig = {}; export const setServerConfig = (config: Partial<ServerConfig>) => { serverConfig = { ...serverConfig, ...config }; }; export const getAuthToken = (toolName: string): string => { if (serverConfig.authToken) { return serverConfig.authToken; } throw new Error(`${toolName} requires an authToken. Please provide it in the request or configure it in Claude settings.`); }; export const setApiBaseUrl = (url: string) => { API_CONFIG.BASE_URL = url; };

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/Verodat/verodat-mcp-server'

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