by manascb1344
Generate stunning images with Together AI's Flux.1 Schnell—an advanced AI image generator offering customizable dimensio
Generates high-quality images from text prompts using Together AI's Flux.1 Schnell model. Supports customizable dimensions and can save images to disk.
Together AI (Flux.1 Schnell) is a community-built MCP server published by manascb1344 that provides AI assistants with tools and capabilities via the Model Context Protocol. Generate stunning images with Together AI's Flux.1 Schnell—an advanced AI image generator offering customizable dimensio It is categorized under ai ml.
You can install Together AI (Flux.1 Schnell) in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
MIT
Together AI (Flux.1 Schnell) is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
Strong directory entry: Together AI (Flux.1 Schnell) surfaces stars and publisher context so we could sanity-check maintenance before adopting.
Together AI (Flux.1 Schnell) is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
According to our notes, Together AI (Flux.1 Schnell) benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
We evaluated Together AI (Flux.1 Schnell) against two servers with overlapping tools; this profile had the clearer scope statement.
Together AI (Flux.1 Schnell) has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
I recommend Together AI (Flux.1 Schnell) for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
Together AI (Flux.1 Schnell) is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
We wired Together AI (Flux.1 Schnell) into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
Together AI (Flux.1 Schnell) is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
Strong directory entry: Together AI (Flux.1 Schnell) surfaces stars and publisher context so we could sanity-check maintenance before adopting.
showing 1-10 of 33
A Model Context Protocol (MCP) server that enables seamless generation of high-quality images using the Flux.1 Schnell model via Together AI. This server provides a standardized interface to specify image generation parameters.
<div align="center"> </div> <div align="center"> <a href="https://glama.ai/mcp/servers/y6qfizhsja"> <img width="380" height="200" src="https://glama.ai/mcp/servers/y6qfizhsja/badge" alt="Image Generation Server MCP server" /> </a> </div>npm install together-mcp
Or run directly:
npx together-mcp@latest
Add to your MCP server configuration:
<summary>Configuration Example</summary>{
"mcpServers": {
"together-image-gen": {
"command": "npx",
"args": ["together-mcp@latest -y"],
"env": {
"TOGETHER_API_KEY": "<API KEY>"
}
}
}
}
The server provides one tool: generate_image
This tool has only one required parameter - the prompt. All other parameters are optional and use sensible defaults if not provided.
{
// Required
prompt: string; // Text description of the image to generate
// Optional with defaults
model?: string; // Default: "black-forest-labs/FLUX.1-schnell-Free"
width?: number; // Default: 1024 (min: 128, max: 2048)
height?: number; // Default: 768 (min: 128, max: 2048)
steps?: number; // Default: 1 (min: 1, max: 100)
n?: number; // Default: 1 (max: 4)
response_format?: string; // Default: "b64_json" (options: ["b64_json", "url"])
image_path?: string; // Optional: Path to save the generated image as PNG
}
Only the prompt is required:
{
"name": "generate_image",
"arguments": {
"prompt": "A serene mountain landscape at sunset"
}
}
Override any defaults and specify a path to save the image:
{
"name": "generate_image",
"arguments": {
"prompt": "A serene mountain landscape at sunset",
"width": 1024,
"height": 768,
"steps": 20,
"n": 1,
"response_format": "b64_json",
"model": "black-forest-labs/FLUX.1-schnell-Free",
"image_path": "/path/to/save/image.png"
}
}
The response will be a JSON object containing:
{
"id": string, // Generation ID
"model": string, // Model used
"object": "list",
"data": [
{
"timings": {
"inference": number // Time taken for inference
},
"index": number, // Image index
"b64_json": string // Base64 encoded image data (if response_format is "b64_json")
// OR
"url": string // URL to generated image (if response_format is "url")
}
]
}
If image_path was provided and the save was successful, the response will include confirmation of the save location.
If not specified in the request, these defaults are used:
prompt parameter is required{
"@modelcontextprotocol/sdk": "0.6.0",
"axios": "^1.6.7"
}
Clone and build the project:
git clone https://github.com/manascb1344/together-mcp-server
cd together-mcp-server
npm install
npm run build
npm run build - Build the TypeScript projectnpm run watch - Watch for changes and rebuildnpm run inspector - Run MCP inspectorContributions are welcome! Please follow these steps:
feature/my-new-feature)Feature requests and bug reports can be submitted via GitHub Issues. Please check existing issues before creating a new one.
For significant changes, please open an issue first to discuss your proposed changes.
This project is licensed under the MIT License. See the LICENSE file for details.
Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.