We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/iankan04/MCP-Spotify'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { z } from "zod";
export const UserSchema = z.object({
client_id: z.string(),
access_token: z.string(),
refresh_token: z.string(),
expires_at: z.string().transform((val) => new Date(val)),
updated_at: z.string().transform((val) => new Date(val))
});