
Docker Management
STDIOModel Context Protocol server for Docker container management through natural language.
Model Context Protocol server for Docker container management through natural language.
A Model Context Protocol (MCP) server that provides Docker management capabilities through a custom GPT interface.
To install ChatGPT MCP Server for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @Toowiredd/chatgpt-mcp-server --client claude
git clone https://github.com/toowiredd/chatgpt-mcp-server.git cd chatgpt-mcp-server
npm install
cp env.example .env # Edit .env with your configuration
npm run build
npm run docker:build
npm run docker:run
Or manually:
docker run -d \ -p 3001:3001 \ --env-file .env \ -v /var/run/docker.sock:/var/run/docker.sock \ chatgpt-mcp-server
npm run build
- Build the TypeScript codenpm run watch
- Watch for changes and rebuildnpm run inspector
- Run the MCP inspector toolAPI_KEY
- API authentication keyHTTP_PORT
- Server port (default: 3001)RATE_LIMIT_REQUESTS
- Maximum requests per windowRATE_LIMIT_WINDOW
- Window size in millisecondsThe server implements robust resource management:
MIT