nable 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- nable-0.1.0/.gitignore +3 -0
- nable-0.1.0/PKG-INFO +45 -0
- nable-0.1.0/README.md +28 -0
- nable-0.1.0/pyproject.toml +38 -0
nable-0.1.0/.gitignore
ADDED
nable-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: nable
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Ask Claude about your cloud and AI bill. Brand alias for finops-mcp.
|
|
5
|
+
Project-URL: Homepage, https://getnable.com
|
|
6
|
+
Project-URL: Documentation, https://getnable.com/docs
|
|
7
|
+
Project-URL: Repository, https://github.com/chaandannn/finopsmcp
|
|
8
|
+
Author-email: Chandan Bukkapatnam <chbu0285@colorado.edu>
|
|
9
|
+
License: Elastic-2.0
|
|
10
|
+
Keywords: aws,azure,claude,cloud cost,cursor,finops,gcp,mcp
|
|
11
|
+
Classifier: License :: Other/Proprietary License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Topic :: System :: Systems Administration
|
|
14
|
+
Requires-Python: >=3.10
|
|
15
|
+
Requires-Dist: finops-mcp>=0.8.78
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
|
|
18
|
+
# nable
|
|
19
|
+
|
|
20
|
+
Ask Claude about your cloud and AI bill, right in your editor.
|
|
21
|
+
|
|
22
|
+
`nable` is the brand alias for [`finops-mcp`](https://pypi.org/project/finops-mcp/).
|
|
23
|
+
Installing `nable` installs `finops-mcp` and gives you the `nable` command. All the
|
|
24
|
+
code lives in `finops-mcp`.
|
|
25
|
+
|
|
26
|
+
## Quick start
|
|
27
|
+
|
|
28
|
+
```sh
|
|
29
|
+
uvx nable
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
Run it in a terminal and it walks you through connecting Claude and your first
|
|
33
|
+
cloud account, then shows your first cost number. An MCP client (Claude Desktop,
|
|
34
|
+
Cursor) runs the same command over stdio to start the server. Any subcommand
|
|
35
|
+
routes to the CLI:
|
|
36
|
+
|
|
37
|
+
```sh
|
|
38
|
+
uvx nable setup
|
|
39
|
+
uvx nable doctor
|
|
40
|
+
uvx nable welcome --demo
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
Local-first: your credentials and raw bill never leave your machine. See
|
|
44
|
+
[getnable.com](https://getnable.com) and the
|
|
45
|
+
[docs](https://getnable.com/docs).
|
nable-0.1.0/README.md
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# nable
|
|
2
|
+
|
|
3
|
+
Ask Claude about your cloud and AI bill, right in your editor.
|
|
4
|
+
|
|
5
|
+
`nable` is the brand alias for [`finops-mcp`](https://pypi.org/project/finops-mcp/).
|
|
6
|
+
Installing `nable` installs `finops-mcp` and gives you the `nable` command. All the
|
|
7
|
+
code lives in `finops-mcp`.
|
|
8
|
+
|
|
9
|
+
## Quick start
|
|
10
|
+
|
|
11
|
+
```sh
|
|
12
|
+
uvx nable
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
Run it in a terminal and it walks you through connecting Claude and your first
|
|
16
|
+
cloud account, then shows your first cost number. An MCP client (Claude Desktop,
|
|
17
|
+
Cursor) runs the same command over stdio to start the server. Any subcommand
|
|
18
|
+
routes to the CLI:
|
|
19
|
+
|
|
20
|
+
```sh
|
|
21
|
+
uvx nable setup
|
|
22
|
+
uvx nable doctor
|
|
23
|
+
uvx nable welcome --demo
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
Local-first: your credentials and raw bill never leave your machine. See
|
|
27
|
+
[getnable.com](https://getnable.com) and the
|
|
28
|
+
[docs](https://getnable.com/docs).
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
# `nable` is a thin brand alias for the `finops-mcp` package. It ships no code of
|
|
6
|
+
# its own: it just depends on finops-mcp and exposes a `nable` console script that
|
|
7
|
+
# points at the same smart entry point, so `uvx nable` works exactly like
|
|
8
|
+
# `uvx finops-mcp` (terminal -> onboarding wizard, MCP client over stdio -> server,
|
|
9
|
+
# any subcommand -> the CLI). finops-mcp stays the canonical, descriptive package;
|
|
10
|
+
# this exists only so the brand command is `uvx nable`.
|
|
11
|
+
[project]
|
|
12
|
+
name = "nable"
|
|
13
|
+
version = "0.1.0"
|
|
14
|
+
description = "Ask Claude about your cloud and AI bill. Brand alias for finops-mcp."
|
|
15
|
+
readme = "README.md"
|
|
16
|
+
requires-python = ">=3.10"
|
|
17
|
+
license = { text = "Elastic-2.0" }
|
|
18
|
+
authors = [{ name = "Chandan Bukkapatnam", email = "chbu0285@colorado.edu" }]
|
|
19
|
+
keywords = ["finops", "mcp", "aws", "azure", "gcp", "cloud cost", "claude", "cursor"]
|
|
20
|
+
classifiers = [
|
|
21
|
+
"License :: Other/Proprietary License",
|
|
22
|
+
"Programming Language :: Python :: 3",
|
|
23
|
+
"Topic :: System :: Systems Administration",
|
|
24
|
+
]
|
|
25
|
+
dependencies = ["finops-mcp>=0.8.78"]
|
|
26
|
+
|
|
27
|
+
[project.urls]
|
|
28
|
+
Homepage = "https://getnable.com"
|
|
29
|
+
Documentation = "https://getnable.com/docs"
|
|
30
|
+
Repository = "https://github.com/chaandannn/finopsmcp"
|
|
31
|
+
|
|
32
|
+
[project.scripts]
|
|
33
|
+
nable = "finops.server:main"
|
|
34
|
+
|
|
35
|
+
[tool.hatch.build.targets.wheel]
|
|
36
|
+
# Metadata-only package: no Python modules to include, just the entry point that
|
|
37
|
+
# resolves into the finops-mcp dependency.
|
|
38
|
+
bypass-selection = true
|