mirror of
https://github.com/davila7/claude-code-templates.git
synced 2026-09-19 01:30:23 +08:00
6bbce90087
Migrated popular MCP servers not yet in our catalog, sourced from the GitHub MCP Registry (github.com/mcp) topic search. New MCPs by category: - Database: dbhub (multi-DB), redis (official), mongodb-official - DevTools: github-official, jupyter, jina-ai, mermaid, android-mcp, sentry-local - Integration: n8n-mcp, alpaca-trading - Productivity: google-workspace - Research: arxiv-mcp-server - Web: searxng, apify All components reviewed by component-reviewer agent. Fixes applied for kebab-case naming, credential handling via env blocks, and server key consistency. Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
20 lines
479 B
JSON
20 lines
479 B
JSON
{
|
|
"mcpServers": {
|
|
"github-official": {
|
|
"description": "GitHub's official MCP Server. Interact with GitHub repositories, issues, pull requests, and more directly from Claude.",
|
|
"command": "docker",
|
|
"args": [
|
|
"run",
|
|
"-i",
|
|
"--rm",
|
|
"-e",
|
|
"GITHUB_PERSONAL_ACCESS_TOKEN",
|
|
"ghcr.io/github/github-mcp-server"
|
|
],
|
|
"env": {
|
|
"GITHUB_PERSONAL_ACCESS_TOKEN": "<your-github-token>"
|
|
}
|
|
}
|
|
}
|
|
}
|