gitwhy-mcp
Server Details
The shared AI context engine for git — save, search, and share the reasoning behind code changes. Captures the why behind every commit and slide on PRs for coding agents.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Score is being calculated. Check back soon.
Available Tools
8 toolsgitwhy_getADestructiveInspect
Retrieve a saved context by its ID. Returns the full markdown content including metadata, reasoning, and file changes. Use when you know the exact context ID (e.g., from gitwhy_search or gitwhy_list results) and need the complete details. CLI alternative: git why get <id>.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Context ID (e.g. 'ctx_a1b2c3d4') to retrieve. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description uses read-oriented language ('Retrieve', 'Returns') implying a safe read operation, but the annotations declare readOnlyHint=false and destructiveHint=true. This creates a dangerous contradiction where the agent expects a non-destructive fetch but the tool actually performs destructive operations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is efficiently structured with three sentences: first stating the action, second specifying usage conditions, and third providing the CLI alternative. No words are wasted and the most critical information is front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description explains return values (helpful since there's no output schema), but fails to disclose critical behavioral traits revealed in annotations—specifically that this is a destructive, non-idempotent operation. Given the destructive annotation, the description should warn about what gets destroyed or modified.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
While the schema has 100% coverage for the single 'id' parameter, the description adds valuable semantic context by specifying where the ID comes from ('e.g., from gitwhy_search or gitwhy_list results'), clarifying the relationship between this tool and its siblings.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool retrieves a saved context by ID and specifies what it returns (full markdown content including metadata, reasoning, and file changes). It effectively distinguishes this from sibling tools gitwhy_search and gitwhy_list by referencing them as sources for obtaining the ID.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear guidance on when to use the tool ('when you know the exact context ID') and implies the workflow (use search/list first to find IDs). It also includes a CLI alternative for context. However, it lacks explicit 'when not to use' guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
gitwhy_listADestructiveInspect
Browse saved contexts and the domain/topic tree structure. Use to discover what contexts exist in this repo. Call with no args to see the domain/topic hierarchy. Add filters to drill down into a specific domain or topic. CLI alternative: git why tree (tree view) or git why log (list view).
| Name | Required | Description | Default |
|---|---|---|---|
| topic | No | Filter to a specific topic within a domain. Requires domain. | |
| domain | No | Filter to a specific domain. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Serious contradiction: Description frames tool as 'Browse' and 'discover' (read operations), but annotations declare readOnlyHint=false and destructiveHint=true. An agent reading 'Browse' would assume safe reading, but annotations indicate this performs destructive mutations. Description fails to disclose the actual destructive behavior suggested by annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Perfectly structured with zero waste: front-loaded purpose, followed by usage patterns, then optional CLI context. Four sentences that each earn their place. Appropriate length for the tool's complexity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Without output schema, description adequately explains the domain/topic hierarchy concept, but fails to address the discrepancy with destructive annotations. For a tool claiming to browse but annotated as destructive, the description is incomplete regarding actual side effects and return structure.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Adds valuable usage context beyond the 100% schema coverage: explains 'no args' behavior, 'drill down' patterns, and validates the domain/topic relationship. Schema tells what parameters exist; description tells how to use them effectively.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Excellent specificity with 'Browse saved contexts and the domain/topic tree structure'—clear verb, resource, and scope. Effectively distinguishes from sibling tools like gitwhy_get (retrieve specific) and gitwhy_save (write) by emphasizing discovery and tree hierarchy exploration.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides concrete usage patterns: 'Call with no args to see the domain/topic hierarchy' and 'Add filters to drill down.' Mentions CLI alternatives for context. Lacks explicit 'when not to use' relative to gitwhy_search or gitwhy_get, but strong positive guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
gitwhy_post_prADestructiveInspect
Post or update a GitHub PR comment summarizing the development context for linked commits. Use when the developer wants reviewers to see the 'why' behind their changes directly on the PR. Contexts must be published first via gitwhy_publish. CLI alternative: git why post-pr [context-id...].
| Name | Required | Description | Default |
|---|---|---|---|
| ids | No | JSON array string of context IDs. If omitted, posts for all published contexts on current PR. | |
| branch | No | Branch name to find PR for (e.g. 'docs-fix'). Useful when running from a different branch or worktree. | |
| pr_number | No | PR number. If omitted, auto-detects from current branch using gh CLI. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds critical workflow context (must publish first) and clarifies the side effect (PR comment with summary). It aligns with annotations (destructive mutation, not idempotent) by mentioning 'Post or update'. It could explicitly state that repeated calls may create duplicate comments or overwrite, but the 'update' keyword hints at the behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three sentences deliver: (1) core function, (2) usage trigger, (3) prerequisite and CLI alternative. Zero redundancy, front-loaded with the action, and every sentence provides distinct value not found in structured fields.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with no output schema, the description adequately covers the workflow dependency (publish first) and intended audience (reviewers). Given the 3 optional parameters and clear side effects, it provides sufficient context for invocation, though it could briefly note the auto-detection behavior when pr_number is omitted.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 100% schema description coverage, the schema carries the parameter documentation burden. The description references 'context-id' in the CLI example which loosely maps to the 'ids' parameter, but doesn't add semantic detail beyond the schema. Baseline 3 is appropriate given comprehensive schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('Post or update') and resource ('GitHub PR comment'), along with the content ('development context for linked commits'). It effectively distinguishes this from sibling tools like gitwhy_publish by focusing on the PR commenting workflow.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly states when to use ('when the developer wants reviewers to see the why'), names the prerequisite sibling tool ('Contexts must be published first via gitwhy_publish'), and provides a CLI alternative for context. This creates a clear decision framework for the agent.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
gitwhy_publishADestructiveInspect
Make synced contexts visible to the team (shared). Auto-syncs to cloud if not already synced. Use when the developer wants teammates to see their context — typically after a PR is merged or a milestone is reached. CLI alternative: git why push <context-id> --share.
| Name | Required | Description | Default |
|---|---|---|---|
| ids | Yes | JSON array string of context IDs to publish. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Adds valuable behavioral context beyond annotations: specifically discloses the auto-sync side effect ('Auto-syncs to cloud if not already synced') and maps to CLI equivalent, though could elaborate on visibility scope or permissions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Four tightly constructed sentences front-loaded with purpose, followed by side effects, usage conditions, and CLI mapping. No redundant or filler content; every clause delivers actionable information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Comprehensive for a single-parameter mutation tool: covers purpose, behavioral side effects, usage timing, and CLI parity. Lacks only error handling specifics (e.g., invalid IDs, already-shared contexts) which would elevate it to 5.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with clear parameter description ('JSON array string of context IDs'). The description implies the inputs are contexts but does not add syntax, format details, or examples beyond what the schema already provides, meeting baseline expectations.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
States specific action ('Make synced contexts visible') and target resource (shared team contexts), clearly distinguishing from siblings like gitwhy_save or gitwhy_sync by emphasizing team visibility/sharing aspect.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly states when to use ('when the developer wants teammates to see their context') and provides concrete scenarios ('typically after a PR is merged or a milestone is reached'), effectively differentiating from private sync operations.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
gitwhy_saveADestructiveInspect
Save development context (reasoning, decisions, trade-offs) for the current coding session. Use after completing a meaningful unit of work.
PREFERRED FORMAT: Wrap content in XML tags:
Required tags: title, story, reasoning. All others (including files) are optional. Context ID, repository, branch, date, and commits are auto-populated.
CLI alternative: write content to a file, then run git why save --file context.md. Or pipe directly: echo '<context>...</context>' | git why save.
| Name | Required | Description | Default |
|---|---|---|---|
| topic | No | Optional topic within the domain (e.g. 'jwt-middleware'). Auto-categorized if omitted. | |
| domain | No | Optional domain category (e.g. 'authentication', 'api-design'). Auto-categorized if omitted. | |
| commits | No | Optional list of commit SHAs made during this session. When provided, only these commits are included in the saved context. When omitted, commits are auto-detected from git history. | |
| markdown | Yes | Context document in XML format (preferred) or structured markdown (legacy). | |
| repo_root | No | Absolute path to the project's git repository root. Pass this when the MCP server may have started from a different directory (e.g., home directory). When provided, updates the repo root for this and all subsequent tool calls. Example: '/Users/dev/myproject' |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations cover safety profile (destructiveHint=true, readOnlyHint=false). Description adds valuable behavioral context not in annotations: auto-population of 'Context ID, repository, branch, date, and commits', and that repo_root updates persist for subsequent calls. Does not explicitly address non-idempotent behavior (multiple saves create multiple entries), though annotation covers this.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Lengthy but justified by complexity of required XML format. Well-structured with purpose front-loaded, followed by usage timing, then detailed formatting guide. The CLI alternative section at the end provides useful escape hatches without cluttering primary usage instructions. Every section serves a distinct purpose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Comprehensive coverage for a 5-parameter tool with complex structured input requirements. Describes input format exhaustively (XML structure), documents auto-population behavior, and provides CLI alternatives. No output schema exists, and description correctly focuses on input requirements rather than return values.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Despite 100% schema coverage (baseline 3), description adds substantial value: detailed XML schema for the 'markdown' parameter with required/optional tags, explanation that 'commits' auto-detects from git history when omitted, and crucial note that 'repo_root' affects subsequent tool calls. Elevates beyond schema definitions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description opens with specific verb 'Save' and clear resource 'development context (reasoning, decisions, trade-offs)'. The scope 'for the current coding session' and extensive XML format details clearly distinguish this write-operation tool from siblings like gitwhy_get and gitwhy_search.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit timing guidance ('Use after completing a meaningful unit of work') and detailed format instructions. However, it does not explicitly differentiate when to use this versus siblings like gitwhy_publish or gitwhy_post_pr in a workflow context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
gitwhy_searchADestructiveInspect
Search saved contexts by keyword or natural language query. Returns matching context summaries ranked by relevance using hybrid keyword + semantic search. Searches across titles, reasoning, code snippets, file paths, and commit SHAs. Results include local contexts and (if authenticated) cloud workspace contexts including team-shared contexts. Use for finding past decisions, understanding why code was written, or discovering relevant prior work. Use gitwhy_get <context_id> to read the full context. CLI alternative: git why search "<query>".
| Name | Required | Description | Default |
|---|---|---|---|
| repo | No | Filter results to a specific repository (owner/name format). Default: current repo. | |
| limit | No | Maximum number of results to return (default 10, max 20). | |
| query | Yes | Search query — natural language or specific terms (file paths, function names, commit SHAs). Examples: 'why did we change auth', 'billing.go', 'abc1234'. | |
| domain | No | Filter results to a specific domain (e.g., 'architecture', 'debugging', 'performance'). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations declare readOnlyHint=false and destructiveHint=true, but description doesn't explain why a search operation is destructive or non-idempotent. Adds valuable context about search scope (titles, reasoning, code snippets), result ranking, and authentication requirements for cloud workspaces.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Efficiently structured with core action first, followed by search scope, result composition, usage guidance, and CLI alternative. No redundant sentences; every clause adds distinct value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Comprehensive coverage of search behavior, result types (local vs. cloud), and follow-up actions. No output schema exists, but description clarifies that results are 'summaries' requiring gitwhy_get for full content, adequately compensating for missing return type documentation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so baseline applies. Description mentions 'natural language or specific terms' which aligns with query parameter, but doesn't add syntax constraints or validation rules beyond the schema documentation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
States specific action ('Search saved contexts') with clear mechanism ('hybrid keyword + semantic search') and distinguishes from sibling gitwhy_get by specifying when to use each ('Use gitwhy_get...to read the full context' vs search for finding).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly lists use cases ('finding past decisions, understanding why code was written'), provides clear alternative tool for full content retrieval (gitwhy_get), and mentions CLI equivalent for context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
gitwhy_statusADestructiveInspect
Check GitWhy setup state, pending commits, and sync status for the current repo. Use to determine whether to suggest saving context (e.g., 'there are 5 unsaved commits'), check if the user is authenticated for cloud features, or verify GitWhy is properly initialized. IMPORTANT: Check the repo_root field in the response. If it shows your home directory, pass repo_root with your project's absolute path to correct it. CLI alternative: git why log (list saved contexts) and git why tree (show structure).
| Name | Required | Description | Default |
|---|---|---|---|
| repo_root | No | Absolute path to the project's git repository root. Pass this to correct the detected repo root if it resolved to the wrong directory (e.g., home directory). Updates the repo root for this and all subsequent tool calls. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
While annotations indicate destructiveHint=true and readOnlyHint=false, the description adds crucial behavioral context: the repo auto-detection may incorrectly resolve to the home directory (requiring correction), and it notes the side effect that passing repo_root updates context for subsequent calls. CLI alternatives add further transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Four sentences with zero redundancy. Front-loaded with core functionality, followed by usage scenarios, then an IMPORTANT alert about response handling, and finally CLI references. Every sentence earns its place; the capitalization of 'IMPORTANT' effectively prioritizes the critical repo_root behavioral note.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite lacking an output schema, the description references specific response fields ('repo_root field in the response') and enumerates the three status components returned. It adequately covers the destructive/side-effect behavior hinted by annotations. Could slightly improve by hinting at the format of 'pending commits' (count vs list), but overall complete for a status tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, establishing a baseline of 3. The description adds significant value by specifying WHEN to use the parameter (when response shows home directory) and WHY (to correct detection), transforming a simple path parameter into actionable troubleshooting guidance.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb ('Check') and clearly enumerates the three specific resources inspected: 'GitWhy setup state, pending commits, and sync status.' This effectively distinguishes it from action-oriented siblings like gitwhy_save or gitwhy_sync by emphasizing diagnostic/status-checking functionality.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides three concrete usage scenarios: determining whether to suggest saving context, checking authentication for cloud features, and verifying initialization. Also offers CLI alternatives for user comparison. Lacks explicit 'when not to use' exclusions, but the specific positive guidance and sibling context provide strong implicit direction.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
gitwhy_syncADestructiveInspect
Upload local contexts to the GitWhy cloud as private (not shared with team). Use after saving contexts locally to back them up to the cloud. Synced contexts remain private until explicitly published with gitwhy_publish. CLI alternative: git why push <context-id> (syncs specified contexts as private).
| Name | Required | Description | Default |
|---|---|---|---|
| ids | No | JSON array string of context IDs to sync. If omitted, syncs all local contexts. | |
| force | No | Skip all dedup checks and re-sync even if already synced. Use to recover from stale push-state. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations declare destructiveHint=true and openWorldHint=true; the description adds valuable behavioral context about deduplication logic ('skip all dedup checks') via the force parameter explanation and clarifies privacy semantics ('not shared with team'). Could explicitly acknowledge the destructive overwrite behavior, but the dedup context provides meaningful behavioral transparency beyond annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three efficiently structured sentences: first establishes action and privacy status, second provides workflow timing, third offers CLI alternative. Every sentence contributes distinct value (purpose, prerequisites, alternative interface) with zero redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Comprehensive coverage for a sync tool: explains privacy implications, workflow integration with gitwhy_save and gitwhy_publish, CLI parity, and deduplication behavior. Lacks explicit description of return values (no output schema), but annotations and parameter coverage provide sufficient operational context for agent decision-making.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, establishing baseline 3. The description adds CLI syntax context ('git why push <context-id>') demonstrating parameter usage patterns and elaborates on deduplication behavior for the force parameter, providing usage context beyond the schema definitions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Specific verb 'Upload' with clear resource (local contexts to GitWhy cloud) and scope (private/not shared with team). Explicitly distinguishes from sibling gitwhy_publish by stating contexts 'remain private until explicitly published with gitwhy_publish', clarifying the privacy boundary.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit workflow guidance ('Use after saving contexts locally') and clear sequencing for backup purposes. Names the specific sibling tool (gitwhy_publish) as the alternative for making contexts public, establishing clear when-to-use vs when-not-to-use boundaries.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail — every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control — enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management — store and rotate API keys and OAuth tokens in one place
Change alerts — get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption — public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics — see which tools are being used most, helping you prioritize development and documentation
Direct user feedback — users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!