We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/leftspin/mcp-xcode-diagnostics'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
plugin.json•947 B
{
"name_for_model": "xcode_diagnostics",
"functions": [
{
"name": "get_xcode_projects",
"description": "Lists all Xcode projects that have build logs in the DerivedData directory. Returns project names, directory paths, and last modified timestamps.",
"parameters": {}
},
{
"name": "get_project_diagnostics",
"description": "Gets diagnostic information (errors and warnings) from the latest build log of a specific project.",
"parameters": {
"properties": {
"project_dir_name": {
"type": "string",
"description": "Directory name of the project in DerivedData (e.g. 'ProjectName-hash')"
},
"include_warnings": {
"type": "boolean",
"description": "Whether to include warnings in addition to errors",
"default": true
}
},
"required": ["project_dir_name"]
}
}
]
}