replicate-reve-edit-mcp-server
Verified Safeby PierrunoYT
Overview
This MCP server provides an interface for AI applications to access the Reve Edit image editing model from Replicate, enabling natural language-based transformation of images while preserving their spatial relationships and structure.
Installation
npx -y https://github.com/PierrunoYT/replicate-reve-edit-mcp-server.gitEnvironment Variables
- REPLICATE_API_TOKEN
Security Notes
The server handles `REPLICATE_API_TOKEN` via environment variables, which is good practice. It explicitly warns and does not crash if the token is missing. There are no obvious `eval` or obfuscation patterns. However, the `downloadImage` function, which fetches images from external URLs, presents a potential Server-Side Request Forgery (SSRF) risk if the input `image` URL is not validated sufficiently, allowing the server to probe internal networks or local file systems. Given typical MCP usage, this risk is mitigated by assuming trusted clients and valid image URLs.
Similar Servers
nanobanana-api-mcp
An MCP server providing image generation and editing capabilities via the Google Gemini API, integrable with various AI coding assistants and IDEs.
fal-reve-mcp-server
Provides a Model Context Protocol (MCP) server for generating high-quality text-to-image outputs using the FAL AI Reve model.
fal-reve-edit-mcp-server
Facilitates text-to-image generation and image editing using the FAL AI Reve model via the Model Context Protocol.
MCP-para-todo
An educational MCP server that connects language models with external tools in real-time, focusing on providing real-world context and extending LLM capabilities.