Glama
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Glama
MCP
Servers
ChatGPT MCP Server
by
Toowiredd
Verified
GitHub
Virtualization
TypeScript
Reddit
Discord
Overview
Inspect
New
Schema
Related Servers
Reviews
Score
Need Help?
View Source Code
Report Issue
chatgpt-mcp-server
src
Dockerfile
env.example
examples.md
.gitignore
nginx.conf
openapi.yaml
package.json
package-lock.json
README.md
setup.sh
smithery.yaml
tsconfig.json
{ "name": "chatgpt-mcp-server", "version": "0.1.0", "description": "A Model Context Protocol server for Docker management through ChatGPT", "private": true, "type": "module", "bin": { "chatgpt-mcp-server": "./build/index.js" }, "files": [ "build" ], "scripts": { "build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"", "prepare": "npm run build", "watch": "tsc --watch", "inspector": "npx @modelcontextprotocol/inspector build/index.js", "start": "node build/index.js", "docker:build": "docker build -t chatgpt-mcp-server .", "docker:run": "docker run -d -p 3001:3001 --env-file .env -v /var/run/docker.sock:/var/run/docker.sock chatgpt-mcp-server" }, "dependencies": { "@modelcontextprotocol/sdk": "0.6.0", "dotenv": "^16.4.7", "openai": "^4.84.0" }, "devDependencies": { "@types/node": "^20.11.24", "typescript": "^5.3.3" }, "repository": { "type": "git", "url": "https://github.com/toowiredd/chatgpt-mcp-server.git" }, "keywords": [ "chatgpt", "docker", "mcp", "model-context-protocol" ], "author": "toowiredd", "license": "MIT" }