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
setup.ts•240 B
import { vi } from "vitest"
// Mock process.exit to prevent tests from actually exiting
vi.spyOn(process, "exit").mockImplementation((code?: string | number | null): never => {
throw new Error(`process.exit called with code ${code}`)
})