We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/palon7/mcp-chat-human'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
config.ts•268 B
import { z } from "zod";
export const DiscordConfigSchema = z.object({
apiKey: z.string().min(1, "Discord API key is required"),
channelId: z.string().min(1, "Discord channel ID is required"),
});
export type DiscordConfig = z.infer<typeof DiscordConfigSchema>;