We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jordanburke/kuzudb-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
index.test.ts•340 B
import { describe, it, expect } from "vitest"
describe("Index module", () => {
it("should export the module", () => {
// Since index.ts is the MCP server entry point and requires
// specific environment setup, we just verify it can be imported
expect(async () => {
await import("../index")
}).not.toThrow()
})
})