We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/VRUSHIL1/database-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
order_schema.py•318 B
from pydantic import BaseModel
# -------------------- ORDER SCHEMAS --------------------
class OrderCreate(BaseModel):
user_id: int
product_id: int
quantity: int
class OrderResponse(BaseModel):
id: int
user_id: int
product_id: int
quantity: int
class Config:
from_attributes = True