We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/get-convex/convex-backend'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { use as chaiUse } from "chai";
import chaiAsPromised from "chai-as-promised";
import chai from "chai";
export const wrapInTests = async (
tests: Record<string, () => Promise<void> | void>,
): Promise<string> => {
chaiUse(chaiAsPromised);
// Disable truncation of error messages.
chai.config.truncateThreshold = 0;
for (const [_name, func] of Object.entries(tests)) {
await func();
}
return "success";
};