whitecapdata-dev 0.1.0__tar.gz → 0.1.1__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.
Files changed (21) hide show
  1. whitecapdata_dev-0.1.1/.github/workflows/publish-mcp.yml +25 -0
  2. {whitecapdata_dev-0.1.0 → whitecapdata_dev-0.1.1}/CONTRIBUTING.md +3 -3
  3. {whitecapdata_dev-0.1.0 → whitecapdata_dev-0.1.1}/PKG-INFO +3 -1
  4. {whitecapdata_dev-0.1.0 → whitecapdata_dev-0.1.1}/README.md +2 -0
  5. {whitecapdata_dev-0.1.0 → whitecapdata_dev-0.1.1}/pyproject.toml +1 -1
  6. {whitecapdata_dev-0.1.0 → whitecapdata_dev-0.1.1}/server.json +2 -2
  7. {whitecapdata_dev-0.1.0 → whitecapdata_dev-0.1.1}/src/homelab_mcp/__init__.py +1 -1
  8. {whitecapdata_dev-0.1.0 → whitecapdata_dev-0.1.1}/.github/workflows/ci.yml +0 -0
  9. {whitecapdata_dev-0.1.0 → whitecapdata_dev-0.1.1}/.github/workflows/release.yml +0 -0
  10. {whitecapdata_dev-0.1.0 → whitecapdata_dev-0.1.1}/.gitignore +0 -0
  11. {whitecapdata_dev-0.1.0 → whitecapdata_dev-0.1.1}/CHANGELOG.md +0 -0
  12. {whitecapdata_dev-0.1.0 → whitecapdata_dev-0.1.1}/LICENSE +0 -0
  13. {whitecapdata_dev-0.1.0 → whitecapdata_dev-0.1.1}/src/homelab_mcp/config.py +0 -0
  14. {whitecapdata_dev-0.1.0 → whitecapdata_dev-0.1.1}/src/homelab_mcp/format.py +0 -0
  15. {whitecapdata_dev-0.1.0 → whitecapdata_dev-0.1.1}/src/homelab_mcp/kube.py +0 -0
  16. {whitecapdata_dev-0.1.0 → whitecapdata_dev-0.1.1}/src/homelab_mcp/server.py +0 -0
  17. {whitecapdata_dev-0.1.0 → whitecapdata_dev-0.1.1}/tests/conftest.py +0 -0
  18. {whitecapdata_dev-0.1.0 → whitecapdata_dev-0.1.1}/tests/test_config.py +0 -0
  19. {whitecapdata_dev-0.1.0 → whitecapdata_dev-0.1.1}/tests/test_format.py +0 -0
  20. {whitecapdata_dev-0.1.0 → whitecapdata_dev-0.1.1}/tests/test_kube.py +0 -0
  21. {whitecapdata_dev-0.1.0 → whitecapdata_dev-0.1.1}/tests/test_server_tools.py +0 -0
@@ -0,0 +1,25 @@
1
+ name: Publish to MCP Registry
2
+
3
+ on:
4
+ workflow_dispatch:
5
+ push:
6
+ tags: ["v*"]
7
+
8
+ jobs:
9
+ publish:
10
+ runs-on: ubuntu-latest
11
+ permissions:
12
+ id-token: write
13
+ contents: read
14
+ steps:
15
+ - uses: actions/checkout@v4
16
+
17
+ - name: Install mcp-publisher
18
+ run: |
19
+ curl -L "https://github.com/modelcontextprotocol/registry/releases/latest/download/mcp-publisher_linux_amd64.tar.gz" | tar xz mcp-publisher
20
+
21
+ - name: Login to the registry (GitHub OIDC)
22
+ run: ./mcp-publisher login github-oidc
23
+
24
+ - name: Publish server.json
25
+ run: ./mcp-publisher publish
@@ -1,12 +1,12 @@
1
- # Contributing to homelab-mcp
1
+ # Contributing to WhiteCapData-Dev
2
2
 
3
3
  Thanks for your interest! This server stays small, focused, and **safe by default** — contributions that preserve those properties merge easiest.
4
4
 
5
5
  ## Getting set up
6
6
 
7
7
  ```bash
8
- git clone https://github.com/Michael-WhiteCapData/homelab-mcp
9
- cd homelab-mcp
8
+ git clone https://github.com/Michael-WhiteCapData/WhiteCapData-Dev
9
+ cd WhiteCapData-Dev
10
10
  uv pip install -e ".[dev]"
11
11
  ```
12
12
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: whitecapdata-dev
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
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
@@ -25,6 +25,8 @@ Requires-Dist: pytest>=8; extra == 'dev'
25
25
  Requires-Dist: ruff>=0.6; extra == 'dev'
26
26
  Description-Content-Type: text/markdown
27
27
 
28
+ <!-- mcp-name: io.github.Michael-WhiteCapData/WhiteCapData-Dev -->
29
+
28
30
  # WhiteCapData-Dev
29
31
 
30
32
  **Operate a k3s / Kubernetes cluster straight from your AI agent — safe by default.**
@@ -1,3 +1,5 @@
1
+ <!-- mcp-name: io.github.Michael-WhiteCapData/WhiteCapData-Dev -->
2
+
1
3
  # WhiteCapData-Dev
2
4
 
3
5
  **Operate a k3s / Kubernetes cluster straight from your AI agent — safe by default.**
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "whitecapdata-dev"
7
- version = "0.1.0"
7
+ version = "0.1.1"
8
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" }
@@ -6,12 +6,12 @@
6
6
  "url": "https://github.com/Michael-WhiteCapData/WhiteCapData-Dev",
7
7
  "source": "github"
8
8
  },
9
- "version": "0.1.0",
9
+ "version": "0.1.1",
10
10
  "packages": [
11
11
  {
12
12
  "registryType": "pypi",
13
13
  "identifier": "whitecapdata-dev",
14
- "version": "0.1.0",
14
+ "version": "0.1.1",
15
15
  "transport": { "type": "stdio" },
16
16
  "environmentVariables": [
17
17
  {
@@ -9,4 +9,4 @@ from .config import Config
9
9
  from .kube import HomelabMCPError, KubeClient
10
10
 
11
11
  __all__ = ["Config", "KubeClient", "HomelabMCPError", "__version__"]
12
- __version__ = "0.1.0"
12
+ __version__ = "0.1.1"