contree-mcp 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.
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/.github/workflows/tests.yml +0 -21
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/PKG-INFO +1 -1
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/tools/list_operations.py +3 -2
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/pyproject.toml +1 -1
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/.github/ISSUE_TEMPLATE/bug_report.yml +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/.github/ISSUE_TEMPLATE/config.yml +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/.github/ISSUE_TEMPLATE/documentation.yml +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/.github/ISSUE_TEMPLATE/feature_request.yml +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/.github/workflows/docs.yml +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/.gitignore +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/.idea/.gitignore +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/LICENSE +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/README.md +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/SECURITY.md +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/__init__.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/__main__.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/app.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/arguments.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/auth/__init__.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/auth/registry.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/backend_types.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/cache.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/client.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/context.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/docs.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/file_cache.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/prompts.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/py.typed +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/resources/__init__.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/resources/guide.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/resources/image_lineage.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/resources/image_ls.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/resources/import_operation.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/resources/instance_operation.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/resources/read_file.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/resources/static.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/server.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/tools/__init__.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/tools/cancel_operation.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/tools/download.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/tools/get_guide.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/tools/get_image.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/tools/get_operation.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/tools/import_image.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/tools/list_files.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/tools/list_images.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/tools/read_file.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/tools/registry_auth.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/tools/registry_token_obtain.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/tools/rsync.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/tools/run.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/tools/set_tag.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/tools/upload.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/tools/wait_operations.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/dist/.gitignore +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/LICENSE +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/Makefile +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/_static/http-index-page-screenshot.png +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/_static/logo.svg +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/cheatsheet.md +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/concepts/core.md +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/concepts/index.md +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/concepts/workflows.md +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/conf.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/index.md +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/integration/configuration.md +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/integration/index.md +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/integration/troubleshooting.md +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/llm.txt +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/patterns.md +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/prompts/build-project.md +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/prompts/debug-failure.md +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/prompts/index.md +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/prompts/inspect-image.md +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/prompts/install-packages.md +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/prompts/multi-stage-build.md +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/prompts/parallel-tasks.md +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/prompts/prepare-environment.md +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/prompts/run-python.md +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/prompts/run-shell.md +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/prompts/sync-and-run.md +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/quickstart.md +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/reference/glossary.md +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/reference/index.md +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/resources.md +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/security.md +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/tools/cancel_operation.md +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/tools/download.md +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/tools/get_guide.md +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/tools/get_image.md +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/tools/get_operation.md +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/tools/import_image.md +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/tools/index.md +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/tools/list_files.md +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/tools/list_images.md +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/tools/list_operations.md +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/tools/read_file.md +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/tools/registry_auth.md +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/tools/registry_token_obtain.md +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/tools/rsync.md +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/tools/run.md +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/tools/set_tag.md +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/tools/upload.md +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/tools/wait_operations.md +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/llm.txt +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/modd.conf +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/__init__.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/auth/__init__.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/auth/test_registry.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/conftest.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/resources/__init__.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/resources/test_image_file.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/resources/test_image_lineage.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/resources/test_image_ls.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/resources/test_import_operation.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/resources/test_instance_operation.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/test_async_file_writer.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/test_client.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/test_context.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/test_docs.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/test_file_cache.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/test_general_cache.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/test_http_server.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/test_main.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/test_prompts.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/test_types.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/tools/__init__.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/tools/test_cancel_operation.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/tools/test_download.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/tools/test_get_guide.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/tools/test_get_image.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/tools/test_get_operation.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/tools/test_import_image.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/tools/test_list_images.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/tools/test_list_operations.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/tools/test_registry_auth.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/tools/test_registry_token_obtain.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/tools/test_rsync.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/tools/test_run_command.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/tools/test_set_tag.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/tools/test_upload.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/tools/test_wait_operations.py +0 -0
- {contree_mcp-0.1.0 → contree_mcp-0.1.1}/uv.lock +0 -0
|
@@ -25,13 +25,6 @@ jobs:
|
|
|
25
25
|
- name: Set up Python
|
|
26
26
|
run: uv python install ${{ env.DEFAULT_PYTHON }}
|
|
27
27
|
|
|
28
|
-
- name: Cache venv
|
|
29
|
-
id: cache-venv
|
|
30
|
-
uses: actions/cache@v5
|
|
31
|
-
with:
|
|
32
|
-
path: .venv
|
|
33
|
-
key: venv-${{ github.job }}-${{ runner.os }}-${{ env.DEFAULT_PYTHON }}-${{ hashFiles('uv.lock') }}
|
|
34
|
-
|
|
35
28
|
- name: Install dependencies
|
|
36
29
|
run: uv sync --group dev
|
|
37
30
|
|
|
@@ -52,13 +45,6 @@ jobs:
|
|
|
52
45
|
- name: Set up Python
|
|
53
46
|
run: uv python install ${{ env.DEFAULT_PYTHON }}
|
|
54
47
|
|
|
55
|
-
- name: Cache venv
|
|
56
|
-
id: cache-venv
|
|
57
|
-
uses: actions/cache@v5
|
|
58
|
-
with:
|
|
59
|
-
path: .venv
|
|
60
|
-
key: venv-${{ github.job }}-${{ runner.os }}-${{ env.DEFAULT_PYTHON }}-${{ hashFiles('uv.lock') }}
|
|
61
|
-
|
|
62
48
|
- name: Install dependencies
|
|
63
49
|
run: uv sync --group dev
|
|
64
50
|
|
|
@@ -88,13 +74,6 @@ jobs:
|
|
|
88
74
|
- name: Set up Python ${{ matrix.python-version }}
|
|
89
75
|
run: uv python install ${{ matrix.python-version }}
|
|
90
76
|
|
|
91
|
-
- name: Cache venv
|
|
92
|
-
id: cache-venv
|
|
93
|
-
uses: actions/cache@v5
|
|
94
|
-
with:
|
|
95
|
-
path: .venv
|
|
96
|
-
key: venv-${{ github.job }}-${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('uv.lock') }}
|
|
97
|
-
|
|
98
77
|
- name: Install dependencies
|
|
99
78
|
run: uv sync --group dev
|
|
100
79
|
|
|
@@ -8,10 +8,11 @@ class ListOperationsOutput(BaseModel):
|
|
|
8
8
|
operations: list[OperationSummary] = Field(description="List of operations")
|
|
9
9
|
|
|
10
10
|
|
|
11
|
+
# noinspection PyShadowingBuiltins
|
|
11
12
|
async def list_operations(
|
|
12
13
|
limit: int = 100,
|
|
13
14
|
status: OperationStatus | None = None,
|
|
14
|
-
|
|
15
|
+
type: OperationKind | None = None,
|
|
15
16
|
since: str | None = None,
|
|
16
17
|
) -> ListOperationsOutput:
|
|
17
18
|
"""
|
|
@@ -39,7 +40,7 @@ async def list_operations(
|
|
|
39
40
|
operations = await client.list_operations(
|
|
40
41
|
limit=limit,
|
|
41
42
|
status=status,
|
|
42
|
-
kind=
|
|
43
|
+
kind=type,
|
|
43
44
|
since=since,
|
|
44
45
|
)
|
|
45
46
|
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|