We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/scmcphub/decoupler-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•423 B
from __future__ import annotations
from pydantic import BaseModel, Field, ConfigDict
class ActivityAdataInfo(BaseModel):
"""Input schema for the adata tool."""
sampleid: str | None = Field(default=None, description="adata sampleid")
adtype: str = Field(default="activity", description="the data type of stored adata.X, for analysis and plotting ")
model_config = ConfigDict(
extra="ignore"
)