Skip to content

Commit 9b408df

Browse files
committed
Update dependency files and documentation
1 parent 9e9d278 commit 9b408df

2 files changed

Lines changed: 23 additions & 0 deletions

File tree

aider/website/docs/config/mcp.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,3 +188,23 @@ mcp-servers:
188188
"http://127.0.0.1:9222"
189189
]
190190
```
191+
192+
### GitHub
193+
194+
GitHub MCP provides access to GitHub repositories, issues, pull requests, and other GitHub resources. It enables AI models to interact with GitHub data, read repository contents, and perform various GitHub operations. The server runs in a Docker container and requires a GitHub Personal Access Token for authentication.
195+
196+
```yaml
197+
mcp-servers:
198+
mcpServers:
199+
github:
200+
transport: stdio
201+
command: "docker"
202+
args: [
203+
"run",
204+
"-i",
205+
"--rm",
206+
"-e",
207+
"GITHUB_PERSONAL_ACCESS_TOKEN=<access_token>",
208+
"ghcr.io/github/github-mcp-server"
209+
]
210+
```

requirements/common-constraints.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -457,10 +457,13 @@ pytest==9.0.1
457457
# -r requirements/requirements-dev.in
458458
# pytest-asyncio
459459
# pytest-env
460+
# pytest-mock
460461
pytest-asyncio==1.3.0
461462
# via -r requirements/requirements-dev.in
462463
pytest-env==1.2.0
463464
# via -r requirements/requirements-dev.in
465+
pytest-mock==3.15.1
466+
# via -r requirements/requirements-dev.in
464467
python-dateutil==2.9.0.post0
465468
# via
466469
# google-cloud-bigquery

0 commit comments

Comments
 (0)