Skip to main content
Glama
GHeeJeon
by GHeeJeon

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
REPO_NAMEYesTarget repository name (e.g., my-project)
REPO_PATHYesAbsolute path to local repository (e.g., /Users/me/my-project)
REPO_OWNERYesTarget repository owner (e.g., myorg)
GITHUB_TOKENYesGitHub Personal Access Token (repo scope)
ANTHROPIC_API_KEYNoClaude API key (only needed for run_workflow tool)
DEFAULT_BASE_BRANCHNoDefault base branchmain

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
}
prompts
{
  "listChanged": true
}
resources
{
  "listChanged": true
}

Tools

Functions exposed to the LLM to take actions

NameDescription
list_labelsA

List all available labels in the repository. Call this before create_issue to see which label names are valid.

create_issueA

Create a GitHub issue. Use list_labels first to pick valid label names — non-existent labels are rejected.

create_branchA

Create a new GitHub branch from a base branch.

run_testsA

Run the test suite and return pass/fail status with full output.

commit_and_pushA

Stage files, create a commit, and push to the current branch.

create_prB

Open a GitHub Pull Request for the given branch.

get_pr_review_summaryA

Fetch and summarise all review comments for a Pull Request.

run_workflowA

Fully automated workflow: AI generates code, runs tests (retrying up to 3 times on failure), commits, pushes, and opens a PR. Requires ANTHROPIC_API_KEY.

Prompts

Interactive templates invoked by user choice

NameDescription
workflowStandard prompt for implementing a feature end-to-end using the github-workflow MCP tools.

Resources

Contextual data attached and managed by the client

NameDescription
repo-contextRepository file structure and key file contents. Attach before asking Claude to write or modify code.
repo-recent-prsRecent pull requests (up to 10, sorted by last updated). Useful for context on active work.

TDQS

A3.8/5.0

Scored across 8 tools

Disambiguation4/5

Most tools are clearly distinct (create_branch, create_issue, create_pr, list_labels, get_pr_review_summary). However, run_workflow subsumes commit_and_push and run_tests, potentially causing selection ambiguity. Descriptions mitigate this by specifying that run_workflow is a high-level automated workflow.

Naming Consistency5/5

All tool names follow a consistent snake_case verb_noun pattern (e.g., create_branch, list_labels, run_tests, get_pr_review_summary). Even compound verbs like commit_and_push adhere to the pattern without mixing styles.

Tool Count5/5

8 tools is well within the typical 3-15 range for a focused MCP server. Each tool serves a distinct purpose in the development workflow, from branching and committing to testing and PR creation, without unnecessary bloat.

Completeness4/5

The tool set covers the core workflow (branching, committing, testing, PR creation, issue creation) and includes supporting tools (list_labels, get_pr_review_summary). Minor gaps exist: no direct file manipulation, no delete branch, and no tools for managing PRs after creation (e.g., merge). However, the stated purpose is workflow automation, and the set is largely complete for that.

Maintenance

ActivityInactive
ResponsivenessUnresponsive