We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/duyet/duyet-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
main-index-simple.test.ts•258 B
/**
* Simple tests for index.ts to improve coverage
*/
import { describe, expect, test } from "bun:test";
describe("Main Index Simple Coverage", () => {
test("should pass simple test", () => {
// Just a passing test
expect(true).toBe(true);
});
});