We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/drewster99/xcode-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•280 B
"""Xcode MCP Server - Model Context Protocol server for Xcode integration"""
__version__ = "1.3.1"
def main():
"""Entry point that delegates to CLI"""
from xcode_mcp_server.cli import initialize_server
return initialize_server()
__all__ = ["main", "__version__"]