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_tenantsList all your environments with their status, tools, and URLs
aithroyz_get_tenantGet detailed information about a specific environment by slug
aithroyz_create_tenant_planGenerate a new deployment plan with specified tools, region, and TTL
aithroyz_provision_tenantSubmit a plan for approval and trigger deployment
aithroyz_destroy_tenantDestroy 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