whitecapdata-dev 0.1.2__tar.gz → 0.1.3__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.
- {whitecapdata_dev-0.1.2 → whitecapdata_dev-0.1.3}/CHANGELOG.md +6 -0
- {whitecapdata_dev-0.1.2 → whitecapdata_dev-0.1.3}/PKG-INFO +4 -4
- {whitecapdata_dev-0.1.2 → whitecapdata_dev-0.1.3}/pyproject.toml +3 -3
- {whitecapdata_dev-0.1.2 → whitecapdata_dev-0.1.3}/server.json +3 -3
- whitecapdata_dev-0.1.3/src/homelab_mcp/__init__.py +12 -0
- whitecapdata_dev-0.1.2/src/homelab_mcp/__init__.py +0 -12
- whitecapdata_dev-0.1.2/uv.lock +0 -1790
- {whitecapdata_dev-0.1.2 → whitecapdata_dev-0.1.3}/.dockerignore +0 -0
- {whitecapdata_dev-0.1.2 → whitecapdata_dev-0.1.3}/.github/workflows/ci.yml +0 -0
- {whitecapdata_dev-0.1.2 → whitecapdata_dev-0.1.3}/.github/workflows/publish-mcp.yml +0 -0
- {whitecapdata_dev-0.1.2 → whitecapdata_dev-0.1.3}/.github/workflows/release.yml +0 -0
- {whitecapdata_dev-0.1.2 → whitecapdata_dev-0.1.3}/.gitignore +0 -0
- {whitecapdata_dev-0.1.2 → whitecapdata_dev-0.1.3}/CONTRIBUTING.md +0 -0
- {whitecapdata_dev-0.1.2 → whitecapdata_dev-0.1.3}/Dockerfile +0 -0
- {whitecapdata_dev-0.1.2 → whitecapdata_dev-0.1.3}/LICENSE +0 -0
- {whitecapdata_dev-0.1.2 → whitecapdata_dev-0.1.3}/README.md +0 -0
- {whitecapdata_dev-0.1.2 → whitecapdata_dev-0.1.3}/src/homelab_mcp/config.py +0 -0
- {whitecapdata_dev-0.1.2 → whitecapdata_dev-0.1.3}/src/homelab_mcp/format.py +0 -0
- {whitecapdata_dev-0.1.2 → whitecapdata_dev-0.1.3}/src/homelab_mcp/kube.py +0 -0
- {whitecapdata_dev-0.1.2 → whitecapdata_dev-0.1.3}/src/homelab_mcp/server.py +0 -0
- {whitecapdata_dev-0.1.2 → whitecapdata_dev-0.1.3}/tests/conftest.py +0 -0
- {whitecapdata_dev-0.1.2 → whitecapdata_dev-0.1.3}/tests/test_config.py +0 -0
- {whitecapdata_dev-0.1.2 → whitecapdata_dev-0.1.3}/tests/test_format.py +0 -0
- {whitecapdata_dev-0.1.2 → whitecapdata_dev-0.1.3}/tests/test_kube.py +0 -0
- {whitecapdata_dev-0.1.2 → whitecapdata_dev-0.1.3}/tests/test_server_tools.py +0 -0
|
@@ -4,6 +4,12 @@ All notable changes to this project are documented here. The format is based on
|
|
|
4
4
|
[Keep a Changelog](https://keepachangelog.com/), and this project adheres to
|
|
5
5
|
[Semantic Versioning](https://semver.org/).
|
|
6
6
|
|
|
7
|
+
## 0.1.3 (2026-09-23)
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
* Constrain MCP below version 2 so fresh installations retain the supported FastMCP API.
|
|
12
|
+
|
|
7
13
|
## [0.1.2] - 2026-06-22
|
|
8
14
|
|
|
9
15
|
### Added
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
2
|
Name: whitecapdata-dev
|
|
3
|
-
Version: 0.1.
|
|
4
|
-
Summary: WhiteCapData-Dev
|
|
3
|
+
Version: 0.1.3
|
|
4
|
+
Summary: WhiteCapData-Dev — an MCP server to operate a k3s / Kubernetes cluster (health, logs, and guarded restart/scale/delete) straight from your AI agent.
|
|
5
5
|
Project-URL: Homepage, https://github.com/Michael-WhiteCapData/WhiteCapData-Dev
|
|
6
6
|
Project-URL: Repository, https://github.com/Michael-WhiteCapData/WhiteCapData-Dev
|
|
7
7
|
Project-URL: Issues, https://github.com/Michael-WhiteCapData/WhiteCapData-Dev/issues
|
|
@@ -18,7 +18,7 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
18
18
|
Classifier: Topic :: System :: Systems Administration
|
|
19
19
|
Requires-Python: >=3.11
|
|
20
20
|
Requires-Dist: kubernetes>=29
|
|
21
|
-
Requires-Dist: mcp
|
|
21
|
+
Requires-Dist: mcp<2,>=1.2
|
|
22
22
|
Provides-Extra: dev
|
|
23
23
|
Requires-Dist: pytest-cov>=5; extra == 'dev'
|
|
24
24
|
Requires-Dist: pytest>=8; extra == 'dev'
|
|
@@ -4,8 +4,8 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "whitecapdata-dev"
|
|
7
|
-
version = "0.1.
|
|
8
|
-
description = "WhiteCapData-Dev
|
|
7
|
+
version = "0.1.3"
|
|
8
|
+
description = "WhiteCapData-Dev — an MCP server to operate a k3s / Kubernetes cluster (health, logs, and guarded restart/scale/delete) straight from your AI agent."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = { text = "MIT" }
|
|
11
11
|
requires-python = ">=3.11"
|
|
@@ -21,7 +21,7 @@ classifiers = [
|
|
|
21
21
|
"Topic :: System :: Systems Administration",
|
|
22
22
|
]
|
|
23
23
|
dependencies = [
|
|
24
|
-
"mcp>=1.2",
|
|
24
|
+
"mcp>=1.2,<2",
|
|
25
25
|
"kubernetes>=29",
|
|
26
26
|
]
|
|
27
27
|
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-09-29/server.schema.json",
|
|
3
3
|
"name": "io.github.Michael-WhiteCapData/WhiteCapData-Dev",
|
|
4
|
-
"description": "Operate a k3s / Kubernetes cluster from your AI agent
|
|
4
|
+
"description": "Operate a k3s / Kubernetes cluster from your AI agent — safe-by-default MCP server.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"url": "https://github.com/Michael-WhiteCapData/WhiteCapData-Dev",
|
|
7
7
|
"source": "github"
|
|
8
8
|
},
|
|
9
|
-
"version": "0.1.
|
|
9
|
+
"version": "0.1.3",
|
|
10
10
|
"packages": [
|
|
11
11
|
{
|
|
12
12
|
"registryType": "pypi",
|
|
13
13
|
"identifier": "whitecapdata-dev",
|
|
14
|
-
"version": "0.1.
|
|
14
|
+
"version": "0.1.3",
|
|
15
15
|
"transport": { "type": "stdio" },
|
|
16
16
|
"environmentVariables": [
|
|
17
17
|
{
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"""homelab-mcp — operate a k3s / Kubernetes cluster from an MCP client.
|
|
2
|
+
|
|
3
|
+
Exposes read and (guarded) write tools over the Kubernetes API so an agent
|
|
4
|
+
(Claude Code, Claude Desktop, Cursor, …) can inspect cluster health and perform
|
|
5
|
+
safe, allowlisted operations — without shelling out to kubectl.
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
from .config import Config
|
|
9
|
+
from .kube import HomelabMCPError, KubeClient
|
|
10
|
+
|
|
11
|
+
__all__ = ["Config", "KubeClient", "HomelabMCPError", "__version__"]
|
|
12
|
+
__version__ = "0.1.3"
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"""homelab-mcp — operate a k3s / Kubernetes cluster from an MCP client.
|
|
2
|
-
|
|
3
|
-
Exposes read and (guarded) write tools over the Kubernetes API so an agent
|
|
4
|
-
(Claude Code, Claude Desktop, Cursor, …) can inspect cluster health and perform
|
|
5
|
-
safe, allowlisted operations — without shelling out to kubectl.
|
|
6
|
-
"""
|
|
7
|
-
|
|
8
|
-
from .config import Config
|
|
9
|
-
from .kube import HomelabMCPError, KubeClient
|
|
10
|
-
|
|
11
|
-
__all__ = ["Config", "KubeClient", "HomelabMCPError", "__version__"]
|
|
12
|
-
__version__ = "0.1.2"
|