MCP Overview
FloImg provides an MCP (Model Context Protocol) server that lets AI agents generate images as part of their workflows.
What is MCP?
Section titled “What is MCP?”MCP is a protocol that enables AI assistants like Claude to use external tools. With FloImg’s MCP server, AI agents can:
- Generate charts and visualizations
- Create diagrams and flowcharts
- Produce QR codes
- Capture screenshots
- Transform and save images
Why FloImg + MCP?
Section titled “Why FloImg + MCP?”AI agents need deterministic image generation:
| AI Image Generation | FloImg |
|---|---|
| Non-deterministic | Same input → same output |
| Slow (seconds) | Fast (milliseconds) |
| Expensive | Free / cheap |
| Hallucinates data | Accurate to input |
For data visualizations, diagrams, and functional images, FloImg gives agents reliable, reproducible results.
Quick Start
Section titled “Quick Start”1. Install the MCP Server
Section titled “1. Install the MCP Server”npm install -g @teamflojo/floimg-mcp2. Configure Your AI Client
Section titled “2. Configure Your AI Client”Add FloImg to your MCP configuration:
{ "mcpServers": { "floimg": { "command": "floimg-mcp", "args": [] } }}3. Use with AI
Section titled “3. Use with AI”The AI can now use FloImg tools:
“Create a bar chart showing Q1-Q4 revenue: $12k, $19k, $15k, $25k”
The agent will call the FloImg MCP tool to generate the chart.
Available Tools
Section titled “Available Tools”The MCP server exposes these tools to AI agents:
| Tool | Description |
|---|---|
floimg_generate | Generate images from parameters |
floimg_transform | Modify existing images |
floimg_save | Save images to storage |
See Also
Section titled “See Also”- Claude Integration - Setup with Claude
- Tool Reference - All MCP tools
- Examples - Common use cases