We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/aepod/trello-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
boards.ts•232 B
import { z } from 'zod';
export const GetBoardSchema = z.object({
boardId: z.string().min(1, 'Board ID is required'),
});
export const GetBoardMembersSchema = z.object({
boardId: z.string().min(1, 'Board ID is required'),
});