We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/dagba/ios-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
index.ts•400 B
/**
* Test tools module
* Exports tool registration function for all test-related tools
*/
import type { ToolDefinition } from '../../shared/types.js';
import { runTestsTool } from './xcodebuild-test.js';
/**
* Register all test tools with the tool registry
*/
export function registerTestTools(registry: Map<string, ToolDefinition>): void {
registry.set(runTestsTool.name, runTestsTool);
}