We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/acquo/line-bot-mcp-server-sse'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
textMessage.ts•218 B
import { z } from "zod";
export const textMessageSchema = z.object({
type: z.literal("text").default("text"),
text: z
.string()
.max(5000)
.describe("The plain text content to send to the user."),
});