package.json•1.72 kB
{
"name": "orshot-mcp-server",
"version": "1.9.0",
"description": "Orshot's MCP Server lets you dynamically generate images from your templates from your prompts in Claude, Cursor or any app that supports MCP Servers",
"type": "module",
"main": "build/index.js",
"bin": {
"orshot-mcp-server": "./build/index.js"
},
"scripts": {
"build": "tsc && chmod +x build/index.js",
"start": "node build/index.js",
"dev": "tsc && node build/index.js",
"watch": "tsc --watch",
"clean": "rm -rf build",
"test": "npm run build && node --test build/test.js",
"test:coverage": "npm run build && node --test --experimental-test-coverage build/test.js",
"lint": "echo \"Linting not configured\"",
"validate": "tsc --noEmit",
"health-check": "node -e \"console.log('Server health check: OK')\"",
"audit": "npm audit --audit-level moderate",
"security-check": "npm audit --audit-level high"
},
"keywords": [
"mcp",
"orshot",
"image-generation",
"api",
"claude",
"ai",
"automation",
"studio-templates",
"production"
],
"author": {
"name": "Rishi Mohan",
"email": "iamrishi.ms@gmail.com"
},
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"files": [
"build",
"README.md",
"LICENSE"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.15.0",
"zod": "^3.25.74",
"typescript": "^5.8.3"
},
"devDependencies": {
"@types/node": "^24.0.10"
},
"repository": {
"type": "git",
"url": "https://github.com/rishimohan/orshot-mcp-server.git"
},
"bugs": {
"url": "https://github.com/rishimohan/orshot-mcp-server/issues"
},
"homepage": "https://orshot.com"
}