Skip to main content
Glama

taskqueue-mcp

errors.ts630 B
import { AppError } from "../types/errors.js"; /** * Formats an error message for CLI output */ export function formatCliError(error: Error): string { // Handle our custom file system errors by prefixing the error code if (error instanceof AppError) { let details = ''; if (error.details) { const detailsStr = typeof error.details === 'string' ? error.details : String(error.details); details = `\n-> Details: ${detailsStr.replace(/^AppError:\s*/, '')}`; } return `[${error.code}] ${error.message}${details}`; } // For unknown errors, just return the error message return error.message; }

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/chriscarrollsmith/taskqueue-mcp'

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