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
exceptions.py•510 B
#!/usr/bin/env python3
"""Custom exceptions for Xcode MCP Server"""
class XCodeMCPError(Exception):
"""Base exception class for Xcode MCP Server errors"""
def __init__(self, message, code=None):
self.message = message
self.code = code
super().__init__(self.message)
class AccessDeniedError(XCodeMCPError):
"""Raised when access to a path is denied"""
pass
class InvalidParameterError(XCodeMCPError):
"""Raised when an invalid parameter is provided"""
pass