- Home
- MCP servers
- Airgen
Airgen
- typescript
0
GitHub Stars
typescript
Language
7 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Airgen MCP Server is a TypeScript-based MCP server that provides an asset generation agent for creating and transforming images. You can generate images, remove backgrounds, resize assets, and convert assets to vectors or SVGs, all accessible through MCP clients.
How to use
You interact with Airgen MCP Server through an MCP client. Use the generate_image capability to create new image assets such as icons, logos, banners, or svgs by describing what you want. You can also remove backgrounds, resize images, and convert assets to vector formats to fit your design needs. The server exposes these tools so you can automate asset production as part of your workflow.
To get assets from the server, ensure your MCP client is configured to connect to the Airgen MCP endpoint. The server responds to typical MCP client requests for asset generation and manipulation, returning the resulting image data or references you can store in your projects.
How to install
Prerequisites: you need Node.js installed on your machine. If you don’t have Node.js, install it from the official Node.js website.
Install dependencies and build the server. Run the following commands in your project directory:
npm install
npm run build
Start the server after building. Use this command to run the MCP server:
npm run server
Configuration and usage notes
You can configure how clients connect to Airgen MCP Server via an MCP JSON configuration. The example below shows how to set up the HTTP MCP endpoint for the server.
{
"mcpServers": {
"airgen-mcp": {
"url": "{url}/sse"
}
}
}
Available tools
generate_image
Create new image assets such as icons, logos, banners, or svgs using the agent toolset.