We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/m0xai/trello-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
create_label.py•268 B
from pydantic import BaseModel
class CreateLabelPayload(BaseModel):
"""
Payload for creating a label.
Attributes:
name (str): The name of the label.
color (str): The color of the label.
"""
name: str
color: str | None = None