Skip to main content
Glama
command.py424 B
from pydantic import BaseModel from .literals import Capability class Command(BaseModel): component: str capability: Capability command: str arguments: list | None = None def to_dict(self) -> dict: return { "component": self.component or "main", "capability": self.capability, "command": self.command, "arguments": self.arguments or [] }

Latest Blog Posts

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/veonua/smartthings-mcp'

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