We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/DanWahlin/marvel-mcp-azure-functions'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { z } from 'zod';
export const GetCharactersSchema = z.object({
name: z.string().optional(),
nameStartsWith: z.string().optional(),
modifiedSince: z.string().optional(),
comics: z.string().optional(),
series: z.string().optional(),
events: z.string().optional(),
stories: z.string().optional(),
orderBy: z.string().optional(),
limit: z.number().min(1).max(100).optional(),
offset: z.number().optional(),
});