github-mcp 1.1.0__tar.gz → 1.1.2__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.
- {github_mcp-1.1.0 → github_mcp-1.1.2}/PKG-INFO +3 -3
- {github_mcp-1.1.0 → github_mcp-1.1.2}/README.md +1 -1
- {github_mcp-1.1.0 → github_mcp-1.1.2}/pyproject.toml +2 -2
- {github_mcp-1.1.0 → github_mcp-1.1.2}/LICENSE +0 -0
- {github_mcp-1.1.0 → github_mcp-1.1.2}/src/github_mcp/__init__.py +0 -0
- {github_mcp-1.1.0 → github_mcp-1.1.2}/src/github_mcp/app.py +0 -0
- {github_mcp-1.1.0 → github_mcp-1.1.2}/src/github_mcp/client.py +0 -0
- {github_mcp-1.1.0 → github_mcp-1.1.2}/src/github_mcp/formatting.py +0 -0
- {github_mcp-1.1.0 → github_mcp-1.1.2}/src/github_mcp/server.py +0 -0
- {github_mcp-1.1.0 → github_mcp-1.1.2}/src/github_mcp/tools/__init__.py +0 -0
- {github_mcp-1.1.0 → github_mcp-1.1.2}/src/github_mcp/tools/issues.py +0 -0
- {github_mcp-1.1.0 → github_mcp-1.1.2}/src/github_mcp/tools/pulls.py +0 -0
- {github_mcp-1.1.0 → github_mcp-1.1.2}/src/github_mcp/tools/repos.py +0 -0
- {github_mcp-1.1.0 → github_mcp-1.1.2}/src/github_mcp/tools/search.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: github-mcp
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.2
|
|
4
4
|
Summary: Local GitHub MCP server exposing GitHub REST API via FastMCP stdio transport
|
|
5
5
|
License: MIT License
|
|
6
6
|
|
|
@@ -41,7 +41,7 @@ Classifier: Topic :: Software Development :: Libraries
|
|
|
41
41
|
Requires-Dist: httpx (>=0.28.1,<0.29.0)
|
|
42
42
|
Requires-Dist: mcp[cli] (>=1.0.0)
|
|
43
43
|
Requires-Dist: pydantic (>=2.13.4,<3.0.0)
|
|
44
|
-
Project-URL: Documentation, https://personal-public-packages.gitlab.io/github-mcp
|
|
44
|
+
Project-URL: Documentation, https://personal-public-packages.gitlab.io/github-mcp-server
|
|
45
45
|
Project-URL: Homepage, https://github.com/LWaetzig/github-mcp
|
|
46
46
|
Project-URL: Issues, https://github.com/LWaetzig/github-mcp/issues
|
|
47
47
|
Project-URL: Repository, https://github.com/LWaetzig/github-mcp
|
|
@@ -103,7 +103,7 @@ pip install -e .
|
|
|
103
103
|
|
|
104
104
|
## Usage
|
|
105
105
|
|
|
106
|
-
- Detailed documentation about single tools can be found this [sphinx documentation]()
|
|
106
|
+
- Detailed documentation about single tools can be found this [sphinx documentation](https://personal-public-packages.gitlab.io/github-mcp-server)
|
|
107
107
|
|
|
108
108
|
### Prerequisites
|
|
109
109
|
|
|
@@ -54,7 +54,7 @@ pip install -e .
|
|
|
54
54
|
|
|
55
55
|
## Usage
|
|
56
56
|
|
|
57
|
-
- Detailed documentation about single tools can be found this [sphinx documentation]()
|
|
57
|
+
- Detailed documentation about single tools can be found this [sphinx documentation](https://personal-public-packages.gitlab.io/github-mcp-server)
|
|
58
58
|
|
|
59
59
|
### Prerequisites
|
|
60
60
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "github-mcp"
|
|
3
|
-
version = "v1.1.
|
|
3
|
+
version = "v1.1.2"
|
|
4
4
|
description = "Local GitHub MCP server exposing GitHub REST API via FastMCP stdio transport"
|
|
5
5
|
requires-python = ">=3.12"
|
|
6
6
|
readme = "README.md"
|
|
@@ -43,7 +43,7 @@ docs = [
|
|
|
43
43
|
Homepage = "https://github.com/LWaetzig/github-mcp"
|
|
44
44
|
Repository = "https://github.com/LWaetzig/github-mcp"
|
|
45
45
|
Issues = "https://github.com/LWaetzig/github-mcp/issues"
|
|
46
|
-
Documentation = "https://personal-public-packages.gitlab.io/github-mcp"
|
|
46
|
+
Documentation = "https://personal-public-packages.gitlab.io/github-mcp-server"
|
|
47
47
|
|
|
48
48
|
[project.scripts]
|
|
49
49
|
github-query-mcp = "github_mcp.server:main"
|
|
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
|