We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mbrown1837/Ultimate-Elementor-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
basic.test.ts•482 B
// Simple test to verify Jest is working
import { describe, it, expect } from '@jest/globals';
describe('Ultimate Elementor MCP', () => {
it('should have a valid project structure', () => {
expect(true).toBe(true);
});
it('should be able to import types', () => {
// This test will verify that our type definitions can be imported
expect(() => {
// We'll add actual imports when we create the main modules
return true;
}).not.toThrow();
});
});