package.json•1.28 kB
{
"name": "rendi-mcp-server",
"version": "1.0.0",
"type": "module",
"description": "Remote MCP server for Rendi FFmpeg API - run FFmpeg commands in the cloud",
"scripts": {
"dev": "TRANSPORT=http npx tsx src/index.ts",
"build": "npx tsc",
"start": "npm run start:http",
"start:http": "TRANSPORT=http node dist/index.js",
"start:stdio": "node dist/index.js"
},
"keywords": [
"mcp",
"model-context-protocol",
"ffmpeg",
"rendi",
"video-processing",
"audio-processing",
"remote-server",
"smithery"
],
"author": "Rendi MCP Server",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ctaylor86/rendi-mcp-server.git"
},
"bugs": {
"url": "https://github.com/ctaylor86/rendi-mcp-server/issues"
},
"homepage": "https://github.com/ctaylor86/rendi-mcp-server#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.3",
"@smithery/sdk": "^1.0.0",
"express": "^4.18.0",
"cors": "^2.8.5",
"node-fetch": "^3.3.2",
"zod": "^3.25.46"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/express": "^4.17.0",
"@types/cors": "^2.8.0",
"typescript": "^5.0.0",
"tsx": "^4.0.0"
},
"engines": {
"node": ">=20.0.0"
}
}