Skip to main content
Glama

JIRA MCP Server

validation.ts459 B
/** * Validation Utilities * * Common validation functions and utilities */ import type { z } from "zod"; /** * Format a Zod error into a string * * @param error - Zod error to format * @returns Formatted error string */ export const formatZodError = (error: z.ZodError): string => { return error.errors .map((err) => { const path = err.path.join("."); return `${path ? `${path}: ` : ""}${err.message}`; }) .join(", "); };

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Dsazz/mcp-jira'

If you have feedback or need assistance with the MCP directory API, please join our Discord server