Skip to main content
Glama

Replicate MCP Server

by deepfates
index.ts986 B
/** * MCP tools for interacting with Replicate. */ export * from "./models.js"; export * from "./predictions.js"; export * from "./image_viewer.js"; import type { Tool } from "@modelcontextprotocol/sdk/types.js"; import { searchModelsTool, listModelsTool, listCollectionsTool, getCollectionTool, getModelTool, } from "./models.js"; import { createPredictionTool, createAndPollPredictionTool, cancelPredictionTool, getPredictionTool, listPredictionsTool, } from "./predictions.js"; import { viewImageTool, clearImageCacheTool, getImageCacheStatsTool, } from "./image_viewer.js"; /** * All available tools. */ export const tools: Tool[] = [ searchModelsTool, listModelsTool, listCollectionsTool, getCollectionTool, createPredictionTool, createAndPollPredictionTool, cancelPredictionTool, getPredictionTool, listPredictionsTool, getModelTool, // Image viewer tools viewImageTool, clearImageCacheTool, getImageCacheStatsTool, ];

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