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•441 B
import { describe, expect, it } from "vitest";
import { createHttpServer } from "./httpServer.js";
describe("createHttpServer", () => {
it("throws because HTTP transport is removed", () => {
const call = () => createHttpServer();
expect(call).toThrowError(/HTTP\/SSE transport has been removed/);
expect(call).toThrowError(/use stdio instead of HTTP\/SSE/);
expect(call).toThrowError(/migration-from-httpsse-transport/);
});
});