We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/JayRajGoyal/gcp-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
exceptions.py•478 B
"""Custom exceptions for GCP MCP server."""
class GCPMCPError(Exception):
"""Base exception for GCP MCP server."""
pass
class AuthenticationError(GCPMCPError):
"""Authentication related errors."""
pass
class ConfigurationError(GCPMCPError):
"""Configuration related errors."""
pass
class GCPServiceError(GCPMCPError):
"""GCP service related errors."""
pass
class ValidationError(GCPMCPError):
"""Input validation errors."""
pass