Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"chatgpt-mcp-server": {
"args": [
"-y",
"@Toowiredd/chatgpt-mcp-server"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server that provides Docker management capabilities through a custom GPT interface.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@Toowiredd/chatgpt-mcp-server' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @Toowiredd/chatgpt-mcp-server against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in developer-tools / devops
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
MCP server for accessing Figma plugin console logs and screenshots via Cloudflare Workers or local mode
MCP server for using the GitLab API
MCP Security Weekly
Get CVE alerts and security updates for Chatgpt Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
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