Metadata-Version: 2.4
Name: nimbiq-mcp
Version: 0.1.0
Summary: Nimbiq AI cost intelligence for Claude Code, Cursor, Windsurf and GitHub Copilot
Project-URL: Homepage, https://nimbiq.io
Project-URL: Documentation, https://nimbiq.io
Project-URL: Repository, https://github.com/nimbiq/nimbiq-mcp
Project-URL: Bug Tracker, https://github.com/nimbiq/nimbiq-mcp/issues
Author-email: Akash J Nair <hello@nimbiq.io>
License: BSL-1.1
Keywords: aws,claude,cost,cursor,devops,finops,mcp,terraform
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Build Tools
Requires-Python: >=3.10
Requires-Dist: httpx>=0.24.0
Requires-Dist: mcp>=1.0.0
Description-Content-Type: text/markdown

# nimbiq-mcp

Nimbiq AI cost intelligence for AWS infrastructure —
works inside Claude Code, Cursor, Windsurf, and
GitHub Copilot.

## What it does

As you write Terraform, Nimbiq AI tells you the exact
monthly cost of every AWS resource before you commit.

```
get_resource_cost("AmazonRDS", "db.r5.2xlarge")
→ $700.80/mo on-demand · us-east-1
→ Nimbiq AI suggests: db.t3.medium at $49.64/mo
(saves $651.16/mo — 93% cheaper)
```

## Install

```bash
uvx nimbiq-mcp
```

## Setup

Get your API key from app.nimbiq.io under
Settings → API Keys.

Add to your Claude Code config
(`~/.claude/config.json`):

```json
{
  "mcpServers": {
    "nimbiq": {
      "command": "uvx",
      "args": ["nimbiq-mcp"],
      "env": {
        "NIMBIQ_API_KEY": "niq_live_xxxxx"
      }
    }
  }
}
```

Same config works for Cursor, Windsurf, and
GitHub Copilot — just different config file locations.

## Tools

### get_resource_cost

Get the exact monthly AWS cost for any resource.

| Parameter    | Description                                      |
|--------------|--------------------------------------------------|
| service      | AmazonRDS \| AmazonEC2 \| AmazonElastiCache      |
| resource_key | db.r5.2xlarge \| m5.xlarge \| cache.r6g.large   |
| region       | us-east-1 (optional, defaults to account region) |

### suggest_cheaper_alternative

Get a cheaper alternative with exact savings and
a ready-to-apply Terraform fix.

| Parameter    | Description                                      |
|--------------|--------------------------------------------------|
| service      | AmazonRDS \| AmazonEC2 \| AmazonElastiCache      |
| resource_key | db.r5.2xlarge                                    |
| workload     | production \| staging \| dev \| test             |

## Pricing

Nimbiq MCP is included in the Growth and Scale plans.
Free 15-day trial at nimbiq.io — no credit card required.

## Links

- Website: https://nimbiq.io
- Dashboard: https://app.nimbiq.io
- Support: hello@nimbiq.io

---

© 2026 Nimbiq Innovations Inc. · BSL 1.1
