Skip to main content
Glama
kannajune
by kannajune

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
MCP_ARCHITECT_ROOTNoOptional: set to a fixed repository path so tools default to that root.

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": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
architecture_overviewA

High-level map of a codebase: languages, frameworks, size, structure, and entry points. Start here to understand an unfamiliar repo.

Args: path: Repo path to analyze. Relative to the server's working directory (or MCP_ARCHITECT_ROOT if set). Defaults to the whole project.

dependency_graphA

Map how internal modules import each other, the most-depended-upon modules, and any circular dependencies. Use to understand coupling.

Args: path: Repo path to analyze. language: 'auto', 'python', or 'js'/'ts'.

impact_analysisA

What could break if you change target? Walks the import graph backwards to list direct importers and the full transitive blast radius, and flags whether the target is a high-risk hub. Use before editing/refactoring a module.

Args: target: Module or file to analyze, e.g. "app/core/db.py" or "app.core.db". If omitted, returns the highest-impact modules to pick from. path: Repo root. language: 'auto', 'python', or 'js'/'ts'.

hotspotsA

Find the files most worth attention: largest, most complex, most frequently changed (git), and highest combined risk.

Args: path: Repo path to analyze. top: How many files per category (default 10).

explainA

Deep-dive a single folder or file: its files, public classes/functions, and external dependencies.

Args: path: Repo root. module: Sub-path within the repo (folder or file) to explain.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4.1/5.0

Scored across 5 tools

Disambiguation5/5

Each tool targets a distinct aspect of code analysis: high-level overview, dependency mapping, deep-dive explanation, complexity hotspots, and impact analysis. There is no overlap in purpose.

Naming Consistency4/5

Four tools use descriptive noun phrases (architecture_overview, dependency_graph, hotspots, impact_analysis), but 'explain' is a single verb, breaking the pattern. The naming is still clear and mostly consistent.

Tool Count5/5

Five tools cover the essential code analysis tasks without being excessive or insufficient. The set is well-scoped for a codebase exploration and refactoring server.

Completeness5/5

The tools cover the main analysis needs: high-level orientation, dependency understanding, detailed module explanation, risk identification, and change impact. No obvious gaps for the intended use cases.

Maintenance

ActivityInactive
ResponsivenessNo issues