@dfeirstein/image-server
Version:
MCP server for creating, editing, and combining images with OpenAI models
55 lines (54 loc) • 1.27 kB
JSON
{
"name": "@dfeirstein/image-server",
"version": "1.0.5",
"description": "MCP server for creating, editing, and combining images with OpenAI models",
"main": "dist/index.js",
"bin": {
"image-mcp-server": "dist/index.js"
},
"files": [
"dist",
"README.md",
"docs/prompt-recipes.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"watch:ts": "tsc -w",
"watch:node": "nodemon",
"dev": "npm run build && npm-run-all -p watch:*",
"start": "node dist/index.js",
"test": "vitest",
"prepublishOnly": "npm run build"
},
"mcp": {
"tools": [
"create_image"
]
},
"engines": {
"node": ">=18"
},
"keywords": ["mcp", "image", "openai", "dall-e", "gpt-image-1", "model-context-protocol", "ai"],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@modelcontextprotocol/sdk": "latest",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"openai": "^4.96.0",
"zod": "^3.24.3",
"zod-to-json-schema": "^3.24.5"
},
"devDependencies": {
"@types/node": "^22.14.1",
"nodemon": "^3.1.10",
"npm-run-all": "^4.1.5",
"supertest": "^7.1.0",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.3",
"vitest": "^3.1.2"
}
}