Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"portainer-mcp-http-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
It's just a wrapper of portainer-mcp that allows you to access Portainer via an HTTP client.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
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 devops
MCP server for using the GitLab API
Enhanced MCP server for GitLab: group projects listing and activity tracking
Yunxiao MCP Server provides AI assistants with the ability to interact with the Yunxiao platform. It provides a set of tools that interact with Yunxiao's API, allowing AI assistants to manage Codeup repository, Project, Pipeline, Packages etc.
MCP server for Komodo - manage Docker containers, servers, stacks, and deployments via AI
MCP Security Weekly
Get CVE alerts and security updates for Portainer Mcp Http Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
It's just a wrapper of portainer-mcp that allows you to access Portainer via an HTTP client.
┌─────────────────────────────────────────────────────────────────────────────┐
│ YOUR INFRASTRUCTURE │
│ │
│ Kontainer App portainer-mcp-server Portainer │
│ (your phone) (your server) (your server) │
│ │
│ ┌─────────────┐ ┌────────────────────┐ ┌───────────┐ │
│ │ │ HTTPS/SSE │ │ │ │ │
│ │ Connect │───────────────▶│ Receive requests │─────▶│ Docker │ │
│ │ │ │ Forward to MCP │ │ Swarm │ │
│ │ Control │◀───────────────│ Return results │◀─────│ K8s │ │
│ │ │ Responses │ │ │ │ │
│ └─────────────┘ └────────────────────┘ └───────────┘ │
│ │
│ ● Your data stays on your servers │
│ ● Your credentials never leave your infrastructure │
│ ● No third-party services involved │
│ │
└─────────────────────────────────────────────────────────────────────────────┘
Your Portainer API token and password never leave your infrastructure.
# Install latest version (v0.7.0)
curl -fsSL https://raw.githubusercontent.com/1buck/portainer-mcp-http-server/main/install.sh | bash
# Install specific version
curl -fsSL https://raw.githubusercontent.com/1buck/portainer-mcp-http-server/main/install.sh | bash -s -- --version v0.7.0
# Show all options
curl -fsSL https://raw.githubusercontent.com/1buck/portainer-mcp-http-server/main/install.sh | bash -s -- --help
docker run -d \
-p 8080:8080 \
-e PORTAINER_URL=https://portainer.example.com \
-e PORTAINER_TOKEN=your-token \
-e MCP_PASSWORD=your-password \
-e MCP_BASE_URL=192.168.1.50:8080 \
-e MCP_READ_ONLY=false \
-e MCP_DEBUG=false \
ghcr.io/1buck/portainer-mcp-server:latest
version: '3.8'
services:
portainer-mcp-server:
image: ghcr.io/1buck/portainer-mcp-server:latest
ports:
- "8080:8080"
environment:
- PORTAINER_URL=https://portainer.example.com
- PORTAINER_TOKEN=your-token
- MCP_PASSWORD=your-password
- MCP_BASE_URL=192.168.1.50:8080
- MCP_READ_ONLY=false
- MCP_DEBUG=false
- MCP_SKIP_VERSION_CHECK=false
git clone https://github.com/1buck/portainer-mcp-http-server.git
cd portainer-mcp-http-server
go build -o portainer-mcp-server .
The binary is self-contained - it automatically extracts and uses the bundled portainer-mcp binary on supported platforms.
# Basic usage
./portainer-mcp-server \
-portainer-url http://localhost:9000 \
-portainer-token YOUR_TOKEN \
-password YOUR_PASSWORD \
-base-url 192.168.1.50:8080
# All options
./portainer-mcp-server \
-portainer-url http://localhost:9000 \
-portainer-token YOUR_TOKEN \
-password YOUR_PASSWORD \
-listen :8080 \
-base-url 192.168.1.50:80
... [View full README on GitHub](https://github.com/1buck/portainer-mcp-http-server#readme)