home / mcp / arcaelas mcp server
Provides AI-powered image generation, text-to-speech, background removal, and image upscaling via a modular MCP server.
Configuration
View docs{
"mcpServers": {
"arcaelas-mcp": {
"command": "npx",
"args": [
"-y",
"@arcaelas/mcp",
"--stdio"
],
"env": {
"CLIENT_ID": "your-client-id",
"OPENAI_API_KEY": "sk-...",
"OPENAI_BASE_URL": "<OPENAI_BASE_URL>"
}
}
}
}You run a modular MCP server that provides AI-powered tools for image generation, text-to-speech, background removal, and image upscaling. This server lets you interact with those tools from your preferred MCP client, whether you use a local stdio connection or an HTTP/WS transport.
Choose your transport based on your client. If your MCP client supports stdio, run the server in stdio mode and connect directly from the client. If your client supports HTTP transport, you can run the HTTP server and connect via HTTP/SSE.
Prepare your environment with Node.js and npm. You will install a global MCP server package and then run it from the command line.
Install the MCP server globally with npm.
Generate images using AI with optional reference images for style guidance.
Convert text to speech with natural-sounding voices.
Remove backgrounds from images using AI with high precision edge detection.
Upscale images using AI with multiple models and optional face enhancement.