Skip to main content
Glama

Daisys MCP Server

by daisys-ai
model.py787 B
from pydantic import BaseModel # type: ignore from typing import List, Optional import enum class Status: WAITING = "waiting" STARTED = "started" READY = "ready" ERROR = "error" TIMEOUT = "timeout" class McpVoice(BaseModel): voice_id: str name: str gender: str model: str description: str | None class McpModel(BaseModel): name: str displayname: str flags: Optional[List] languages: List[str] genders: List[str] styles: List[List[str]] prosody_types: List[str] class VoiceGender(str, enum.Enum): """Represents the gender of a voice. Note: upper case in Python, lower case in JSON. Values: MALE, FEMALE, NONBINARY """ MALE = "male" FEMALE = "female" NONBINARY = "nonbinary"

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/daisys-ai/daisys-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server