We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/edicarloslds/businessmap-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { z } from 'zod';
// Schema para obter colunas de cycle time do workflow
export const getWorkflowCycleTimeColumnsSchema = z.object({
board_id: z.number().describe('The ID of the board'),
workflow_id: z.number().describe('The ID of the workflow'),
});
// Schema para obter colunas efetivas de cycle time do workflow
export const getWorkflowEffectiveCycleTimeColumnsSchema = z.object({
board_id: z.number().describe('The ID of the board'),
workflow_id: z.number().describe('The ID of the workflow'),
});