Files
incus-mcp/package.json
kappa 868141876e Enable npx execution for MCP server
Remove import.meta.url entry point guard that prevented npx from
invoking main(), and bump version to 0.1.7.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-08 22:35:43 +09:00

59 lines
1.3 KiB
JSON

{
"name": "@ironclads/incus-mcp",
"version": "0.1.7",
"description": "MCP server for Incus container management",
"main": "build/index.js",
"type": "module",
"exports": {
".": {
"import": "./build/index.js",
"types": "./build/index.d.ts"
}
},
"files": [
"build/",
"src/",
"README.md",
"CLAUDE.md",
"mcp-config-example.json"
],
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"dev": "tsx src/index.ts",
"test": "node test/simple-test.js && node test/resource-test.js",
"test:basic": "node test/simple-test.js",
"test:resources": "node test/resource-test.js",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts"
},
"bin": {
"incus-mcp": "build/index.js"
},
"keywords": [
"mcp",
"incus",
"containers",
"model-context-protocol"
],
"author": "kaffa",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.6.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"jest": "^29.0.0",
"prettier": "^3.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}