An unofficial implementation of an mcp server for github in go. Used internally at Metoro.
{
"mcpServers": {
"github-mcp-server-go": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
An unofficial implementation of an mcp server for github in go. Used internally at Metoro.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
MIT. View license →
Is it maintained?
Last commit 271 days ago. 4 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for Github Mcp Server Go and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Go implementation of the GitHub Model Context Protocol (MCP) server. This implementation allows AI assistants to interact with the GitHub API to perform operations such as creating repositories, managing branches, manipulating files, and more.
go get github.com/metoro-io/github-mcp-server-go
The server supports two methods of authentication:
Set your GitHub personal access token as an environment variable:
export GITHUB_PERSONAL_ACCESS_TOKEN=your_github_token
The server can also extract authentication tokens from HTTP requests. You can pass your GitHub token via the Authorization header:
Authorization: Bearer your_github_token
or simply:
Authorization: your_github_token
For HTTP handlers, the server supports both:
http_request context value for HTTP requests.ginContext value when using the Gin framework.This enables seamless integration with different web frameworks while maintaining a consistent authentication mechanism.
Set your GitHub personal access token (as described in the Authentication section).
Run the server:
go run main.go
The server provides the following tools:
main.go: Entry point for the applicationcommon/: Common utilities and error handlingoperations/: GitHub API operations implementationtools/: MCP tool definitions and handlersgo build -o github-mcp-server
go test ./...
This project is licensed under the MIT License.