GitHub MCP Server with DeepSeek AI integration - AI-powered GitHub tools for MCP-compatible clients
MCPpedia last refreshed this data
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"github-deepseek": {
"env": {
"DEEPSEEK_API_KEY": "sk-xxxx",
"GITHUB_PERSONAL_ACCESS_TOKEN": "ghp_xxxx"
},
"args": [
"stdio"
],
"command": "/path/to/github-mcp-server"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Fork of the official GitHub MCP Server with DeepSeek AI-powered tools for intelligent code analysis, content summarization, and description generation.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ai-ml
Dynamic problem-solving through sequential thought chains
Persistent memory using a knowledge graph
Workspace template + MCP server for Claude Code, Codex CLI, Cursor & Windsurf. Multi-agent knowledge engine (ag-refresh / ag-ask) that turns any codebase into a queryable AI assistant.
Compact, efficient, and extensible long-term memory for LLM agents.
MCP Security Weekly
Get CVE alerts and security updates for Github Mcp Server2 and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Fork of the official GitHub MCP Server with DeepSeek AI-powered tools for intelligent code analysis, content summarization, and description generation.
This fork enhances the official GitHub MCP Server with DeepSeek AI-powered tools. When DEEPSEEK_API_KEY is configured, three new AI tools become available to MCP clients:
| Tool | Description |
|---|---|
ai_summarize_content | Analyze and summarize any GitHub content (issues, PRs, code, discussions, READMEs) |
ai_code_review | Review code for bugs, security issues, performance, and best practices |
ai_generate_description | Generate PR descriptions, issue bodies, README sections, release notes, and more |
| Component | Status | Details |
|---|---|---|
| Build | ✅ PASS | Compiles with Go 1.25.0 |
| DeepSeek API | ✅ PASS | deepseek-v4-flash responds correctly |
| Server Startup | ✅ PASS | "DeepSeek AI integration enabled model=deepseek-v4-flash" |
| Tool Registration | ✅ PASS | AI tools auto-register when API key is set |
┌─────────────────────┐ MCP Protocol ┌──────────────────────┐
│ AI Client (LLM) │ ◄──────────────────► │ GitHub MCP Server │
│ (Claude, Copilot, │ │ ┌────────────────┐ │
│ DeepSeek, etc.) │ │ │ GitHub REST │ │
└─────────────────────┘ │ │ GitHub GraphQL │ │
│ │ GitHub Raw │ │
│ └────────────────┘ │
│ ┌────────────────┐ │
│ │ DeepSeek AI ✨ │ │
│ └────────────────┘ │
└──────────────────────┘
The MCP server provides GitHub API tools to any MCP-compatible AI client. The DeepSeek integration adds AI-powered analysis tools that run server-side, meaning any MCP client (Claude, Copilot, DeepSeek-powered clients, etc.) can access them without needing their own AI key.
git clone https://github.com/ph7klw76/github-mcp-server2.git
cd github-mcp-server2
go build -o github-mcp-server ./cmd/github-mcp-server/
docker build -t github-mcp-server2 .
docker run -i --rm \
-e GITHUB_PERSONAL_ACCESS_TOKEN=<your-github-token> \
-e DEEPSEEK_API_KEY=<your-deepseek-key> \
github-mcp-server2 stdio
export GITHUB_PERSONAL_ACCESS_TOKEN="ghp_xxxx"
./github-mcp-server stdio
export GITHUB_PERSONAL_ACCESS_TOKEN="ghp_xxxx"
export DEEPSEEK_API_KEY="sk-xxxx"
export DEEPSEEK_MODEL="deepseek-v4-flash" # optional, this is the default
./github-mcp-server stdio
When the server starts, you'll see:
INFO "starting server" version=... host=... readOnly=false lockdownEnabled=false
INFO "DeepSeek AI integration enabled" model=deepseek-v4-flash
GitHub MCP Server running on stdio
export GITHUB_PERSONAL_ACCESS_TOKEN="ghp_xxxx"
export DEEPSEEK_API_KEY="sk-xxxx"
./github-mcp-server http --port 8082
{
"servers": {
"github-deepseek": {
"type": "stdio",
"command"
... [View full README on GitHub](https://github.com/ph7klw76/github-mcp-server2#readme)