Cloud OperationsCloud Operations Overview
Cloud Operations Overview
Live infrastructure intelligence across cost, security, reliability, and more.
Cloud Operations Overview
Valqore monitors your cloud infrastructure across security, cost, reliability, and compliance. All operations are read-only.
Via CLI
# Full infrastructure checkup
valqore checkup
# Scoped to specific categories
valqore checkup --scope security,cost
# Target a specific cluster or account
valqore checkup --context prod-cluster --aws-profile productionVia MCP (Claude Desktop)
When configured as an MCP server, ask Claude to check your infrastructure using natural language.
Via API
import { ValqoreClient } from "@valqore/sdk";
const client = new ValqoreClient();
const result = await client.cloudOps.triageEnvironment({
scope: "all",
context: "prod-cluster",
});
console.log(result.incidents);Was this helpful?