We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/systeminit/si'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
mod_test.ts•474 B
import { assertExists } from "@std/assert";
import * as framework from "./src/index.ts";
Deno.test("framework exports exist", () => {
// Verify the main framework exports are available
assertExists(framework);
});
Deno.test("framework has expected exports", () => {
// Check that key exports from the framework are present
// This is a basic smoke test to ensure the module structure is valid
const exports = Object.keys(framework);
assertExists(exports);
});