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
http-transport.integration.test.ts•300 B
import { describe, expect, it } from "vitest";
import { createHttpServer } from "../../src/utils/httpServer.js";
describe("HTTP transport integration", () => {
it("is no longer supported", () => {
expect(() => createHttpServer()).toThrow(
/HTTP transport mode has been removed/,
);
});
});