Help Center← Back to Dashboard
Getting Started
What is Aithroyz?Quickstart: First EnvironmentCloud CredentialsPlans & Approvals
Environments
OverviewLifecycle PhasesTTL Auto-DestroyExtending TTLDestroying an Environment
Tools Reference
OverviewElastic Stack (SIEM)Wazuh (XDR)MITRE CalderaTheHive & DFIR-IRISVelociraptorOpenCTIGrafana + PrometheusShuffle SOARn8nUptime KumaLLM GatewayOpen WebUIFlowiseOpenClawOllamaQdrantLangfusePortainerGiteaSonarQubeCode ServerMattermostMinIOMetabaseHashiCorp VaultKeycloak SSONetBoxLocalStack
Access & Security
Google SSOTenant IsolationPasskeys & MFATeam Members
API & Integrations
API KeysMCP Tools (Clevername)Terraform ExportWebhooks & Callbacks
Stack Presets
SOC PlatformIR / DFIR LabThreat HuntingQuick Sandbox
Settings
Cloud KeysAPI KeysBillingAudit Log
Troubleshooting
Common IssuesDeployment FailuresDNS & ConnectivityTool Health Checks
Aithroyz Help
Help CenterAPI & IntegrationsMCP Tools

MCP Tools via Clevername

If you use Clevername, Aithroyz is available as a set of MCP tools — control your environments directly from Claude Code, VS Code, or any MCP-compatible client.

The Aithroyz MCP tools are registered in the Clevername MCP hub. Once connected, you can manage environments through natural language — just describe what you want and the AI handles the API calls.

Available tools

aithroyz_list_tenants
List all your environments with their status, tools, and URLs
aithroyz_get_tenant
Get detailed information about a specific environment by slug
aithroyz_create_tenant_plan
Generate a new deployment plan with specified tools, region, and TTL
aithroyz_provision_tenant
Submit a plan for approval and trigger deployment
aithroyz_destroy_tenant
Destroy a live environment and all its cloud resources

Example usage

// In Claude Code with Clevername MCP connected:

// List all environments
aithroyz_list_tenants()

// Create a plan for a DFIR lab
aithroyz_create_tenant_plan({
  tenant_name: "incident-lab",
  tools: ["velociraptor", "thehive", "dfir-iris", "opencti"],
  cloud: "gcp",
  region: "us-east1",
  ttl_hours: 8
})

// Deploy it
aithroyz_provision_tenant({ plan_id: "plan_abc123" })

// Check status
aithroyz_get_tenant({ slug: "incident-lab" })
✓
To connect Clevername to Aithroyz, add your AITHROYZ_API_KEY and AITHROYZ_API_URL in Clevername settings. The MCP tools will activate automatically.
Related Articles
API KeysRead article →Terraform ExportRead article →