github-mcp-agent 0.1.0__tar.gz → 0.2.0__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_agent-0.2.0/LICENSE +21 -0
- github_mcp_agent-0.2.0/PKG-INFO +145 -0
- {github_mcp_agent-0.1.0 → github_mcp_agent-0.2.0}/README.md +7 -3
- {github_mcp_agent-0.1.0 → github_mcp_agent-0.2.0}/github_mcp_agent/providers/__init__.py +0 -1
- github_mcp_agent-0.2.0/pyproject.toml +50 -0
- github_mcp_agent-0.1.0/PKG-INFO +0 -14
- github_mcp_agent-0.1.0/pyproject.toml +0 -29
- {github_mcp_agent-0.1.0 → github_mcp_agent-0.2.0}/.claude/settings.json +0 -0
- {github_mcp_agent-0.1.0 → github_mcp_agent-0.2.0}/.claude/settings.local.json +0 -0
- {github_mcp_agent-0.1.0 → github_mcp_agent-0.2.0}/.env.example +0 -0
- {github_mcp_agent-0.1.0 → github_mcp_agent-0.2.0}/.gitignore +0 -0
- {github_mcp_agent-0.1.0 → github_mcp_agent-0.2.0}/github_mcp_agent/__init__.py +0 -0
- {github_mcp_agent-0.1.0 → github_mcp_agent-0.2.0}/github_mcp_agent/agent.py +0 -0
- {github_mcp_agent-0.1.0 → github_mcp_agent-0.2.0}/github_mcp_agent/cli.py +0 -0
- {github_mcp_agent-0.1.0 → github_mcp_agent-0.2.0}/github_mcp_agent/providers/anthropic.py +0 -0
- {github_mcp_agent-0.1.0 → github_mcp_agent-0.2.0}/github_mcp_agent/providers/bedrock.py +0 -0
- {github_mcp_agent-0.1.0 → github_mcp_agent-0.2.0}/github_mcp_agent/providers/copilot.py +0 -0
- {github_mcp_agent-0.1.0 → github_mcp_agent-0.2.0}/github_mcp_agent/providers/gemini.py +0 -0
- {github_mcp_agent-0.1.0 → github_mcp_agent-0.2.0}/github_mcp_agent/providers/ollama.py +0 -0
- {github_mcp_agent-0.1.0 → github_mcp_agent-0.2.0}/github_mcp_agent/providers/openai.py +0 -0
- {github_mcp_agent-0.1.0 → github_mcp_agent-0.2.0}/github_mcp_agent/setup_wizard.py +0 -0
- {github_mcp_agent-0.1.0 → github_mcp_agent-0.2.0}/github_mcp_agent/system_prompt.txt +0 -0
- {github_mcp_agent-0.1.0 → github_mcp_agent-0.2.0}/github_mcp_agent/tools.py +0 -0
- {github_mcp_agent-0.1.0 → github_mcp_agent-0.2.0}/system_prompt.txt +0 -0
- {github_mcp_agent-0.1.0 → github_mcp_agent-0.2.0}/uv.lock +0 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Omar Hany
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: github-mcp-agent
|
|
3
|
+
Version: 0.2.0
|
|
4
|
+
Summary: Talk to your GitHub repos, issues, and project boards in plain English from your terminal
|
|
5
|
+
Project-URL: Homepage, https://github.com/OmarCodes022/GitHub-MCP-Agent
|
|
6
|
+
Project-URL: Repository, https://github.com/OmarCodes022/GitHub-MCP-Agent
|
|
7
|
+
Project-URL: Issues, https://github.com/OmarCodes022/GitHub-MCP-Agent/issues
|
|
8
|
+
Author-email: Omar Hany <omarhanyabbas2004@gmail.com>
|
|
9
|
+
License: MIT
|
|
10
|
+
License-File: LICENSE
|
|
11
|
+
Keywords: agent,ai,cli,copilot,github,mcp
|
|
12
|
+
Classifier: Development Status :: 4 - Beta
|
|
13
|
+
Classifier: Environment :: Console
|
|
14
|
+
Classifier: Intended Audience :: Developers
|
|
15
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
20
|
+
Classifier: Topic :: Software Development
|
|
21
|
+
Classifier: Topic :: Utilities
|
|
22
|
+
Requires-Python: >=3.10
|
|
23
|
+
Requires-Dist: anthropic
|
|
24
|
+
Requires-Dist: boto3
|
|
25
|
+
Requires-Dist: click
|
|
26
|
+
Requires-Dist: litellm
|
|
27
|
+
Requires-Dist: mcp
|
|
28
|
+
Requires-Dist: python-dotenv
|
|
29
|
+
Requires-Dist: questionary
|
|
30
|
+
Requires-Dist: rich
|
|
31
|
+
Requires-Dist: strands-agents
|
|
32
|
+
Description-Content-Type: text/markdown
|
|
33
|
+
|
|
34
|
+
# GitHub MCP Agent
|
|
35
|
+
|
|
36
|
+
Talk to your GitHub repos, issues, and project boards in plain English from your terminal.
|
|
37
|
+
|
|
38
|
+
```
|
|
39
|
+
You > list open issues in my raytracer repo
|
|
40
|
+
You > set priority of issue #42 to urgent
|
|
41
|
+
You > what's in progress on the project board?
|
|
42
|
+
You > which issues are assigned to maryam?
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
---
|
|
46
|
+
|
|
47
|
+
## Install
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
pip install github-mcp-agent
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
Or with uv:
|
|
54
|
+
|
|
55
|
+
```bash
|
|
56
|
+
uv tool install github-mcp-agent
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
---
|
|
60
|
+
|
|
61
|
+
## Setup
|
|
62
|
+
|
|
63
|
+
```bash
|
|
64
|
+
github-agent setup
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
Interactive wizard:
|
|
68
|
+
|
|
69
|
+
1. GitHub token (validated immediately)
|
|
70
|
+
2. AI provider — choose one:
|
|
71
|
+
- **AWS Bedrock** — existing profile, access keys, or SSO
|
|
72
|
+
- **Anthropic API** — API key from console.anthropic.com
|
|
73
|
+
- **OpenAI** — API key from platform.openai.com
|
|
74
|
+
- **Google Gemini** — API key from aistudio.google.com
|
|
75
|
+
- **GitHub Copilot** — uses your GitHub token, requires a Copilot subscription
|
|
76
|
+
- **Local (Ollama)** — picks from your installed models, no API key needed
|
|
77
|
+
3. Model selection (scrollable menu)
|
|
78
|
+
4. Pulls the GitHub MCP Docker image
|
|
79
|
+
|
|
80
|
+
Config saved to `~/.config/github-mcp-agent/.env`.
|
|
81
|
+
|
|
82
|
+
---
|
|
83
|
+
|
|
84
|
+
## Usage
|
|
85
|
+
|
|
86
|
+
```bash
|
|
87
|
+
github-agent # start the agent
|
|
88
|
+
github-agent setup # full setup wizard
|
|
89
|
+
github-agent provider # switch AI provider and model
|
|
90
|
+
github-agent model # switch model within current provider
|
|
91
|
+
github-agent token # update GitHub token
|
|
92
|
+
github-agent config # edit config file in $EDITOR
|
|
93
|
+
github-agent prompt # customize the system prompt in $EDITOR
|
|
94
|
+
github-agent -v # start with verbose tool output
|
|
95
|
+
```
|
|
96
|
+
|
|
97
|
+
---
|
|
98
|
+
|
|
99
|
+
## Requirements
|
|
100
|
+
|
|
101
|
+
| Requirement | Notes |
|
|
102
|
+
|---|---|
|
|
103
|
+
| Python 3.10+ | |
|
|
104
|
+
| Docker | Must be running — used for the GitHub MCP server |
|
|
105
|
+
| GitHub token | Scopes: `repo`, `read:org`, `project` — [github.com/settings/tokens](https://github.com/settings/tokens) |
|
|
106
|
+
| Provider credentials | See setup wizard |
|
|
107
|
+
|
|
108
|
+
**For AWS Bedrock:** enable Claude model access in the [Bedrock console](https://console.aws.amazon.com/bedrock) under Model access.
|
|
109
|
+
|
|
110
|
+
**For Ollama:** install from [ollama.com](https://ollama.com), run `ollama serve`. Models with good tool-calling support: `qwen2.5`, `llama3.1`, `mistral`.
|
|
111
|
+
|
|
112
|
+
**For GitHub Copilot:** requires an active Copilot subscription (student pack, individual, or business).
|
|
113
|
+
|
|
114
|
+
---
|
|
115
|
+
|
|
116
|
+
## How it works
|
|
117
|
+
|
|
118
|
+
```
|
|
119
|
+
You (terminal)
|
|
120
|
+
│
|
|
121
|
+
▼
|
|
122
|
+
github-agent (CLI)
|
|
123
|
+
│
|
|
124
|
+
├── AI model (Bedrock / Anthropic / OpenAI / Gemini / Copilot / Ollama)
|
|
125
|
+
│
|
|
126
|
+
└── GitHub MCP Server (Docker)
|
|
127
|
+
│
|
|
128
|
+
└── GitHub API
|
|
129
|
+
```
|
|
130
|
+
|
|
131
|
+
Uses the [Strands Agents SDK](https://github.com/strands-agents/sdk-python) with the [GitHub MCP server](https://github.com/github/github-mcp-server).
|
|
132
|
+
|
|
133
|
+
---
|
|
134
|
+
|
|
135
|
+
## Troubleshooting
|
|
136
|
+
|
|
137
|
+
**`GITHUB_TOKEN` not set** — run `github-agent setup`
|
|
138
|
+
|
|
139
|
+
**Docker not running** — start Docker Desktop or `sudo systemctl start docker`
|
|
140
|
+
|
|
141
|
+
**Bedrock access denied** — check IAM permissions and model access in your region
|
|
142
|
+
|
|
143
|
+
**Ollama model not found** — run `ollama list` to confirm the model name, re-run `github-agent model`
|
|
144
|
+
|
|
145
|
+
**`No module named github_mcp_agent`** — reinstall with `uv tool install .` from the project directory
|
|
@@ -14,9 +14,13 @@ You > which issues are assigned to maryam?
|
|
|
14
14
|
## Install
|
|
15
15
|
|
|
16
16
|
```bash
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
17
|
+
pip install github-mcp-agent
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
Or with uv:
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
uv tool install github-mcp-agent
|
|
20
24
|
```
|
|
21
25
|
|
|
22
26
|
---
|
|
@@ -29,4 +29,3 @@ def setup(provider: str, _ask) -> dict:
|
|
|
29
29
|
if mod is None:
|
|
30
30
|
raise RuntimeError(f"Unknown provider: {provider}")
|
|
31
31
|
return mod.setup(_ask)
|
|
32
|
-
pypi-AgEIcHlwaS5vcmcCJGU0ZDI1YWQ5LTEyOGMtNDUyZi1iNmZkLTEzOWU0MmRkNDIzOAACKlszLCJjZTAzNzUyYy00ZjNhLTQ3MTYtYjM2ZS02YmY0ZGNhZjkyMDciXQAABiD04xa6bIcHRFlnmMHzKPunpg81Z6OhNO_P102kWxtY9g
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "github-mcp-agent"
|
|
3
|
+
version = "0.2.0"
|
|
4
|
+
description = "Talk to your GitHub repos, issues, and project boards in plain English from your terminal"
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
license = { text = "MIT" }
|
|
7
|
+
requires-python = ">=3.10"
|
|
8
|
+
authors = [{ name = "Omar Hany", email = "omarhanyabbas2004@gmail.com" }]
|
|
9
|
+
keywords = ["github", "ai", "agent", "mcp", "cli", "copilot"]
|
|
10
|
+
classifiers = [
|
|
11
|
+
"Development Status :: 4 - Beta",
|
|
12
|
+
"Environment :: Console",
|
|
13
|
+
"Intended Audience :: Developers",
|
|
14
|
+
"License :: OSI Approved :: MIT License",
|
|
15
|
+
"Programming Language :: Python :: 3",
|
|
16
|
+
"Programming Language :: Python :: 3.10",
|
|
17
|
+
"Programming Language :: Python :: 3.11",
|
|
18
|
+
"Programming Language :: Python :: 3.12",
|
|
19
|
+
"Topic :: Software Development",
|
|
20
|
+
"Topic :: Utilities",
|
|
21
|
+
]
|
|
22
|
+
dependencies = [
|
|
23
|
+
"boto3",
|
|
24
|
+
"strands-agents",
|
|
25
|
+
"mcp",
|
|
26
|
+
"rich",
|
|
27
|
+
"python-dotenv",
|
|
28
|
+
"questionary",
|
|
29
|
+
"anthropic",
|
|
30
|
+
"litellm",
|
|
31
|
+
"click",
|
|
32
|
+
]
|
|
33
|
+
|
|
34
|
+
[project.urls]
|
|
35
|
+
Homepage = "https://github.com/OmarCodes022/GitHub-MCP-Agent"
|
|
36
|
+
Repository = "https://github.com/OmarCodes022/GitHub-MCP-Agent"
|
|
37
|
+
Issues = "https://github.com/OmarCodes022/GitHub-MCP-Agent/issues"
|
|
38
|
+
|
|
39
|
+
[project.scripts]
|
|
40
|
+
github-agent = "github_mcp_agent.cli:main"
|
|
41
|
+
|
|
42
|
+
[build-system]
|
|
43
|
+
requires = ["hatchling"]
|
|
44
|
+
build-backend = "hatchling.build"
|
|
45
|
+
|
|
46
|
+
[tool.hatch.build.targets.wheel]
|
|
47
|
+
packages = ["github_mcp_agent"]
|
|
48
|
+
|
|
49
|
+
[tool.hatch.build.targets.wheel.sources]
|
|
50
|
+
"github_mcp_agent" = "github_mcp_agent"
|
github_mcp_agent-0.1.0/PKG-INFO
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: github-mcp-agent
|
|
3
|
-
Version: 0.1.0
|
|
4
|
-
Summary: A GitHub AI agent powered by AWS Bedrock and MCP
|
|
5
|
-
Requires-Python: >=3.10
|
|
6
|
-
Requires-Dist: anthropic
|
|
7
|
-
Requires-Dist: boto3
|
|
8
|
-
Requires-Dist: click
|
|
9
|
-
Requires-Dist: litellm
|
|
10
|
-
Requires-Dist: mcp
|
|
11
|
-
Requires-Dist: python-dotenv
|
|
12
|
-
Requires-Dist: questionary
|
|
13
|
-
Requires-Dist: rich
|
|
14
|
-
Requires-Dist: strands-agents
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
[project]
|
|
2
|
-
name = "github-mcp-agent"
|
|
3
|
-
version = "0.1.0"
|
|
4
|
-
description = "A GitHub AI agent powered by AWS Bedrock and MCP"
|
|
5
|
-
requires-python = ">=3.10"
|
|
6
|
-
dependencies = [
|
|
7
|
-
"boto3",
|
|
8
|
-
"strands-agents",
|
|
9
|
-
"mcp",
|
|
10
|
-
"rich",
|
|
11
|
-
"python-dotenv",
|
|
12
|
-
"questionary",
|
|
13
|
-
"anthropic",
|
|
14
|
-
"litellm",
|
|
15
|
-
"click",
|
|
16
|
-
]
|
|
17
|
-
|
|
18
|
-
[project.scripts]
|
|
19
|
-
github-agent = "github_mcp_agent.cli:main"
|
|
20
|
-
|
|
21
|
-
[build-system]
|
|
22
|
-
requires = ["hatchling"]
|
|
23
|
-
build-backend = "hatchling.build"
|
|
24
|
-
|
|
25
|
-
[tool.hatch.build.targets.wheel]
|
|
26
|
-
packages = ["github_mcp_agent"]
|
|
27
|
-
|
|
28
|
-
[tool.hatch.build.targets.wheel.sources]
|
|
29
|
-
"github_mcp_agent" = "github_mcp_agent"
|
|
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
|