maryadawson-code/openclaw-finops
Revenue-gated MCP server for AI cloud cost forecasting. Stop your agents from hallucinating cloud prices.
Platform-specific configuration:
{
"mcpServers": {
"openclaw-finops": {
"command": "npx",
"args": [
"-y",
"openclaw-finops"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
Stop your AI agents from hallucinating cloud costs. Get real pricing forecasts inside the conversation.
[](https://modelcontextprotocol.io) [](https://workers.cloudflare.com) [](LICENSE)
---
OpenClaw FinOps is a remote MCP server that gives AI coding agents accurate, real-time cloud deployment cost forecasts. Instead of your agent guessing that "an EC2 instance costs around $50/month," it calls a tool backed by a verified pricing matrix and returns a line-item breakdown.
One tool. Three providers. Zero hallucinations.
User: "What would it cost to run our API on AWS with an m5.large, a managed Postgres, and Redis?"
Agent (via OpenClaw FinOps):
| Service | Category | Hours | Est. Cost |
|----------------------------|----------|-------|-----------|
| m5.large | Compute | 730 | $70.08 |
| rds.postgres.db.m5.large | Database | 730 | $204.40 |
| elasticache.redis.t3.micro | Cache | 730 | $11.68 |
Total Estimated Monthly Cost: $286.16---
Add this to your claude_desktop_config.json:
{
"mcpServers": {
"openclaw-finops": {
"type": "streamable-http",
"url": "https://openclaw-finops.marywomack.workers.dev/mcp",
"headers": {
"x-api-key": "YOUR_API_KEY"
}
}
}
}Add to your .cursor/mcp.json:
{
"mcpServers": {
"openclaw-finops": {
"type": "streamable-http",
"url": "https://openclaw-finops.marywomack.workers.dev/mcp",
"headers": {
"x-api-key": "YOUR_API_KEY"
}
}
}
}curl -X POST https://openclaw-finops.marywomack.workers.dev/mcp \
-H "Content-TyLoading reviews...