We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sweeden-ttu/canvas-lms-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
"""Base types for validation pipelines."""
from typing import Any
from pydantic import BaseModel, Field
class ValidationResult(BaseModel):
"""Result of a validation check."""
name: str = Field(..., description="Check name")
passed: bool = Field(..., description="Whether check passed")
message: str = Field(default="", description="Human-readable message")
details: dict[str, Any] = Field(default_factory=dict)