Skip to main content
Glama
aic0t

AI Coach MCP Server

by aic0t

Show a repository's Git graph in AI Coach

show_ai_coach_git_graph
Idempotent

Visualize a local Git repository's commit graph—branches, tags, merges—inside the AI Coach mascot app; reads only local .git data, keeping history private.

Instructions

Open the commit graph (branches, tags, merges, like VS Code's Git Graph) of a local Git repository folder beside the AI Coach mascot. Pass the absolute path of a folder that contains .git. The app reads .git locally and never runs git or touches the network; the model only receives a small summary (branch, commit and ref counts), never the history itself. Use only when the user asked to see the repository history or graph.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYesAbsolute path of a local folder that contains .git (the repository root). The AI Coach app reads the repository itself; only a small summary comes back.
localeNoDisplay language (BCP 47).
mascotIdNoA mascotId returned by status. Defaults to the primary mascot when omitted.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.1.4

TDQS

A4.6/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Discloses important behavioral traits beyond annotations: the app reads .git locally, never runs git, never touches the network, and the model only receives a small summary rather than the history. This gives an agent confidence about privacy, side effects, and what the action will/won't do.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is front-loaded with the purpose, then covers prerequisites, behavior, and usage conditions. Every sentence adds value and none are redundant with the schema beyond the path emphasis, which is acceptable for such a critical parameter.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With no output schema, the description usefully explains what the model receives (a summary of branch/commit/ref counts) and that full history is not exposed. Minor gaps remain around invalid paths or non-repository folders, but the essential information for correct invocation is present.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Input schema coverage is 100%, and the description mostly re-emphasizes the path requirement already present in the schema. It does not add meaningful semantics for locale or mascotId beyond their schema descriptions, so the baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states a specific action and resource: opening the commit graph (branches, tags, merges) of a local Git repository, with a helpful VS Code Git Graph analogy. It also explicitly scopes the tool to 'when the user asked to see the repository history or graph,' distinguishing it from file-viewing and note-manipulation siblings.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides an explicit trigger condition ('Use only when the user asked to see the repository history or graph') and a clear prerequisite (absolute path of a folder containing .git). This effectively tells an agent when to choose this tool and what input it must have ready.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.