We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/imaginpro/imaginepro-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
marketplace.json•2.29 KiB
{
"name": "ImaginePro AI Generation",
"description": "AI-powered image and video generation tools for Claude Code",
"version": "1.0.0",
"author": "ImaginePro",
"repository": "https://github.com/imaginpro/imaginepro-mcp-server",
"plugins": [
{
"name": "imaginepro",
"displayName": "ImaginePro AI Generation",
"description": "Generate AI images and videos using ImaginePro's powerful API. Includes text-to-image, multi-modal generation, video creation, upscaling, variants, and inpainting.",
"type": "mcp-server",
"version": "1.0.0",
"config": {
"command": "node",
"args": ["dist/index.js"],
"env": {
"IMAGINEPRO_API_KEY": "${IMAGINEPRO_API_KEY}",
"IMAGINEPRO_BASE_URL": "https://api.imaginepro.ai",
"IMAGINEPRO_TIMEOUT": "300000"
}
},
"capabilities": {
"tools": [
{
"name": "generate-image",
"description": "Generate an AI image from a text prompt"
},
{
"name": "gemini-imagine",
"description": "Generate images using multi-modal inputs (text + images)"
},
{
"name": "generate-video",
"description": "Create video animations from start and end frames"
},
{
"name": "upscale-image",
"description": "Enhance image resolution and quality"
},
{
"name": "create-variant",
"description": "Generate alternative versions of an image"
},
{
"name": "reroll-image",
"description": "Regenerate an image with the same prompt"
},
{
"name": "inpaint-image",
"description": "Edit specific regions of an image using a mask"
},
{
"name": "fetch-status",
"description": "Check the status of a generation task"
}
]
},
"installation": {
"steps": [
"Get your ImaginePro API key from https://imaginepro.ai",
"Set the IMAGINEPRO_API_KEY environment variable",
"Install the plugin using /plugin marketplace add imaginpro/imaginepro-mcp-server",
"Start generating AI images and videos!"
]
}
}
]
}