We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/NyxiumYuuki/GeoGuessrMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
schema_field.py•482 B
"""
Represents a single field in a schema.
This module defines a dataclass that encapsulates the attributes of
a schema field, including its name, type, and other relevant metadata.
"""
from dataclasses import dataclass
from typing import Any
@dataclass
class SchemaField:
"""Represents a single field in a schema."""
name: str
field_type: str
nullable: bool = False
nested_schema: dict | None = None
example_value: Any = None
description: str = ""