A1D team mcp server
Configuration
View docs{
"mcpServers": {
"aigc-hackers-mcp-server": {
"url": "https://mcp.a1d.ai/sse",
"headers": {
"MCP_API_KEY": "YOUR_API_KEY"
}
}
}
}The A1D MCP Server offers AI image and video processing tools through the MCP protocol, enabling you to perform tasks like background removal, upscaling, vectorization, and generation from a single, centralized service.
Once you have configured your MCP client to connect to the A1D MCP Server, you can request AI tools directly from your assistant. You can ask for tasks such as removing backgrounds, upscaling images or videos, converting images to vector graphics, expanding image boundaries, or generating new images from text descriptions. These tools are exposed via the MCP endpoint and are available to any compatible MCP client.
Prerequisites: you need a modern runtime capable of running MCP clients and a valid API key from A1D.ai.
Step 1 — Get your API key - Visit A1D.ai to obtain your free API key. If you want to use the service beyond the free tier, you can purchase credits for extended usage.
Step 2 — Connect your MCP client
- For Claude Desktop you will configure the client with the following JSON. This uses npx to run the MCP client and connects to the A1D MCP Server with your API key supplied in the header.{
"mcpServers": {
"a1d": {
"command": "npx",
"args": [
"mcp-remote@latest",
"https://mcp.a1d.ai/sse",
"--header",
"api_key:${MCP_API_KEY}"
],
"env": {
"MCP_API_KEY": "your_api_key_here"
}
}
}
}Start the inspector and configure the transport to SSE, pointing it at the A1D MCP Server URL with your API key in the header.
npx @modelcontextprotocol/inspector
```
Configure Transport Type: SSE
URL: https://mcp.a1d.ai/sse
Header: api_key: your_api_key_hereUse the MCP server URL and the API key in the request header when configuring your client.
URL: https://mcp.a1d.ai/sse
Header: api_key: your_api_key_hereAfter you save the configuration, restart your MCP client to ensure the A1D tools appear and are ready to use.
AI background removal to extract foreground subjects from images
Upscale images to higher resolutions (2x, 4x, 8x, 16x)
Enhance video quality and resolution
Convert images to scalable vector graphics (SVG)
Expand image boundaries intelligently
Generate images from text descriptions