We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/chrisdoc/hevy-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
httpServer.test.ts•299 B
import { describe, expect, it } from "vitest";
import { createHttpServer } from "./httpServer.js";
describe("createHttpServer", () => {
it("throws because HTTP transport is removed", () => {
expect(() => createHttpServer()).toThrowError(
/HTTP transport mode has been removed/,
);
});
});