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.
- whitecapdata_dev-0.1.1/.github/workflows/publish-mcp.yml +25 -0
- {whitecapdata_dev-0.1.0 → whitecapdata_dev-0.1.1}/CONTRIBUTING.md +3 -3
- {whitecapdata_dev-0.1.0 → whitecapdata_dev-0.1.1}/PKG-INFO +3 -1
- {whitecapdata_dev-0.1.0 → whitecapdata_dev-0.1.1}/README.md +2 -0
- {whitecapdata_dev-0.1.0 → whitecapdata_dev-0.1.1}/pyproject.toml +1 -1
- {whitecapdata_dev-0.1.0 → whitecapdata_dev-0.1.1}/server.json +2 -2
- {whitecapdata_dev-0.1.0 → whitecapdata_dev-0.1.1}/src/homelab_mcp/__init__.py +1 -1
- {whitecapdata_dev-0.1.0 → whitecapdata_dev-0.1.1}/.github/workflows/ci.yml +0 -0
- {whitecapdata_dev-0.1.0 → whitecapdata_dev-0.1.1}/.github/workflows/release.yml +0 -0
- {whitecapdata_dev-0.1.0 → whitecapdata_dev-0.1.1}/.gitignore +0 -0
- {whitecapdata_dev-0.1.0 → whitecapdata_dev-0.1.1}/CHANGELOG.md +0 -0
- {whitecapdata_dev-0.1.0 → whitecapdata_dev-0.1.1}/LICENSE +0 -0
- {whitecapdata_dev-0.1.0 → whitecapdata_dev-0.1.1}/src/homelab_mcp/config.py +0 -0
- {whitecapdata_dev-0.1.0 → whitecapdata_dev-0.1.1}/src/homelab_mcp/format.py +0 -0
- {whitecapdata_dev-0.1.0 → whitecapdata_dev-0.1.1}/src/homelab_mcp/kube.py +0 -0
- {whitecapdata_dev-0.1.0 → whitecapdata_dev-0.1.1}/src/homelab_mcp/server.py +0 -0
- {whitecapdata_dev-0.1.0 → whitecapdata_dev-0.1.1}/tests/conftest.py +0 -0
- {whitecapdata_dev-0.1.0 → whitecapdata_dev-0.1.1}/tests/test_config.py +0 -0
- {whitecapdata_dev-0.1.0 → whitecapdata_dev-0.1.1}/tests/test_format.py +0 -0
- {whitecapdata_dev-0.1.0 → whitecapdata_dev-0.1.1}/tests/test_kube.py +0 -0
- {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
|
|
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/
|
|
9
|
-
cd
|
|
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.
|
|
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.**
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "whitecapdata-dev"
|
|
7
|
-
version = "0.1.
|
|
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.
|
|
9
|
+
"version": "0.1.1",
|
|
10
10
|
"packages": [
|
|
11
11
|
{
|
|
12
12
|
"registryType": "pypi",
|
|
13
13
|
"identifier": "whitecapdata-dev",
|
|
14
|
-
"version": "0.1.
|
|
14
|
+
"version": "0.1.1",
|
|
15
15
|
"transport": { "type": "stdio" },
|
|
16
16
|
"environmentVariables": [
|
|
17
17
|
{
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|