We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/twjackysu/TWSEMCPServer'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
base.py•292 B
from pydantic import BaseModel, ConfigDict
class TWSEBaseModel(BaseModel):
"""Base model for all TWSE data structures."""
model_config = ConfigDict(
extra='ignore', # Ignore unknown fields
populate_by_name=True, # Allow populating by field name or alias
)