Cloud VM MCP
This server acts as an MCP server that enables you to manage and control virtual machines across multiple cloud providers (AWS, Azure, and Alibaba Cloud) through a unified interface.
list_providers: List all configured cloud providers and their associated accounts/directories.list_vms: List all VMs across providers, with optional filtering by provider, tenant (account/directory alias), or region.get_vm_details: Fetch detailed information about a specific VM using its composite ID (provider:tenant:region:instance_id).start_vm: Start a stopped virtual machine.stop_vm: Stop a running VM, with an optionalforceflag for immediate (non-graceful) shutdown.reboot_vm: Reboot a virtual machine.
It provides a consistent VM representation and identifier format across AWS (EC2), Azure (VMs across directories/subscriptions), and Alibaba Cloud (ECS instances).
Enables management of virtual machines on Alibaba Cloud, including listing, starting, stopping, and inspecting VMs across multiple accounts and regions.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Cloud VM MCPlist all VMs in my AWS production account"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Cloud VM MCP: Model Context Protocol for Cloud VM Management
Cloud VM MCP is a Model Context Protocol (MCP) server for managing and viewing virtual machines across multiple cloud providers (AWS, Azure, Alibaba Cloud). It enables AI assistants to list, inspect, and control VMs through a unified interface.
Installation π¦
# Install from PyPI
pip install cloud-vm-mcp-py
# Or using uv
uv add cloud-vm-mcp-pyRelated MCP server: MCP Cloud Services Server
Usage Guide π
VM MCP can be used in two ways: as an MCP server or as a direct command-line tool.
MCP Server Usage
Start the MCP server:
uv run vm-mcpAvailable MCP Tools:
list_vms: List all VMs across configured providers
Parameters:
provider(optional),tenant(optional),region(optional)
list_providers: List all configured cloud providers
Parameters: None
get_vm_details: Get detailed information about a specific VM
Parameters:
vm_id(composite ID format:provider:tenant:region:instance)
start_vm: Start a virtual machine
Parameters:
vm_id
stop_vm: Stop a virtual machine
Parameters:
vm_id,force(optional, default: false)
Integration with Claude Desktop
To use Cloud VM MCP with Claude Desktop, add the following configuration to your claude_desktop_config.json:
{
"mcpServers": {
"vm": {
"command": "uvx",
"args": ["cloud-vm-mcp-py"],
"env": {
"MCP_TRANSPORT": "stdio",
"PROVIDERS_CONFIG_PATH": "/path/to/your/providers.yaml"
}
}
}
}Configuration File Location:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.json
Direct Command-Line Usage
You can manage VMs directly using the CLI:
List all VMs:
PROVIDERS_CONFIG_PATH=./providers.yaml uv run python cli.py listFilter by provider/tenant/region:
uv run python cli.py list --provider aws --tenant production --region us-east-1Get VM details:
uv run python cli.py info aws:production:us-east-1:i-1234567890abcdef0Start/Stop VMs:
uv run python cli.py start aws:production:us-east-1:i-1234567890abcdef0
uv run python cli.py stop azure:corp-main:eastus:web-server --forceList configured providers:
uv run python cli.py providersMCP Inspector
You can inspect and test the MCP server using the MCP Inspector:
npx @modelcontextprotocol/inspector uv run vm-mcp -e PROVIDERS_CONFIG_PATH=/path/to/providers.yamlKey Features π
Multi-Provider Support: Manage VMs across AWS, Azure, and Alibaba Cloud from a single interface
Multi-Account Support: Configure multiple AWS accounts and Azure directories
Unified VM Model: Consistent VM representation across providers
Filtering: Filter VMs by provider, tenant (account/directory), or region
Power Management: Start and stop VMs with optional force flag
Hot-Reload: Configuration changes are automatically detected and applied
MCP Integration: Provides tools for AI assistants through the Model Context Protocol
Requirements π
Python 3.10 or higher
boto3: For AWS EC2 operations
azure-identity, azure-mgmt-compute, azure-mgmt-network: For Azure VM operations
alibabacloud-ecs20140526, alibabacloud-tea-openapi: For Alibaba Cloud ECS operations
pyyaml: For YAML configuration parsing
watchdog: For configuration file watching
Configuration βοΈ
Cloud VM MCP uses a YAML configuration file to define cloud provider credentials. Set the PROVIDERS_CONFIG_PATH environment variable to point to your configuration file.
Configuration File Setup
Create a providers.yaml file with your provider credentials:
Example providers.yaml:
providers:
aws:
accounts:
- alias: production
access_key_id: AKIAIOSFODNN7EXAMPLE
secret_access_key: wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY
regions:
- us-east-1
- us-west-2
- alias: staging
access_key_id: AKIAI44QH8DHBEXAMPLE
secret_access_key: je7MtGbClwBF/2Zp9Utk/h3yCo8nvbEXAMPLEKEY
regions:
- us-east-1
azure:
directories:
- alias: corp-main
tenant_id: 00000000-0000-0000-0000-000000000000
client_id: 11111111-1111-1111-1111-111111111111
client_secret: your-client-secret-here
subscription_ids:
- 22222222-2222-2222-2222-222222222222
alibaba:
accounts:
- alias: china-prod
access_key_id: LTAI5tYourAccessKeyId
access_key_secret: YourAccessKeySecret
regions:
- cn-hangzhou
- ap-southeast-1Environment Variables
MCP_TRANSPORT: stdio, sse, streamable-http (defaults to stdio)PROVIDERS_CONFIG_PATH: Path to YAML configuration file (required)VM_MCP_CONFIRM_REQUIRED_TOOLS: Comma-separated tool names that require user confirmation before running (defaults tostart_vm,stop_vm,reboot_vm). The confirmation prompt is sent via the MCP elicitation protocol, so it appears only in clients that support elicitation (e.g. Claude Code, MCP Inspector); other clients run the tool unprompted. Set to an empty value to disable confirmation for all tools.
Security Recommendations
Store the configuration file with restricted permissions (
chmod 600 providers.yaml)Never commit credentials to version control
Consider using environment variables for sensitive values in production
VM Identifier Format π
VMs are identified using a composite ID format:
{provider}:{tenant_alias}:{region}:{instance_id}Examples:
AWS:
aws:production:us-east-1:i-1234567890abcdef0Azure:
azure:corp-main:eastus:web-server-01Alibaba:
alibaba:china-prod:cn-hangzhou:i-bp1234567890abcdef
Timeout Configuration β±οΈ
Per-request timeout: 60 seconds
Total query timeout: 180 seconds (3 minutes) for multi-provider queries
Development & Testing π§ͺ
Setup
Clone the repository
Install dependencies:
uv syncSetup pre-commit:
uv run pre-commit install
Running Tests
# Run all tests
uv run pytest tests/ -v
# Run with coverage
uv run pytest tests/ --cov=vm_mcp --cov-report=htmlCode Quality
uv run ruff check .
uv run ruff format .Publishing to PyPI
rm -rf dist
uv build
uv publish --username __token__ --password YOUR_PYPI_API_KEYFuture Roadmap πΊοΈ
Firewall rules viewing
Elastic IP management
RAM/CPU/GPU details
Scheduled start/stop operations
License
MIT License - See LICENSE for details.
Available Tools
6 toolsget_vm_detailsA
Get detailed information about a specific virtual machine.
Args:
vm_id: The composite VM ID (format: provider:tenant:region:instance_id)
Returns:
YAML formatted string containing VM details or error information
| Name | Required | Description | Default |
|---|---|---|---|
| vm_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full responsibility. It states the return format (YAML string containing details or error) and specifies the vm_id format, implying a read-only, idempotent operation. It could be improved by explicitly noting no side effects.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise with two short sections. The first sentence immediately states the purpose, followed by parameter and return details. No unnecessary words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With one parameter and an output schema (though not shown), the description covers parameter usage and return type. It lacks error condition details, but for a simple get tool, this is adequate.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has 0% description coverage, but the description adds significant meaning by explaining the vm_id composite format ('provider:tenant:region:instance_id'). This helps an agent correctly construct the parameter beyond the raw schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the function: 'Get detailed information about a specific virtual machine.' The verb 'get' and noun 'details' precisely indicate a read operation, distinguishing it from sibling tools like list_vms (list all) or start_vm (mutate).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description specifies that the tool retrieves details for one VM. While it doesn't explicitly state when not to use it, the sibling context (list_providers, list_vms, etc.) provides implicit guidance. A brief mention of alternatives would improve clarity.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_providersA
List all configured cloud providers and their accounts/directories.
Returns:
YAML formatted string containing provider information
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided. Description only mentions output format (YAML string) but reveals no side effects, authentication needs, or other behavioral traits.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, zero waste. Front-loaded with action and outcome. Every sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter list tool with an output schema, the description is mostly complete. Could be more specific about 'provider information' but overall adequate.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
No parameters exist, so schema coverage is 100%. Baseline for 0 params is 4. Description adds nothing beyond schema, which is sufficient.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'List all configured cloud providers and their accounts/directories,' using a specific verb and resource. It distinguishes from sibling tools which focus on VMs.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance on when to use this tool versus alternatives. The context implies it is for listing providers, distinct from VM operations, but lacks direct usage instructions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_vmsA
List all virtual machines across configured cloud providers.
Args:
provider: Optional filter by provider ('aws' or 'azure')
tenant: Optional filter by tenant alias (AWS account alias or Azure directory alias)
region: Optional filter by cloud region (e.g., 'us-east-1', 'eastus')
Returns:
YAML formatted string containing VM list or error information
| Name | Required | Description | Default |
|---|---|---|---|
| provider | No | ||
| tenant | No | ||
| region | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations exist, so the description carries full burden. It states the tool lists VMs and returns a YAML string, but lacks details on behavior when no filters are given (implies all VMs), performance, pagination, or permissions. Adequate but minimal.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise with a clear header and structured Args/Returns sections. Every sentence adds value with no wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no required parameters and an existing output schema, the description covers the tool's purpose, filters, and return format. Missing details like default behavior (list all VMs) are minor but don't hinder understanding.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0% (no parameter descriptions in schema). The description adds meaning for all three parameters: provider filters by 'aws' or 'azure', tenant by alias, region with examples. This compensates well, though it could specify case sensitivity or invalid values.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'List all virtual machines across configured cloud providers,' which is a specific verb and resource. It differentiates from siblings like get_vm_details (details of a specific VM) and list_providers (list providers), making its purpose distinct.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description mentions optional filters but does not explicitly state when to use this tool versus alternatives (e.g., when to use get_vm_details instead). The context of sibling tools provides implicit guidance, but no direct comparison or when-not-to-use advice is given.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
reboot_vmA
Reboot a virtual machine.
Args:
vm_id: The composite VM ID (format: provider:tenant:region:instance_id)
Returns:
YAML formatted string indicating success or failure
| Name | Required | Description | Default |
|---|---|---|---|
| vm_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. It states the action but does not disclose side effects (e.g., downtime), required permissions, or behavior if VM is already stopped.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences plus structured args/returns, no fluff, front-loaded with the core action.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Adequately covers param format and return, but lacks preconditions (e.g., VM must be running), error handling, and permission context, which are important for a disruptive action.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, so description compensates by specifying the composite VM ID format: 'provider:tenant:region:instance_id', which adds critical context beyond the schema's bare type field.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action 'Reboot a virtual machine' and distinguishes it from sibling tools like start_vm and stop_vm by focusing on restarting an already running VM.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for restarting a VM but provides no explicit guidance on when to choose reboot over start/stop, nor when not to use it (e.g., when VM is off).
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
start_vmA
Start a virtual machine.
Args:
vm_id: The composite VM ID (format: provider:tenant:region:instance_id)
Returns:
YAML formatted string indicating success or failure
| Name | Required | Description | Default |
|---|---|---|---|
| vm_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must fully disclose behavior. It states it starts a VM and returns a YAML success/failure string. However, it lacks details like prerequisites (VM must be stopped), permissions, or side effects.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise with no extraneous words. The purpose is front-loaded, and the format follows a clear Args/Returns structure.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the simple one-parameter tool and presence of an output schema, the description covers the essential input format and return type. It could benefit from mentioning any preconditions (e.g., VM must be in stopped state), but it is largely adequate.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has 0% description coverage for the single parameter. The description adds value by specifying the required format 'provider:tenant:region:instance_id', which is critical for correct invocation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Start a virtual machine' β a specific verb and resource. It distinguishes from siblings like stop_vm and reboot_vm, providing unique purpose.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description does not explicitly state when to use this tool versus alternatives (e.g., reboot_vm or stop_vm). The purpose is implied by the name and context, but no direct guidance is given.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
stop_vmA
Stop a virtual machine.
Args:
vm_id: The composite VM ID (format: provider:tenant:region:instance_id)
force: Force stop without graceful shutdown (default: False)
Returns:
YAML formatted string indicating success or failure
| Name | Required | Description | Default |
|---|---|---|---|
| vm_id | Yes | ||
| force | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It mentions the force option and its effect (force stop without graceful shutdown) but does not disclose potential data loss, permission requirements, or whether the operation is reversible. Some behavioral context is present, but gaps remain.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise, with only three sentences for the main description plus an Args/Returns section. It is front-loaded with the core purpose. However, the structure could be slightly improved with clearer separation of lines.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (two parameters, no enums, minimal output), the description covers the key points: purpose, parameter details, and return format. It could mention prerequisites (e.g., VM must exist) or side effects, but overall it is sufficient for a basic operation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, but the description adds meaning beyond the schema by specifying the format for vm_id (provider:tenant:region:instance_id) and explaining the force parameter's default and effect. This helps an agent understand parameter usage beyond type constraints.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Stop a virtual machine,' which is a specific verb-resource pair. It distinguishes the tool from sibling tools like start_vm and reboot_vm, as stopping is a distinct operation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use the tool (to stop a VM) but does not provide explicit guidance on when to use force vs. graceful stop, nor does it differentiate from alternatives like reboot_vm or start_vm. Missing context for usage scenarios.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
6 tool updates
v0.4.0- First observed
get_vm_details - First observed
list_providers - First observed
list_vms - First observed
reboot_vm - First observed
start_vm - First observed
stop_vm
TDQS
Scored across 6 tools
Each tool has a unique and clearly distinct purpose: listing providers, listing VMs, getting VM details, and power operations (start, stop, reboot). There is no overlap or ambiguity.
All tool names follow a consistent verb_noun pattern in snake_case (e.g., get_vm_details, start_vm). No mixing of naming conventions.
Six tools is a well-scoped set for managing virtual machines, covering essential listing, details, and power actions without being excessive or insufficient.
The set covers listing, details, and power operations but lacks create, delete, or modify VM capabilities, which are notable gaps for full lifecycle management.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Massed Compute MCP β GPU inventory, VM lifecycle, billing, SSH keys, and setup recipes.
Provides capabilities that let LLM agents perform a range of infrastructure management tasks.
MCP-first control plane for ProAgentStore agents and private instances.
The Google Compute Engine MCP server is a fully-managed Model Context Protocol server that provides tools to manage Google Compute Engine resources through AI agents. It enables capabilities including instance management (creating, starting, stopping, resetting, listing), disk management, handling instance templates and group managers, viewing machine and accelerator types, managing images, and accessing reservation and commitment information. The server operates as a zero-deployment, enterprise-grade endpoint at https://compute.googleapis.com/mcp with built-in IAM-based security.
Related MCP Servers
- AlicenseBqualityDmaintenanceEnables AI assistants to interact with and manage Google Cloud Platform resources including Compute Engine, Cloud Run, Storage, BigQuery, and other GCP services through a standardized MCP interface.16MIT
- AlicenseCqualityDmaintenanceEnables AI assistants to manage multi-cloud resources (AWS, Azure, GCP) including resource operations, cost analysis, monitoring metrics, and security compliance checks through natural language commands.26162MIT
- AlicenseNot gradedqualityCmaintenanceEnables AI assistants to manage LXD containers and virtual machines through a standardized MCP interface for lifecycle management, image operations, and server monitoring.8MIT
- AlicenseNot gradedqualityDmaintenanceManages AWS, Azure, and Hetzner Cloud resources, and executes remote SSH commands via MCP integration.2MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sondt2709/cloud-vm-mcp-py'
If you have feedback or need assistance with the MCP directory API, please join our Discord server