Replicate MCP Server
AIstdiov0.2.0
MCP server for Replicate, which hosts thousands of open machine learning models behind a single API. Lets AI agents search models, run predictions (image, video, audio, and text generation), poll prediction status, and retrieve outputs. Useful for adding generative media and specialized ML capabilities to agent workflows without managing infrastructure.
Conectar
Añade esta configuración a .claude/mcp.json
{
"mcpServers": {
"replicate": {
"command": "npx",
"args": [
"-y",
"@replicate/mcp"
],
"env": {
"REPLICATE_API_TOKEN": "<YOUR_REPLICATE_API_TOKEN>"
}
}
}
}Herramientas (2)
search_models
Search Replicate's catalog of hosted models by keyword.
{
"type": "object",
"required": [
"query"
],
"properties": {
"query": {
"type": "string",
"description": "Search query"
}
}
}create_prediction
Run a model prediction with the given inputs and return the prediction ID.
{
"type": "object",
"required": [
"model",
"input"
],
"properties": {
"input": {
"type": "object",
"description": "Model input parameters"
},
"model": {
"type": "string",
"description": "Model identifier (owner/name or version)"
}
}
}Recursos
Este servidor no expone ningún recurso.
Prompts
Este servidor no expone ningún prompt.
Información del servidor
- Repositorio
- https://github.com/replicate/mcp
- Licencia
- Apache-2.0
- Versión
- 0.2.0
- Estrellas
- 520
- Última actualización
- 9 de julio de 2026