gitlab-api 25.9.2__tar.gz → 25.9.3__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.3}/PKG-INFO +2 -2
- {gitlab_api-25.9.2 → gitlab_api-25.9.3}/README.md +1 -1
- {gitlab_api-25.9.2 → gitlab_api-25.9.3}/gitlab_api/gitlab_api_mcp.py +9 -9
- {gitlab_api-25.9.2 → gitlab_api-25.9.3/gitlab_api.egg-info}/PKG-INFO +2 -2
- {gitlab_api-25.9.2 → gitlab_api-25.9.3}/pyproject.toml +1 -1
- {gitlab_api-25.9.2 → gitlab_api-25.9.3}/LICENSE +0 -0
- {gitlab_api-25.9.2 → gitlab_api-25.9.3}/MANIFEST.in +0 -0
- {gitlab_api-25.9.2 → gitlab_api-25.9.3}/gitlab_api/__init__.py +0 -0
- {gitlab_api-25.9.2 → gitlab_api-25.9.3}/gitlab_api/__main__.py +0 -0
- {gitlab_api-25.9.2 → gitlab_api-25.9.3}/gitlab_api/decorators.py +0 -0
- {gitlab_api-25.9.2 → gitlab_api-25.9.3}/gitlab_api/exceptions.py +0 -0
- {gitlab_api-25.9.2 → gitlab_api-25.9.3}/gitlab_api/gitlab_api.py +0 -0
- {gitlab_api-25.9.2 → gitlab_api-25.9.3}/gitlab_api/gitlab_db_models.py +0 -0
- {gitlab_api-25.9.2 → gitlab_api-25.9.3}/gitlab_api/gitlab_input_models.py +0 -0
- {gitlab_api-25.9.2 → gitlab_api-25.9.3}/gitlab_api/gitlab_response_models.py +0 -0
- {gitlab_api-25.9.2 → gitlab_api-25.9.3}/gitlab_api/utils.py +0 -0
- {gitlab_api-25.9.2 → gitlab_api-25.9.3}/gitlab_api.egg-info/SOURCES.txt +0 -0
- {gitlab_api-25.9.2 → gitlab_api-25.9.3}/gitlab_api.egg-info/dependency_links.txt +0 -0
- {gitlab_api-25.9.2 → gitlab_api-25.9.3}/gitlab_api.egg-info/entry_points.txt +0 -0
- {gitlab_api-25.9.2 → gitlab_api-25.9.3}/gitlab_api.egg-info/requires.txt +0 -0
- {gitlab_api-25.9.2 → gitlab_api-25.9.3}/gitlab_api.egg-info/top_level.txt +0 -0
- {gitlab_api-25.9.2 → gitlab_api-25.9.3}/requirements.txt +0 -0
- {gitlab_api-25.9.2 → gitlab_api-25.9.3}/setup.cfg +0 -0
- {gitlab_api-25.9.2 → gitlab_api-25.9.3}/test/conftest.py +0 -0
- {gitlab_api-25.9.2 → gitlab_api-25.9.3}/test/test_gitlab_api.py +0 -0
- {gitlab_api-25.9.2 → gitlab_api-25.9.3}/test/test_gitlab_db_models.py +0 -0
- {gitlab_api-25.9.2 → gitlab_api-25.9.3}/test/test_gitlab_models.py +0 -0
- {gitlab_api-25.9.2 → gitlab_api-25.9.3}/test/test_sqlalchemy.py +0 -0
- {gitlab_api-25.9.2 → gitlab_api-25.9.3}/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.3
|
|
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.3*
|
|
47
47
|
|
|
48
48
|
Pythonic GitLab API Library
|
|
49
49
|
|
|
@@ -5502,8 +5502,8 @@ 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",
|
|
@@ -5517,18 +5517,18 @@ def gitlab_api_mcp() -> None:
|
|
|
5517
5517
|
help='Specify port for TCP transport (e.g., "5000"). Required for TCP mode.',
|
|
5518
5518
|
)
|
|
5519
5519
|
|
|
5520
|
-
args = parser.parse_args(
|
|
5520
|
+
args = parser.parse_args()
|
|
5521
5521
|
|
|
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).")
|
|
5522
|
+
if args.port < 0 or args.port > 65535:
|
|
5523
|
+
print(f"Error: Port {args.port} is out of valid range (0-65535).")
|
|
5524
|
+
sys.exit(1)
|
|
5527
5525
|
|
|
5528
5526
|
if args.transport == "stdio":
|
|
5529
5527
|
mcp.run(transport="stdio")
|
|
5530
|
-
|
|
5528
|
+
elif args.transport == "http":
|
|
5531
5529
|
mcp.run(transport="http", host=args.host, port=args.port)
|
|
5530
|
+
elif args.transport == "sse":
|
|
5531
|
+
mcp.run(transport="sse", host=args.host, port=args.port)
|
|
5532
5532
|
|
|
5533
5533
|
|
|
5534
5534
|
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.3
|
|
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.3*
|
|
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
|