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 básico para listar workspaces (sem parâmetros)
export const listWorkspacesSchema = z.object({});
// Schema para obter detalhes de um workspace específico
export const getWorkspaceSchema = z.object({
workspace_id: z.number().describe('The ID of the workspace'),
});
// Schema para criação de workspaces
export const createWorkspaceSchema = z.object({
name: z.string().describe('The name of the workspace'),
description: z.string().optional().describe('Optional description for the workspace'),
});