package.json•944 B
{
"name": "opus-mcp-server",
"version": "1.0.0",
"description": "MCP server for Opus Job Operator API - Programmatically interact with Opus workflows",
"type": "module",
"main": "./build/index.js",
"bin": {
"opus-mcp-server": "./build/index.js"
},
"files": [
"build",
"README.md",
"LICENSE",
"scripts"
],
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"prepare": "npm run build",
"setup": "node scripts/setup.js",
"test-connection": "node scripts/test-connection.js"
},
"keywords": [
"mcp",
"opus",
"workflow",
"automation",
"model-context-protocol",
"ai-tools"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"axios": "^1.6.0",
"form-data": "^4.0.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"typescript": "^5.3.0"
}
}