We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/drvova/discord-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
http-client.ts•350 B
import { hc } from "hono/client";
import type { ClientRequestOptions } from "hono/client";
import type { AppType } from "./http-app.js";
export function createHttpClient(
baseUrl: string,
options?: ClientRequestOptions,
) {
return hc<AppType>(baseUrl, options);
}
export type DiscordMcpHttpClient = ReturnType<typeof createHttpClient>;