UNPKG

@devinrcai/mcp-image-generator

Version:

MCP server for generating images using ModelScope API - works with Claude Desktop and other MCP clients

57 lines (56 loc) 1.5 kB
{ "name": "@devinrcai/mcp-image-generator", "version": "1.0.1", "description": "MCP server for generating images using ModelScope API - works with Claude Desktop and other MCP clients", "type": "module", "main": "dist/index.js", "bin": { "mcp-image-generator": "dist/cli.js" }, "files": [ "dist/**/*", "README.md", "LICENSE", "mcp.json" ], "scripts": { "build": "tsc", "start": "node dist/index.js", "dev": "tsx src/index.ts", "clean": "rm -rf dist", "prepublishOnly": "npm run clean && npm run build", "postinstall": "echo '\n🎨 MCP Image Generator installed successfully!\n\nQuick start:\n npx mcp-image-generator --help\n\nFor Claude Desktop setup:\n npx mcp-image-generator --setup\n'" }, "keywords": [ "mcp", "model-context-protocol", "image-generation", "ai", "modelscope", "claude-desktop", "npx", "text-to-image", "flux", "cli" ], "author": "MCP Community", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/your-username/mcp-image-generator.git" }, "homepage": "https://github.com/your-username/mcp-image-generator#readme", "bugs": { "url": "https://github.com/your-username/mcp-image-generator/issues" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.0.0", "axios": "^1.7.2", "zod": "^3.23.8" }, "devDependencies": { "@types/node": "^20.14.0", "tsx": "^4.15.0", "typescript": "^5.4.5" } }