01cloud-mcp
Verified Safeby Ashutosh-Baral
Overview
Provides a Model Context Protocol (MCP) server that acts as a proxy for the 01cloud API, enabling external clients (like Claude Desktop) to manage cloud resources through a defined tool interface.
Installation
go build -o server ./cmd/server && go build -o host ./cmd/host && export API_TOKEN="YOUR_01CLOUD_API_TOKEN" && ./hostEnvironment Variables
- API_TOKEN
- API_BASE_URL
- SERVER_NAME
- SERVER_VERSION
- DEBUG
Security Notes
The project correctly uses environment variables for sensitive API tokens, preventing hardcoding. It runs an internal MCP server as a subprocess, communicating via stdio, which is a controlled environment. The HTTP host listens only on 127.0.0.1 by default, limiting external exposure. The use of 'Access-Control-Allow-Origin: *' for SSE is noted but acceptable for a local integration host. No 'eval' or similar dangerous patterns were found. Proper error handling and context-aware HTTP clients are used.
Similar Servers
Unla
Transforms existing MCP Servers and APIs into MCP protocol-compliant endpoints through configuration, enabling LLM tool calling without code changes.
toolhive-registry-server
The central metadata hub for enterprise Model Context Protocol (MCP) server governance and discovery, implementing the official MCP Registry API specification.
osmmcp
Enables LLMs to interact with OpenStreetMap data through a rich set of geospatial tools, including geocoding, routing, and points of interest search.
mcp-cli
A command-line interface tool for managing Model Context Protocol (MCP) server configuration files across various AI tools.