package.json•1.18 kB
{
"name": "mcp-docker-server",
"version": "1.0.0",
"description": "Docker Model Context Protocol (MCP) Server - Allows AI assistants like Claude to manage Docker containers through the MCP protocol",
"main": "src/index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node src/index.js",
"start:server": "./scripts/start-server.sh",
"stop:server": "./scripts/stop-server.sh"
},
"keywords": [
"mcp",
"docker",
"claude",
"ai",
"container-management",
"model-context-protocol",
"anthropic",
"docker-compose",
"devops"
],
"author": "Marcelo Matos <marcelofmatos@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/marcelofmatos/mcp-docker-server.git"
},
"bugs": {
"url": "https://github.com/marcelofmatos/mcp-docker-server/issues"
},
"homepage": "https://github.com/marcelofmatos/mcp-docker-server#readme",
"type": "module",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.18.2",
"dockerode": "^4.0.8",
"mcp-docker": "^1.0.0",
"zod": "^3.25.76"
}
}