We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sparesparrow/mcp-prompts'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
test-imports.ts•515 B
// Test file to validate imports work correctly
import { DevToolsServer } from './src/mcp/devtools-server.js';
import { WorkflowOrchestrationService } from './src/services/workflow-orchestration.service.js';
import { McpPromptsClient } from './src/adapters/mcp-prompts-client.js';
import { PromptLayer, Domain } from '@sparesparrow/mcp-fbs';
// Simple test to validate imports
console.log('Imports successful!');
console.log('PromptLayer:', PromptLayer.Unknown);
console.log('Domain:', Domain.SoftwareDevelopment);