Skip to main content
Glama

POC MCP Server

error.ts669 B
// @ts-nocheck export class GenqlError extends Error { errors: Array<GraphqlError> = [] /** * Partial data returned by the server */ data?: any constructor(errors: any[], data: any) { let message = Array.isArray(errors) ? errors.map((x) => x?.message || '').join('\n') : '' if (!message) { message = 'GraphQL error' } super(message) this.errors = errors this.data = data } } interface GraphqlError { message: string locations?: Array<{ line: number column: number }> path?: string[] extensions?: Record<string, any> }

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/BrunoSSantana/poc-mcp-server'

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