We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/crewAIInc/crewAI'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
exceptions.py•498 B
"""Custom exceptions for AWS Bedrock integration."""
class BedrockError(Exception):
"""Base exception for Bedrock-related errors."""
class BedrockAgentError(BedrockError):
"""Exception raised for errors in the Bedrock Agent operations."""
class BedrockKnowledgeBaseError(BedrockError):
"""Exception raised for errors in the Bedrock Knowledge Base operations."""
class BedrockValidationError(BedrockError):
"""Exception raised for validation errors in Bedrock operations."""