We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/tjackiet/bitbank-genesis-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import type { OkResult, FailResult } from '../src/types/domain.d';
export function ok<T = Record<string, unknown>, M = Record<string, unknown>>(
summary: string,
data?: T,
meta?: M
): OkResult<T, M>;
export function fail<M = Record<string, unknown>>(
message: string,
type?: string,
meta?: M
): FailResult<M>;