/**
* Represents a missing dependency
*/
export interface MissingDependency {
readonly name: string;
readonly installCommand?: string;
}
/**
* Checks for system dependencies required by MCP tools
*/
export interface IDependencyChecker {
/**
* Check if the specified dependencies are available
* @param dependencies List of dependency names to check
* @returns List of missing dependencies
*/
check(dependencies: string[]): Promise<MissingDependency[]>;
}
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/Stefan-Nitu/mcp-xcode'
If you have feedback or need assistance with the MCP directory API, please join our Discord server