A Model Context Protocol (MCP) for analyzing and querying GitHub repositories using the GitHub Chat API.
3.9K
2 Tools
Version 4.43 or later needs to be installed to add the server automatically
About
A Model Context Protocol (MCP) for analyzing and querying GitHub repositories using the GitHub Chat API.
Attribute | Details |
---|---|
Docker Image | mcp/github-chat |
Author | AsyncFuncAI |
Repository | https://github.com/AsyncFuncAI/github-chat-mcp |
Dockerfile | https://github.com/AsyncFuncAI/github-chat-mcp/blob/main/Dockerfile |
Docker Image built by | Docker Inc. |
Docker Scout Health Score | |
Verify Signature | COSIGN_REPOSITORY=mcp/signatures cosign verify mcp/github-chat --key https://raw.githubusercontent.com/docker/keyring/refs/heads/main/public/mcp/latest.pub |
Licence | MIT License |
Tools provided by this Server | Short Description |
---|---|
index_repository | Index a GitHub repository to analyze its codebase. |
query_repository | Ask questions about a GitHub repository and receive detailed AI responses. |
index_repository
Index a GitHub repository to analyze its codebase. This must be done before asking questions about the repository.
Parameters | Type | Description |
---|---|---|
repo_url | string | The GitHub repository URL to index (format: https://github.com/username/repo). |
query_repository
Ask questions about a GitHub repository and receive detailed AI responses. The repository must be indexed first.
Parameters | Type | Description |
---|---|---|
question | string | The question to ask about the repository. |
repo_url | string | The GitHub repository URL to query (format: https://github.com/username/repo). |
conversation_history | string optional | Previous conversation history for multi-turn conversations. |
{
"mcpServers": {
"github-chat": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"GITHUB_API_KEY",
"mcp/github-chat"
],
"env": {
"GITHUB_API_KEY": "YOUR_GITHUB_API_KEY"
}
}
}
}
Manual installation
You can install the MCP server using:
Installation for