From media-pipeline
Connects to Google Gemini API for media processing tasks such as image generation or analysis. Runs locally and saves outputs to a specified directory. Requires a Gemini API key.
Copy this JSON into your .mcp.json to enable this server
Add to your .mcp.json:
{
"mcpServers": {
"media-pipeline": {
"command": "node",
"args": [
"${CLAUDE_PLUGIN_ROOT}/mcp-server/build/bundle.js"
],
"env": {
"GEMINI_API_KEY": "${GEMINI_API_KEY}",
"IMAGE_OUTPUT_DIR": "${IMAGE_OUTPUT_DIR:-./generated-images}",
"GEMINI_DEFAULT_MODEL": "${GEMINI_DEFAULT_MODEL:-gemini-3-pro-image-preview}"
}
}
}
}Replace placeholder values for: GEMINI_API_KEY
Review these signals before enabling this server
This MCP server needs API keys or credentials. Configure them in your environment before use.
This server has elevated permissions. Review the source code before enabling.
Server configuration and connection parameters
nodeCommand-line arguments passed to the server process
Environment variables set when the server starts
GEMINI_API_KEY=${GEMINI_API_KEY}IMAGE_OUTPUT_DIR=${IMAGE_OUTPUT_DIR:-./generated-images}GEMINI_DEFAULT_MODEL=${GEMINI_DEFAULT_MODEL:-gemini-3-pro-image-preview}Sensitive values you must provide — never committed to source control
Declared capabilities of this MCP server
npx claudepluginhub guinacio/claude-image-gen --plugin media-pipeline