{
"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.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 146 days ago.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
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)