Skip to main content
Glama

MCP Server Replicate

hardware.py471 B
"""Data models for Replicate hardware options.""" from typing import List from pydantic import BaseModel, Field class Hardware(BaseModel): """A hardware option for running models on Replicate.""" name: str = Field(..., description="Human-readable name of the hardware") sku: str = Field(..., description="SKU identifier for the hardware") class HardwareList(BaseModel): """Response format for listing hardware options.""" hardware: List[Hardware]

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/gerred/mcp-server-replicate'

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