gitlab-api 25.9.2__tar.gz → 25.9.4__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.
- {gitlab_api-25.9.2/gitlab_api.egg-info → gitlab_api-25.9.4}/PKG-INFO +2 -2
- {gitlab_api-25.9.2 → gitlab_api-25.9.4}/README.md +1 -1
- {gitlab_api-25.9.2 → gitlab_api-25.9.4}/gitlab_api/gitlab_api_mcp.py +13 -11
- {gitlab_api-25.9.2 → gitlab_api-25.9.4/gitlab_api.egg-info}/PKG-INFO +2 -2
- {gitlab_api-25.9.2 → gitlab_api-25.9.4}/pyproject.toml +1 -1
- {gitlab_api-25.9.2 → gitlab_api-25.9.4}/LICENSE +0 -0
- {gitlab_api-25.9.2 → gitlab_api-25.9.4}/MANIFEST.in +0 -0
- {gitlab_api-25.9.2 → gitlab_api-25.9.4}/gitlab_api/__init__.py +0 -0
- {gitlab_api-25.9.2 → gitlab_api-25.9.4}/gitlab_api/__main__.py +0 -0
- {gitlab_api-25.9.2 → gitlab_api-25.9.4}/gitlab_api/decorators.py +0 -0
- {gitlab_api-25.9.2 → gitlab_api-25.9.4}/gitlab_api/exceptions.py +0 -0
- {gitlab_api-25.9.2 → gitlab_api-25.9.4}/gitlab_api/gitlab_api.py +0 -0
- {gitlab_api-25.9.2 → gitlab_api-25.9.4}/gitlab_api/gitlab_db_models.py +0 -0
- {gitlab_api-25.9.2 → gitlab_api-25.9.4}/gitlab_api/gitlab_input_models.py +0 -0
- {gitlab_api-25.9.2 → gitlab_api-25.9.4}/gitlab_api/gitlab_response_models.py +0 -0
- {gitlab_api-25.9.2 → gitlab_api-25.9.4}/gitlab_api/utils.py +0 -0
- {gitlab_api-25.9.2 → gitlab_api-25.9.4}/gitlab_api.egg-info/SOURCES.txt +0 -0
- {gitlab_api-25.9.2 → gitlab_api-25.9.4}/gitlab_api.egg-info/dependency_links.txt +0 -0
- {gitlab_api-25.9.2 → gitlab_api-25.9.4}/gitlab_api.egg-info/entry_points.txt +0 -0
- {gitlab_api-25.9.2 → gitlab_api-25.9.4}/gitlab_api.egg-info/requires.txt +0 -0
- {gitlab_api-25.9.2 → gitlab_api-25.9.4}/gitlab_api.egg-info/top_level.txt +0 -0
- {gitlab_api-25.9.2 → gitlab_api-25.9.4}/requirements.txt +0 -0
- {gitlab_api-25.9.2 → gitlab_api-25.9.4}/setup.cfg +0 -0
- {gitlab_api-25.9.2 → gitlab_api-25.9.4}/test/conftest.py +0 -0
- {gitlab_api-25.9.2 → gitlab_api-25.9.4}/test/test_gitlab_api.py +0 -0
- {gitlab_api-25.9.2 → gitlab_api-25.9.4}/test/test_gitlab_db_models.py +0 -0
- {gitlab_api-25.9.2 → gitlab_api-25.9.4}/test/test_gitlab_models.py +0 -0
- {gitlab_api-25.9.2 → gitlab_api-25.9.4}/test/test_sqlalchemy.py +0 -0
- {gitlab_api-25.9.2 → gitlab_api-25.9.4}/test/test_utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: gitlab-api
|
|
3
|
-
Version: 25.9.
|
|
3
|
+
Version: 25.9.4
|
|
4
4
|
Summary: GitLab API Python Wrapper
|
|
5
5
|
Author-email: Audel Rouhi <knucklessg1@gmail.com>
|
|
6
6
|
License: MIT
|
|
@@ -43,7 +43,7 @@ Dynamic: license-file
|
|
|
43
43
|

|
|
44
44
|

|
|
45
45
|
|
|
46
|
-
*Version: 25.9.
|
|
46
|
+
*Version: 25.9.4*
|
|
47
47
|
|
|
48
48
|
Pythonic GitLab API Library
|
|
49
49
|
|
|
@@ -5502,33 +5502,35 @@ def gitlab_api_mcp() -> None:
|
|
|
5502
5502
|
"-t",
|
|
5503
5503
|
"--transport",
|
|
5504
5504
|
default="stdio",
|
|
5505
|
-
choices=["stdio", "
|
|
5506
|
-
help=
|
|
5505
|
+
choices=["stdio", "http", "sse"],
|
|
5506
|
+
help="Transport method: 'stdio', 'http', or 'sse' [legacy] (default: stdio)",
|
|
5507
5507
|
)
|
|
5508
5508
|
parser.add_argument(
|
|
5509
5509
|
"-s",
|
|
5510
5510
|
"--host",
|
|
5511
|
-
|
|
5511
|
+
default="0.0.0.0",
|
|
5512
|
+
help="Host address for HTTP transport (default: 0.0.0.0)",
|
|
5512
5513
|
)
|
|
5513
5514
|
parser.add_argument(
|
|
5514
5515
|
"-p",
|
|
5515
5516
|
"--port",
|
|
5516
5517
|
type=int,
|
|
5517
|
-
|
|
5518
|
+
default=8000,
|
|
5519
|
+
help="Port number for HTTP transport (default: 8000)",
|
|
5518
5520
|
)
|
|
5519
5521
|
|
|
5520
|
-
args = parser.parse_args(
|
|
5522
|
+
args = parser.parse_args()
|
|
5521
5523
|
|
|
5522
|
-
if args.
|
|
5523
|
-
|
|
5524
|
-
|
|
5525
|
-
if not (0 <= args.port <= 65535):
|
|
5526
|
-
parser.error(f"Port {args.port} is out of valid range (0-65535).")
|
|
5524
|
+
if args.port < 0 or args.port > 65535:
|
|
5525
|
+
print(f"Error: Port {args.port} is out of valid range (0-65535).")
|
|
5526
|
+
sys.exit(1)
|
|
5527
5527
|
|
|
5528
5528
|
if args.transport == "stdio":
|
|
5529
5529
|
mcp.run(transport="stdio")
|
|
5530
|
-
|
|
5530
|
+
elif args.transport == "http":
|
|
5531
5531
|
mcp.run(transport="http", host=args.host, port=args.port)
|
|
5532
|
+
elif args.transport == "sse":
|
|
5533
|
+
mcp.run(transport="sse", host=args.host, port=args.port)
|
|
5532
5534
|
|
|
5533
5535
|
|
|
5534
5536
|
if __name__ == "__main__":
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: gitlab-api
|
|
3
|
-
Version: 25.9.
|
|
3
|
+
Version: 25.9.4
|
|
4
4
|
Summary: GitLab API Python Wrapper
|
|
5
5
|
Author-email: Audel Rouhi <knucklessg1@gmail.com>
|
|
6
6
|
License: MIT
|
|
@@ -43,7 +43,7 @@ Dynamic: license-file
|
|
|
43
43
|

|
|
44
44
|

|
|
45
45
|
|
|
46
|
-
*Version: 25.9.
|
|
46
|
+
*Version: 25.9.4*
|
|
47
47
|
|
|
48
48
|
Pythonic GitLab API Library
|
|
49
49
|
|
|
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
|