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
describe('MCP ABAP ADT Server', () => {
it('should be a valid test suite', () => {
expect(true).toBe(true);
});
describe('Module Imports', () => {
it('should require handler modules without errors', () => {
expect(() =>
require('../handlers/program/high/handleGetProgram'),
).not.toThrow();
expect(() =>
require('../handlers/class/high/handleGetClass'),
).not.toThrow();
expect(() =>
require('../handlers/function/readonly/handleGetFunction'),
).not.toThrow();
});
it('should require utility modules without errors', () => {
expect(() => require('../lib/utils')).not.toThrow();
expect(() => require('../lib/logger')).not.toThrow();
});
});
describe('Configuration', () => {
it('should have valid Node.js version', () => {
const nodeVersion = process.version;
const majorVersion = parseInt(nodeVersion.split('.')[0].slice(1), 10);
expect(majorVersion).toBeGreaterThanOrEqual(18);
});
});
});