Spaces:
Runtime error
Runtime error
Update README.md
Browse files
README.md
CHANGED
|
@@ -7,4 +7,18 @@ sdk: docker
|
|
| 7 |
pinned: false
|
| 8 |
---
|
| 9 |
|
| 10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
pinned: false
|
| 8 |
---
|
| 9 |
|
| 10 |
+
# GitHub ChatGPT MCP App
|
| 11 |
+
|
| 12 |
+
This project exposes a GitHub-focused toolset as a Model Context Protocol (MCP) server so it can be loaded as a ChatGPT App. It adds lightweight wrappers for common GitHub API flows that are useful when working alongside ChatGPT.
|
| 13 |
+
|
| 14 |
+
## Features
|
| 15 |
+
|
| 16 |
+
- `get_repo_info` – metadata for any public repository
|
| 17 |
+
- `list_issues` – list issues with optional filters
|
| 18 |
+
- `list_pull_requests` – summarize pull requests and their branches
|
| 19 |
+
- `get_readme` – fetch and decode the README for any ref
|
| 20 |
+
- `list_contributors` – contributors with contribution counts
|
| 21 |
+
- `list_files` – inspect a branch/tree quickly
|
| 22 |
+
- `search_repos` – search repositories via GitHub Search
|
| 23 |
+
|
| 24 |
+
Each tool returns trimmed, structured dictionaries so responses stay concise while still being useful inside ChatGPT conversations.
|