We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/fr0ster/mcp-abap-adt'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
// Jest test suite for handleDescribeByList
const {
handleDescribeByList,
} = require("../dist/handlers/handleDescribeByList");
describe("handleDescribeByList", () => {
it("should return results for valid objects array", async () => {
const testInput = {
objects: [
{ name: "EBELN", type: "DTEL" },
{ name: "XSTBW", type: "DTEL" },
{ name: "/CBY/ALGORITHM", type: "DTEL" },
{ name: "SPRAS", type: "DTEL" },
],
};
const result = await handleDescribeByList(testInput);
console.log("DescribeByList MCP raw result:", result);
expect(result).toBeDefined();
// Optionally, add more assertions based on expected result structure
});
});