We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/TheLunarCompany/lunar'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import z from "zod/v4";
export const targetServerStatus = z.enum([
"connected",
"pending-auth",
"connection-failed",
]);
export const targetServerType = z.enum(["stdio", "sse", "streamable-http"]);
export const targetSever = z.object({
name: z.string(),
status: targetServerStatus,
type: targetServerType,
tools: z.record(
z.string(),
z.object({
description: z.string().optional(),
isCustom: z.boolean(),
usage: z.object({
callCount: z.number().int().nonnegative(),
lastCalledAt: z.string().pipe(z.coerce.date()).optional(),
}),
}),
),
});
export const usageStatsPayloadSchema = z.object({
agents: z.array(
z.object({
clientInfo: z.object({
protocolVersion: z.string().optional(),
name: z.string().optional(),
version: z.string().optional(),
}),
}),
),
targetServers: z.array(targetSever),
});
export type UsageStatsTargetServer = z.infer<typeof targetSever>;
export type UsageStatsTargetServerInput = z.input<typeof targetSever>;