Finopsy Cloud Finops
by @krishnakumarmahadevan-cmd
Analyze and optimize cloud costs across AWS, Azure, and GCP. Use when evaluating cloud spending, identifying cost optimization opportunities, analyzing cloud...
clawhub install finopsy-cloud-finopsπ About This Skill
name: finopsy-cloud-finops description: Analyze and optimize cloud costs across AWS, Azure, and GCP. Use when evaluating cloud spending, identifying cost optimization opportunities, analyzing cloud bills, rightsizing instances, finding unused resources, or building cloud cost reports for management. version: 1.0.0 homepage: https://portal.toolweb.in metadata: openclaw: emoji: "βοΈ" requires: env: - TOOLWEB_API_KEY bins: - curl primaryEnv: TOOLWEB_API_KEY os: - linux - darwin - win32 category: security
Finopsy β Cloud FinOps Analyzer βοΈπ΅
Analyze and optimize cloud costs across AWS, Azure, and GCP. Connect your cloud provider credentials and get a comprehensive cost analysis covering spending trends, optimization opportunities, rightsizing recommendations, unused resource detection, and actionable savings estimates.
Built by a CISSP/CISM certified security professional at ToolWeb.in
When to Use
Prerequisites
TOOLWEB_API_KEY β Get your API key from portal.toolweb.incurl must be available on the systemCRITICAL: Always Call the API
Supported Cloud Providers
| Provider | Credential Type | |----------|----------------| | AWS | Access Key ID + Secret Access Key (IAM user with Cost Explorer read access) | | Azure | Subscription ID + Tenant ID + Client ID + Client Secret (Reader role) | | GCP | Service Account JSON key (Billing Viewer role) |
API Endpoint
POST https://portal.toolweb.in/apis/tools/finopsy
Workflow
1. Gather inputs from the user:
- provider β Cloud provider: "aws", "azure", or "gcp"
- credentials β Provider-specific credentials (see below)
- analysisMonths β How many months to analyze (default: 3)
AWS credentials:
{
"access_key_id": "AKIA...",
"secret_access_key": "..."
}
Azure credentials:
{
"subscription_id": "...",
"tenant_id": "...",
"client_id": "...",
"client_secret": "..."
}
GCP credentials:
{
"service_account_json": "..."
}
Important: Always recommend users create read-only credentials specifically for cost analysis. Never use admin or root credentials.
2. Call the API:
curl -s -X POST "https://portal.toolweb.in/apis/tools/finopsy" \
-H "Content-Type: application/json" \
-H "X-API-Key: $TOOLWEB_API_KEY" \
-d '{
"provider": "aws",
"credentials": {
"access_key_id": "",
"secret_access_key": ""
},
"sessionId": "",
"userId": 0,
"timestamp": "",
"analysisMonths": 3
}'
3. Present results with cost breakdown, trends, and savings opportunities.
Output Format
βοΈ Finopsy Cloud Cost Analysis
ββββββββββββββββββββββββββββββProvider: [AWS/Azure/GCP]
Analysis Period: [X months]
π΅ Total Spend: $[amount]
π Monthly Trend: [increasing/decreasing/stable]
π Cost Breakdown by Service:
[Service 1]: $[amount] ([%])
[Service 2]: $[amount] ([%])
[Service 3]: $[amount] ([%])
π‘ Optimization Opportunities:
1. [Recommendation] β Est. savings: $[amount]/month
2. [Recommendation] β Est. savings: $[amount]/month
3. [Recommendation] β Est. savings: $[amount]/month
π Unused Resources Found:
[List of idle/unused resources]
π° Total Potential Savings: $[amount]/month
π Full report powered by ToolWeb.in
Security Note
Credentials are used only for the duration of the analysis and are never stored. For maximum security, create dedicated read-only IAM roles/service accounts for cost analysis and rotate credentials after use.
Error Handling
TOOLWEB_API_KEY is not set: Tell the user to get an API key from https://portal.toolweb.inExample Interaction
User: "Analyze our AWS cloud costs"
Agent flow: 1. Ask: "I'll analyze your AWS spending. I need: - AWS Access Key ID and Secret Access Key (read-only recommended) - How many months should I analyze? (default: 3)" 2. User provides credentials 3. Call API with provider="aws" and credentials 4. Present cost breakdown, trends, and optimization recommendations
Pricing
About
Created by ToolWeb.in β a security-focused MicroSaaS platform with 200+ security APIs, built by a CISSP & CISM certified professional. Trusted by security teams in USA, UK, and Europe and we have platforms for "Pay-per-run", "API Gateway", "MCP Server", "OpenClaw", "RapidAPI" for execution and YouTube channel for demos.
Related Skills
Tips
β‘ When to Use
βοΈ Configuration
TOOLWEB_API_KEY β Get your API key from portal.toolweb.incurl must be available on the system