Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"cloudgenie": {
"env": {
"CLOUDGENIE_BACKEND_URL": "http://localhost:8080"
},
"command": "/path/to/cloudgenie-mcp-server"
}
}
}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 implementation in Go for the CloudGenie Internal Developer Platform (IDP). This server provides AI assistants with direct access to CloudGenie's infrastructure management APIs.
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.
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 cloud / devops
MCP server for using the GitLab API
MCP Server for GCP environment for interacting with various Observability APIs.
⚡ A Simple / Speedy / Secure Link Shortener with Analytics, 100% run on Cloudflare.
Heroku Platform MCP Server using the Heroku CLI
MCP Security Weekly
Get CVE alerts and security updates for Idp Cloudgenie 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 implementation in Go for the CloudGenie Internal Developer Platform (IDP). This server provides AI assistants with direct access to CloudGenie's infrastructure management APIs.
This MCP server acts as a bridge between AI assistants (like Claude) and the CloudGenie backend API, enabling natural language interactions for infrastructure provisioning, resource management, and blueprint operations.
┌─────────────┐ ┌──────────────────┐ ┌─────────────────┐
│ │ MCP │ │ HTTP │ │
│ AI Assistant│◄───────►│ MCP Server (Go) │◄────────│ CloudGenie API │
│ (Claude) │ stdio │ │ │ Backend │
└─────────────┘ └──────────────────┘ └─────────────────┘
# Clone the repository
git clone https://github.com/deepakvbansode/idp-cloudgenie-mcp-server.git
cd idp-cloudgenie-mcp-server
# Download dependencies
go mod download
# Build the server
go build -o cloudgenie-mcp-server .
CLOUDGENIE_BACKEND_URL: URL of the CloudGenie backend API (default: http://localhost:8080)Example:
export CLOUDGENIE_BACKEND_URL="https://api.cloudgenie.example.com"
./cloudgenie-mcp-server
The server runs in stdio mode, communicating through standard input/output:
./cloudgenie-mcp-server
Add to your configuration file (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"cloudgenie": {
"command": "/path/to/cloudgenie-mcp-server",
"env": {
"CLOUDGENIE_BACKEND_URL": "http://localhost:8080"
}
}
}
}
Follow your client's specific configuration format for stdio-based MCP servers.
For Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"cloudgenie": {
"command": "/path/to/cloudgenie-mcp-server"
}
}
}
For other MCP clients, follow their specific configuration format.
Checks the health status of the CloudGenie backend API.
Parameters: None
Example:
{
"name": "cloudgenie_health_check",
"arguments": {}
}
Retrieves all available blueprints from CloudGenie.
Parameters: None
Returns: List of all blueprints with their details (ID, name, description, version, category, tags)
Example:
{
"name": "cloudgenie_get_blueprints",
"arguments": {}
}
Retrieves detailed information about a specific blueprint.
Parameters:
id (string, required): The unique identifier of the blueprintExample:
{
"name": "cloudgenie_get_blueprint",
"arguments": {
"id": "blueprint-123"
}
}
Retrieves all resources from CloudGenie.
Parameters: None
Returns: List of all resources with their details (ID, name, type, status, blueprint ID, timestamps)
Example:
{
"name": "cloudgenie_get_resources",
"arguments": {}
}
Retrieves detailed information about a specific resource.
Parameters:
id (string, required): The unique identifier of the resourceExample:
{
... [View full README on GitHub](https://github.com/deepakvbansode/idp-cloudgenie-mcp-server#readme)