We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Akrasia0/S-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
schema.ts•235 B
import { z } from "zod";
export const msgSternSchema = z.object({
message: z
.string()
.min(1, "Message is required")
.describe("The message to send to Stern"),
});
export type MsgSternSchema = z.infer<typeof msgSternSchema>;