Skip to main content
Glama
hampannagouda

github-mcp-server

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
GITHUB_TOKENYesGitHub Personal Access Token

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": true
}

Tools

Functions exposed to the LLM to take actions

NameDescription
github_whoamiA

Get the authenticated GitHub user's profile (login, name, email, etc).

github_list_reposA

List repositories owned by or accessible to the authenticated user.

github_get_repoB

Get details about a specific repository.

github_search_reposB

Search GitHub repositories by keyword/query.

github_get_fileB

Get the contents of a file from a GitHub repository.

github_list_issuesC

List issues in a repository.

github_create_issueC

Create a new issue in a repository.

github_list_pull_requestsC

List pull requests in a repository.

github_search_codeA

Search code across GitHub (or within a specific repo using repo:owner/name in the query).

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.5/5.0

Scored across 9 tools

Disambiguation5/5

Each tool targets a distinct resource and action: user identity, code search, repo listing/detail/search, file retrieval, issue listing/creation, and pull request listing. There is no overlap or ambiguity between tools.

Naming Consistency5/5

All tools follow a consistent `github_` prefix with snake_case naming and a verb_noun pattern (search_code, list_repos, get_repo, create_issue). The `whoami` tool slightly deviates from the noun structure but remains a recognizable verb, so the overall pattern is highly predictable.

Tool Count5/5

With 9 tools, the server is well-scoped for a GitHub integration, covering common read operations (user, search, repos, files, issues, PRs) and a couple of write operations (create issue). The count feels intentional and not bloated.

Completeness4/5

The server covers the core GitHub browsing and searching workflow, including user identity, repository list/search/detail, file content, and issue list/create. Minor gaps exist such as lacking PR creation/update, issue update/delete, and repository creation, but these are not critical for a read-oriented utility.

Maintenance

ActivitySlowing
ResponsivenessNo issues