container-manager-mcp 0.0.8__tar.gz → 0.0.9__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.
- {container_manager_mcp-0.0.8/container_manager_mcp.egg-info → container_manager_mcp-0.0.9}/PKG-INFO +2 -2
- {container_manager_mcp-0.0.8 → container_manager_mcp-0.0.9}/README.md +1 -1
- {container_manager_mcp-0.0.8 → container_manager_mcp-0.0.9}/container_manager_mcp/__init__.py +3 -3
- container_manager_mcp-0.0.9/container_manager_mcp/__main__.py +6 -0
- {container_manager_mcp-0.0.8 → container_manager_mcp-0.0.9}/container_manager_mcp/container_manager.py +2 -2
- {container_manager_mcp-0.0.8 → container_manager_mcp-0.0.9}/container_manager_mcp/container_manager_mcp.py +5 -1
- {container_manager_mcp-0.0.8 → container_manager_mcp-0.0.9/container_manager_mcp.egg-info}/PKG-INFO +2 -2
- {container_manager_mcp-0.0.8 → container_manager_mcp-0.0.9}/container_manager_mcp.egg-info/SOURCES.txt +1 -0
- {container_manager_mcp-0.0.8 → container_manager_mcp-0.0.9}/container_manager_mcp.egg-info/entry_points.txt +1 -1
- {container_manager_mcp-0.0.8 → container_manager_mcp-0.0.9}/pyproject.toml +2 -2
- {container_manager_mcp-0.0.8 → container_manager_mcp-0.0.9}/LICENSE +0 -0
- {container_manager_mcp-0.0.8 → container_manager_mcp-0.0.9}/MANIFEST.in +0 -0
- {container_manager_mcp-0.0.8 → container_manager_mcp-0.0.9}/container_manager_mcp.egg-info/dependency_links.txt +0 -0
- {container_manager_mcp-0.0.8 → container_manager_mcp-0.0.9}/container_manager_mcp.egg-info/requires.txt +0 -0
- {container_manager_mcp-0.0.8 → container_manager_mcp-0.0.9}/container_manager_mcp.egg-info/top_level.txt +0 -0
- {container_manager_mcp-0.0.8 → container_manager_mcp-0.0.9}/requirements.txt +0 -0
- {container_manager_mcp-0.0.8 → container_manager_mcp-0.0.9}/setup.cfg +0 -0
{container_manager_mcp-0.0.8/container_manager_mcp.egg-info → container_manager_mcp-0.0.9}/PKG-INFO
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: container-manager-mcp
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.9
|
4
4
|
Summary: Container Manager manage Docker, Docker Swarm, and Podman containers as an MCP Server
|
5
5
|
Author-email: Audel Rouhi <knucklessg1@gmail.com>
|
6
6
|
License: MIT
|
@@ -48,7 +48,7 @@ Dynamic: license-file
|
|
48
48
|

|
49
49
|

|
50
50
|
|
51
|
-
*Version: 0.0.
|
51
|
+
*Version: 0.0.9*
|
52
52
|
|
53
53
|
Container Manager MCP Server provides a robust interface to manage Docker and Podman containers, networks, volumes, and Docker Swarm services through a FastMCP server, enabling programmatic and remote container management.
|
54
54
|
|
@@ -20,7 +20,7 @@
|
|
20
20
|

|
21
21
|

|
22
22
|
|
23
|
-
*Version: 0.0.
|
23
|
+
*Version: 0.0.9*
|
24
24
|
|
25
25
|
Container Manager MCP Server provides a robust interface to manage Docker and Podman containers, networks, volumes, and Docker Swarm services through a FastMCP server, enabling programmatic and remote container management.
|
26
26
|
|
{container_manager_mcp-0.0.8 → container_manager_mcp-0.0.9}/container_manager_mcp/__init__.py
RENAMED
@@ -2,13 +2,13 @@
|
|
2
2
|
# coding: utf-8
|
3
3
|
|
4
4
|
from container_manager_mcp.container_manager import (
|
5
|
-
|
5
|
+
container_manager,
|
6
6
|
create_manager,
|
7
7
|
ContainerManagerBase,
|
8
8
|
DockerManager,
|
9
9
|
PodmanManager,
|
10
10
|
)
|
11
|
-
from container_manager_mcp.container_manager_mcp import
|
11
|
+
from container_manager_mcp.container_manager_mcp import main
|
12
12
|
|
13
13
|
"""
|
14
14
|
container-manager
|
@@ -19,7 +19,7 @@ Manage your containers using docker, podman, compose, or docker swarm!
|
|
19
19
|
__all__ = [
|
20
20
|
"main",
|
21
21
|
"create_manager",
|
22
|
-
"
|
22
|
+
"container_manager",
|
23
23
|
"ContainerManagerBase",
|
24
24
|
"DockerManager",
|
25
25
|
"PodmanManager",
|
@@ -945,7 +945,7 @@ container_manager.py --manager docker --pull-image nginx --tag latest --list-con
|
|
945
945
|
)
|
946
946
|
|
947
947
|
|
948
|
-
def
|
948
|
+
def container_manager(argv):
|
949
949
|
get_version = False
|
950
950
|
get_info = False
|
951
951
|
list_images = False
|
@@ -1378,4 +1378,4 @@ if __name__ == "__main__":
|
|
1378
1378
|
if len(sys.argv) < 2:
|
1379
1379
|
usage()
|
1380
1380
|
sys.exit(2)
|
1381
|
-
|
1381
|
+
container_manager(sys.argv[1:])
|
@@ -1105,7 +1105,7 @@ def container_manager_mcp(argv):
|
|
1105
1105
|
sys.exit(2)
|
1106
1106
|
for opt, arg in opts:
|
1107
1107
|
if opt in ("-h", "--help"):
|
1108
|
-
sys.exit()
|
1108
|
+
sys.exit(2)
|
1109
1109
|
elif opt in ("-t", "--transport"):
|
1110
1110
|
transport = arg
|
1111
1111
|
elif opt in ("-h", "--host"):
|
@@ -1130,5 +1130,9 @@ def container_manager_mcp(argv):
|
|
1130
1130
|
sys.exit(1)
|
1131
1131
|
|
1132
1132
|
|
1133
|
+
def main():
|
1134
|
+
container_manager_mcp(sys.argv[1:])
|
1135
|
+
|
1136
|
+
|
1133
1137
|
if __name__ == "__main__":
|
1134
1138
|
container_manager_mcp(sys.argv[1:])
|
{container_manager_mcp-0.0.8 → container_manager_mcp-0.0.9/container_manager_mcp.egg-info}/PKG-INFO
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: container-manager-mcp
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.9
|
4
4
|
Summary: Container Manager manage Docker, Docker Swarm, and Podman containers as an MCP Server
|
5
5
|
Author-email: Audel Rouhi <knucklessg1@gmail.com>
|
6
6
|
License: MIT
|
@@ -48,7 +48,7 @@ Dynamic: license-file
|
|
48
48
|

|
49
49
|

|
50
50
|
|
51
|
-
*Version: 0.0.
|
51
|
+
*Version: 0.0.9*
|
52
52
|
|
53
53
|
Container Manager MCP Server provides a robust interface to manage Docker and Podman containers, networks, volumes, and Docker Swarm services through a FastMCP server, enabling programmatic and remote container management.
|
54
54
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "container-manager-mcp"
|
7
|
-
version = "0.0.
|
7
|
+
version = "0.0.9"
|
8
8
|
description = "Container Manager manage Docker, Docker Swarm, and Podman containers as an MCP Server"
|
9
9
|
readme = "README.md"
|
10
10
|
authors = [{ name = "Audel Rouhi", email = "knucklessg1@gmail.com" }]
|
@@ -39,7 +39,7 @@ all = [
|
|
39
39
|
|
40
40
|
[project.scripts]
|
41
41
|
container-manager = "container_manager_mcp.container_manager:main"
|
42
|
-
container-manager-mcp = "container_manager_mcp.container_manager_mcp:
|
42
|
+
container-manager-mcp = "container_manager_mcp.container_manager_mcp:main"
|
43
43
|
|
44
44
|
[tool.setuptools.packages.find]
|
45
45
|
where = ["."]
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|