Skip to main content
Glama

Ultra MCP

server.test.ts903 B
import { describe, it, expect } from 'vitest'; // Simple test that doesn't require complex mocking describe('Ultra MCP Server', () => { it('should be able to import server module', async () => { // Just test that the module can be imported without errors const { createServer } = await import('../server'); expect(createServer).toBeDefined(); expect(typeof createServer).toBe('function'); }); it('should have expected tool count', () => { // Test the expected tools without actually creating the server // We have 15 tools total: // 4 AI tools: deep-reasoning, investigate, research, list-ai-models // 5 zen-inspired tools: analyze-code, review-code, debug-issue, plan-feature, generate-docs // 6 workflow tools: challenge, consensus, planner, precommit, secaudit, tracer const expectedToolsCount = 15; expect(expectedToolsCount).toBe(15); }); });

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/RealMikeChong/ultra-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server