Open source Apache-2.0

Open-source cloud cost tools for AI agents

Three open-source tools that give Claude, or any MCP client, real access to your cloud costs. Ask questions in plain language, get answers from your actual billing data, and take an opportunity from discovery to merged pull request without opening a dashboard.

All three are Apache-2.0. One of them needs no account at all.

Compare

Three tools, two of which need an account

Ordered by how much it costs you to try them. Start at the top.

focus-mcp No account

Ask your AI assistant what your cloud actually costs. Queries your FOCUS billing exports directly.

uvx focus-mcp
glassity CLI Account required

The full FinOps loop from your terminal. Flags in, JSON out, stable exit codes.

brew install glassity/tap/glassity
agent-skills Account required

Claude Code plugin. Gives your agent the skills and slash commands to run the loop.

claude plugin marketplace add glassity/agent-skills

focus-mcp

Query your billing data in plain language

FOCUS is the FinOps Open Cost and Usage Specification, the open standard for cloud billing data. AWS, Microsoft and Google Cloud all export it natively, which means one schema and one set of queries work across every provider.

The FOCUS MCP Server connects Claude, or any MCP client, to that data. Questions that used to mean hand-written SQL become one-line prompts.

  • “What are my highest-cost services by region this month?”
  • “Show me commitment discount utilization trends.”
  • “Which accounts have unusual spending patterns?”
  • “Explain the difference between BilledCost and EffectiveCost.”

254 queries from the official FOCUS catalog

Curated per specification version — 36 for v1.0, 41 for v1.1, 53 for v1.2, 58 for v1.3, 66 for v1.4. Each query cites the spec page it came from.

No data warehouse to stand up

DuckDB queries your Parquet exports directly, whether they sit on local disk, S3 or GCS.

Covers the analyses you actually run

Cost allocation, commitment discount tracking, anomaly detection, budget reconciliation and provider comparison.

No Glassity account needed. You need FOCUS exports from AWS, Azure or Google Cloud, and an MCP client such as Claude Desktop or Claude Code.

PyPI

# Run the published package — no clone, no containeruvx focus-mcp # Register it with Claude Code in one commandclaude mcp add focus -e FOCUS_DATA_LOCATION=/path/to/your/focus/data -- uvx focus-mcp

Docker

# Pinned, attested imagedocker pull glassity/focus-mcp:latest claude mcp add focus -- docker run -i --rm \  -v /path/to/your/focus/data:/data:ro \  -e FOCUS_DATA_LOCATION=/data \  glassity/focus-mcp:latest
View focus-mcp on GitHub

glassity CLI

The FinOps loop from your terminal

glassity is the command-line interface to Glassity, a FinOps platform for AWS estates. It reads the same whether a person or an agent runs it: flags in, JSON out, stable exit codes, no prompts on the critical path.

Command groups cover opportunities, cost analysis, recommendations, assignments, governance, and raw API access. There is also a filesystem mount that serves a server-built snapshot of your AWS estate over FUSE as a read-only tree.

Nothing mutates without a second round-trip.

Reads run straight through. Writes stop and show you the exact HTTP request first. Phase one canonicalises the request and issues a single-use HMAC-signed token with a 60-second TTL and a 1.5-second minimum review window. Phase two replays the command with that token. The HMAC covers method, path and body, so any modification invalidates it.

Reads run through, writes stop and print the plan

$ glassity opp list --stage assessment --min-savings 1000Tenant: Example Corp (id: acc_demo) | AWS account: 123456789012ID          STAGE       POTENTIAL/MO  RESOURCES  TITLEopp_7f2a91  assessment  $4182.40      37         Idle NAT gateways in eu-west-1opp_3c8b04  assessment  $1290.00      12         Oversized db.r6g fleet in prod $ glassity opp transition asg_demo123 --target-state execution --comment "rightsizing merged"About to perform a mutation. Re-run with --confirm-token=<TOKEN> to execute.     PATCH https://app.glassity.cloud/api/v1/agent/assignments/asg_demo123/transition?account_id=acc_demo    Authorization: token <REDACTED — sk_live_*********** by glassity binary>     {"comment":"rightsizing merged","target_state":"execution"} Token expires in 1m0s. Cannot be redeemed in less than 1.5s (review window).

No network call yet: those are the exact bytes phase two sends. Values above are examples.

Requires a Glassity account. Sign up free at app.glassity.cloud. Authenticate with glassity auth login via OAuth device flow, or use a Personal Access Token for CI.

Install

# Homebrew (macOS)brew install glassity/tap/glassity # Gogo install github.com/glassity/cli/cmd/glassity@latest

Release tarballs ship for Linux and Darwin on amd64 and arm64, each with SHA-256 checksums.

View glassity CLI on GitHub

agent-skills

Hand the whole loop to your agent

Ask your agent what you spent on AWS last month. Ask which savings opportunities are worth the engineering time, and which are Fool's Gold. Ask whether your reservations still cover your fleet.

This is a Claude Code plugin over the glassity CLI. It ships the skills that teach an agent your cost surface, the subagents that dig into one opportunity at a time, and the slash commands for the full FinOps loop from discovery to closure.

The questions that matter are follow-ups. Which service drove that spike? Is it one account or all of them? What would rightsizing actually save, net of the week it takes? Each one is a different query, and answering them in a conversation is faster than clicking through six screens.

Read-only skills

Cost summaries by service and account, trend analysis, EC2 and RDS usage reports, opportunity discovery.

Mutating skills

Opportunity triage, plan approval and acceptance, pull request registration, closure reporting.

Six slash commands covering the five-step loop:

/finops-discover /finops-assess /finops-align /finops-execute /finops-feedback /finops-status

Requires the glassity binary and a Glassity account. macOS, Linux, or Windows via WSL. Optionally git, gh and jq for the workflow commands. No account yet? Sign up free at app.glassity.cloud.

Install

# Claude Code plugin marketplaceclaude plugin marketplace add glassity/agent-skills/plugin install glassity # npm, if you would rather not use the marketplacenpx @glassity/agent-skills install          # -> ~/.claudenpx @glassity/agent-skills install --here   # -> ./.claude, project-local # then install the CLI and sign inbrew install glassity/tap/glassityglassity auth login
View agent-skills on GitHub

Start here

Two paths, depending on how far you want to go

Try it now, no account

2 minutes
  1. 1 Make sure you have FOCUS exports from your cloud provider
  2. 2 Run uvx focus-mcp
  3. 3 Point your MCP client at it and start asking questions

Run the full loop

10 minutes
  1. 1 Create a free Glassity account at app.glassity.cloud
  2. 2 brew install glassity/tap/glassity
  3. 3 glassity auth login
  4. 4 claude plugin marketplace add glassity/agent-skills then /plugin install glassity
  5. 5 Run /finops-discover
Create a free account

All three are Apache-2.0 and available today.

11

glassity/focus-mcp

MCP server that connects any MCP client to your FOCUS billing data.

Apache-2.0 No account
View on GitHub
0

glassity/cli

The command-line interface to Glassity, built to be run by people and agents alike.

Apache-2.0
View on GitHub
0

glassity/agent-skills

Claude Code plugin: skills, subagents and slash commands over the glassity CLI.

Apache-2.0
View on GitHub

Want the thinking behind the tools rather than the tools themselves? Read A Software Factory for FinOps.