A Model Context Protocol (MCP) server implementation that connects to Bizfly Cloud to manage cloud resources
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"bizfly": {
"env": {
"BIZFLY_REGION": "HaNoi",
"BIZFLY_PASSWORD": "your_password",
"BIZFLY_USERNAME": "your_username"
},
"command": "/absolute/path/to/bizfly-mcp-server"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A comprehensive Model Context Protocol (MCP) server implementation that connects to Bizfly Cloud to manage cloud resources. Built using the mark3labs/mcp-go SDK.
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 cloud
⚡ A Simple / Speedy / Secure Link Shortener with Analytics, 100% run on Cloudflare.
MCP Server for GCP environment for interacting with various Observability APIs.
MCP server for Hostinger API
Apideck Unified API MCP — 229 tools across 200+ SaaS connectors (accounting, HRIS, file storage).
MCP Security Weekly
Get CVE alerts and security updates for Bizflycloud 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 comprehensive Model Context Protocol (MCP) server implementation that connects to Bizfly Cloud to manage cloud resources. Built using the mark3labs/mcp-go SDK.
Clone the repository:
git clone https://github.com/your-username/bizflycloud-mcp-server.git
cd bizflycloud-mcp-server
Build the Docker image:
docker build -t bizfly-mcp-server:latest .
Run the container:
docker run -it --rm \
-e BIZFLY_USERNAME=your_username \
-e BIZFLY_PASSWORD=your_password \
-e BIZFLY_REGION=HaNoi \
bizfly-mcp-server:latest
Using Docker Compose:
Create a .env file:
BIZFLY_USERNAME=your_username
BIZFLY_PASSWORD=your_password
BIZFLY_REGION=HaNoi
BIZFLY_API_URL=https://manage.bizflycloud.vn
Run with docker-compose:
docker-compose up
Clone the repository:
git clone https://github.com/your-username/bizflycloud-mcp-server.git
cd bizflycloud-mcp-server
Set up environment variables:
export BIZFLY_USERNAME=your_username
export BIZFLY_PASSWORD=your_password
export BIZFLY_REGION=HaNoi # Optional, defaults to HaNoi
export BIZFLY_API_URL=https://manage.bizflycloud.vn # Optional, defaults to https://manage.bizflycloud.vn
Install dependencies:
go mod download
Build the server:
go build -o bizfly-mcp-server
Build the server:
go build -o bizfly-mcp-server
Configure your MCP client (Cursor or Claude Desktop) by adding the following to the configuration:
For Cursor:
{
"mcpServers": {
"bizfly": {
"command": "/absolute/path/to/bizfly-mcp-server",
"env": {
"BIZFLY_USERNAME": "your_username",
"BIZFLY_PASSWORD": "your_password",
"BIZFLY_REGION": "HaNoi"
}
}
}
}
For Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"bizfly": {
"command": "/absolute/path/to/bizfly-mcp-server",
"env": {
"BIZFLY_USERNAME": "your_username",
"BIZFLY_PASSWORD": "your_password",
"BIZFLY_REGION": "HaNoi"
}
}
}
}
The server provides comprehensive MCP tools for managing all Bizfly Cloud services. All tool names are prefixed with bizflycloud_ for consistency.
bizflycloud_*)bizflycloud_list_servers - List all Bizfly Cloud serversbizflycloud_get_server - Get detailed information about a serverbizflycloud_start_server - Start a stopped serverbizflycloud_stop_server - Stop a running serverbizflycloud_reboot_server - Soft reboot a server