Files
MCP-IMAGE-GENERATOR/package.json
fdciabdul 510a722f74 Initial release: MCP Image Generator
Multi-provider MCP server for AI image generation.
Supports OpenRouter, Together AI, Replicate, and fal.ai.
Works with Claude Code, Cursor, Claude Desktop, OpenCode, and Charm.
Install via: npx -y mcp-image-generator

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-24 21:15:54 +07:00

49 lines
1010 B
JSON

{
"name": "mcp-image-generator",
"version": "1.0.0",
"description": "MCP server for AI image generation via OpenRouter, Together AI, Replicate, and fal.ai",
"type": "module",
"main": "dist/index.js",
"bin": {
"mcp-image-generator": "dist/index.js"
},
"files": [
"dist",
"README.md",
"logo.png"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"image-generation",
"openrouter",
"together-ai",
"replicate",
"fal-ai",
"ai",
"claude-code",
"cursor",
"claude-desktop",
"opencode",
"model-context-protocol"
],
"author": "fdciabdul",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://git.imtaqin.id/fdciabdul/MCP-IMAGE-GENERATOR.git"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.5.0",
"typescript": "^6.0.2"
}
}