Skip to main content
Glama

Replicate MCP Server

by deepfates
/** * OpenAPI schema types. */ export interface OpenAPISchema { openapi: string; info: { title: string; version: string; }; components?: { schemas?: Record<string, SchemaObject>; }; } export interface SchemaObject { type?: string; required?: string[]; properties?: Record<string, PropertyObject>; additionalProperties?: boolean | SchemaObject; } export interface PropertyObject { type: string; format?: string; description?: string; default?: unknown; minimum?: number; maximum?: number; enum?: string[]; items?: SchemaObject; } export type ModelIO = Record<string, unknown>;

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

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