Metadata-Version: 2.4
Name: github-mcp-server-unofficial
Version: 0.12.1
Summary: GitHub's official MCP Server packaged unofficially for Python
Project-URL: Repository, https://github.com/tjni/github-mcp-server-wheel
Author-email: Theodore Ni <3806110+tjni@users.noreply.github.com>
License-File: LICENSE
Keywords: MCP,github
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Version Control :: Git
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# github-mcp-server-unofficial

Packages https://github.com/github/github-mcp-server as wheels.

## Usage

This package can be installed using:

```bash
pip install github-mcp-server-unofficial
```

If you are invoking it from a Python program, you can get a `Path` to this
binary using:

```python
import subprocess

from github_mcp_server import find_github_mcp_server_bin

subprocess.run([find_github_mcp_server_bin()])
```
