Skip to main content
Glama

IaC Memory MCP Server

by AgentWong
exceptions.py857 B
"""Exception types for test utilities. This module defines the exception hierarchy used by the test utilities: TestUtilError ├── DatabaseTestError - Database-specific errors ├── MCPTestError - MCP client-specific errors ├── ContextError - Context management errors └── TimeoutError - Timeout-related errors """ class TestUtilError(Exception): """Base exception for test utilities.""" pass class DatabaseTestError(TestUtilError): """Exception raised for database test-specific errors.""" pass class MCPTestError(TestUtilError): """Exception raised for MCP client test-specific errors.""" pass class ContextError(TestUtilError): """Exception raised for context-related errors.""" pass class TimeoutError(TestUtilError): """Exception raised for timeout-related errors.""" pass

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/AgentWong/iac-memory-mcp-server-project'

If you have feedback or need assistance with the MCP directory API, please join our Discord server