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.
Files changed (143) hide show
  1. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/.github/workflows/tests.yml +0 -21
  2. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/PKG-INFO +1 -1
  3. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/tools/list_operations.py +3 -2
  4. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/pyproject.toml +1 -1
  5. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/.github/ISSUE_TEMPLATE/bug_report.yml +0 -0
  6. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/.github/ISSUE_TEMPLATE/config.yml +0 -0
  7. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/.github/ISSUE_TEMPLATE/documentation.yml +0 -0
  8. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/.github/ISSUE_TEMPLATE/feature_request.yml +0 -0
  9. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/.github/workflows/docs.yml +0 -0
  10. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/.gitignore +0 -0
  11. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/.idea/.gitignore +0 -0
  12. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/LICENSE +0 -0
  13. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/README.md +0 -0
  14. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/SECURITY.md +0 -0
  15. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/__init__.py +0 -0
  16. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/__main__.py +0 -0
  17. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/app.py +0 -0
  18. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/arguments.py +0 -0
  19. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/auth/__init__.py +0 -0
  20. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/auth/registry.py +0 -0
  21. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/backend_types.py +0 -0
  22. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/cache.py +0 -0
  23. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/client.py +0 -0
  24. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/context.py +0 -0
  25. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/docs.py +0 -0
  26. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/file_cache.py +0 -0
  27. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/prompts.py +0 -0
  28. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/py.typed +0 -0
  29. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/resources/__init__.py +0 -0
  30. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/resources/guide.py +0 -0
  31. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/resources/image_lineage.py +0 -0
  32. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/resources/image_ls.py +0 -0
  33. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/resources/import_operation.py +0 -0
  34. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/resources/instance_operation.py +0 -0
  35. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/resources/read_file.py +0 -0
  36. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/resources/static.py +0 -0
  37. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/server.py +0 -0
  38. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/tools/__init__.py +0 -0
  39. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/tools/cancel_operation.py +0 -0
  40. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/tools/download.py +0 -0
  41. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/tools/get_guide.py +0 -0
  42. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/tools/get_image.py +0 -0
  43. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/tools/get_operation.py +0 -0
  44. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/tools/import_image.py +0 -0
  45. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/tools/list_files.py +0 -0
  46. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/tools/list_images.py +0 -0
  47. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/tools/read_file.py +0 -0
  48. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/tools/registry_auth.py +0 -0
  49. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/tools/registry_token_obtain.py +0 -0
  50. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/tools/rsync.py +0 -0
  51. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/tools/run.py +0 -0
  52. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/tools/set_tag.py +0 -0
  53. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/tools/upload.py +0 -0
  54. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/contree_mcp/tools/wait_operations.py +0 -0
  55. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/dist/.gitignore +0 -0
  56. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/LICENSE +0 -0
  57. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/Makefile +0 -0
  58. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/_static/http-index-page-screenshot.png +0 -0
  59. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/_static/logo.svg +0 -0
  60. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/cheatsheet.md +0 -0
  61. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/concepts/core.md +0 -0
  62. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/concepts/index.md +0 -0
  63. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/concepts/workflows.md +0 -0
  64. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/conf.py +0 -0
  65. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/index.md +0 -0
  66. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/integration/configuration.md +0 -0
  67. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/integration/index.md +0 -0
  68. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/integration/troubleshooting.md +0 -0
  69. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/llm.txt +0 -0
  70. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/patterns.md +0 -0
  71. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/prompts/build-project.md +0 -0
  72. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/prompts/debug-failure.md +0 -0
  73. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/prompts/index.md +0 -0
  74. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/prompts/inspect-image.md +0 -0
  75. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/prompts/install-packages.md +0 -0
  76. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/prompts/multi-stage-build.md +0 -0
  77. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/prompts/parallel-tasks.md +0 -0
  78. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/prompts/prepare-environment.md +0 -0
  79. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/prompts/run-python.md +0 -0
  80. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/prompts/run-shell.md +0 -0
  81. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/prompts/sync-and-run.md +0 -0
  82. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/quickstart.md +0 -0
  83. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/reference/glossary.md +0 -0
  84. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/reference/index.md +0 -0
  85. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/resources.md +0 -0
  86. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/security.md +0 -0
  87. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/tools/cancel_operation.md +0 -0
  88. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/tools/download.md +0 -0
  89. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/tools/get_guide.md +0 -0
  90. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/tools/get_image.md +0 -0
  91. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/tools/get_operation.md +0 -0
  92. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/tools/import_image.md +0 -0
  93. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/tools/index.md +0 -0
  94. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/tools/list_files.md +0 -0
  95. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/tools/list_images.md +0 -0
  96. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/tools/list_operations.md +0 -0
  97. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/tools/read_file.md +0 -0
  98. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/tools/registry_auth.md +0 -0
  99. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/tools/registry_token_obtain.md +0 -0
  100. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/tools/rsync.md +0 -0
  101. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/tools/run.md +0 -0
  102. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/tools/set_tag.md +0 -0
  103. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/tools/upload.md +0 -0
  104. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/docs/tools/wait_operations.md +0 -0
  105. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/llm.txt +0 -0
  106. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/modd.conf +0 -0
  107. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/__init__.py +0 -0
  108. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/auth/__init__.py +0 -0
  109. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/auth/test_registry.py +0 -0
  110. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/conftest.py +0 -0
  111. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/resources/__init__.py +0 -0
  112. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/resources/test_image_file.py +0 -0
  113. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/resources/test_image_lineage.py +0 -0
  114. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/resources/test_image_ls.py +0 -0
  115. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/resources/test_import_operation.py +0 -0
  116. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/resources/test_instance_operation.py +0 -0
  117. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/test_async_file_writer.py +0 -0
  118. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/test_client.py +0 -0
  119. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/test_context.py +0 -0
  120. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/test_docs.py +0 -0
  121. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/test_file_cache.py +0 -0
  122. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/test_general_cache.py +0 -0
  123. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/test_http_server.py +0 -0
  124. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/test_main.py +0 -0
  125. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/test_prompts.py +0 -0
  126. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/test_types.py +0 -0
  127. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/tools/__init__.py +0 -0
  128. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/tools/test_cancel_operation.py +0 -0
  129. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/tools/test_download.py +0 -0
  130. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/tools/test_get_guide.py +0 -0
  131. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/tools/test_get_image.py +0 -0
  132. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/tools/test_get_operation.py +0 -0
  133. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/tools/test_import_image.py +0 -0
  134. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/tools/test_list_images.py +0 -0
  135. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/tools/test_list_operations.py +0 -0
  136. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/tools/test_registry_auth.py +0 -0
  137. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/tools/test_registry_token_obtain.py +0 -0
  138. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/tools/test_rsync.py +0 -0
  139. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/tools/test_run_command.py +0 -0
  140. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/tools/test_set_tag.py +0 -0
  141. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/tools/test_upload.py +0 -0
  142. {contree_mcp-0.1.0 → contree_mcp-0.1.1}/tests/tools/test_wait_operations.py +0 -0
  143. {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
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: contree-mcp
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: MCP server for Contree container management system
5
5
  License-Expression: Apache-2.0
6
6
  License-File: LICENSE
@@ -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
- kind: OperationKind | None = None,
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=kind,
43
+ kind=type,
43
44
  since=since,
44
45
  )
45
46
 
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "contree-mcp"
7
- version = "0.1.0"
7
+ version = "0.1.1"
8
8
  description = "MCP server for Contree container management system"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
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