Skip to main content
Glama
wagonbomb

Megaraptor MCP

by wagonbomb

deploy_server_cloud

Deploy a Velociraptor server on AWS or Azure cloud infrastructure using CloudFormation or ARM templates for digital forensics and incident response.

Instructions

Deploy Velociraptor server on cloud infrastructure.

Deploys using CloudFormation (AWS) or ARM templates (Azure).

Args: cloud_provider: Cloud provider - 'aws' or 'azure' profile: Deployment profile ('standard' or 'enterprise') region: Cloud region (defaults to us-east-1 for AWS, eastus for Azure) instance_type: VM instance type (auto-selected based on profile) server_hostname: Hostname for server (defaults to public IP)

Returns: Deployment details including cloud resource IDs and URLs.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cloud_providerYes
profileNostandard
regionNo
instance_typeNo
server_hostnameNo

Implementation Reference

  • The handler function deploy_server_cloud acts as a wrapper for deploy_server, allowing cloud-specific deployment parameters.
    async def deploy_server_cloud(
        cloud_provider: str,
        profile: str = "standard",
        region: Optional[str] = None,
        instance_type: Optional[str] = None,
        server_hostname: Optional[str] = None,
    ) -> list[TextContent]:
        """Deploy Velociraptor server on cloud infrastructure.
    
        Deploys using CloudFormation (AWS) or ARM templates (Azure).
    
        Args:
            cloud_provider: Cloud provider - 'aws' or 'azure'
            profile: Deployment profile ('standard' or 'enterprise')
            region: Cloud region (defaults to us-east-1 for AWS, eastus for Azure)
            instance_type: VM instance type (auto-selected based on profile)
            server_hostname: Hostname for server (defaults to public IP)
    
        Returns:
            Deployment details including cloud resource IDs and URLs.
        """
        return await deploy_server(
            deployment_type=cloud_provider,
            profile=profile,
            server_hostname=server_hostname or "localhost",
        )

Latest Blog Posts

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/wagonbomb/megaraptor-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server