Skip to main content
Glama

mempalace-mcp-dev

An MCP (Model Context Protocol) server that gives AI coding assistants grounded, branch-scoped context about your codebase. It provides semantic code search via my MemPalace fork, git change tracking, a persistent change ledger, TypeScript/Jest dev lifecycle tools, and a built-in Project Tracks (Conductor) methodology for structured feature work.

Features

Feature

Description

Semantic code search

Natural-language queries over your indexed codebase via MemPalace embeddings

Branch context

Current branch, SHA, recent commits — always oriented

Change ledger

Append-only JSONL log of every AI-assisted change with full provenance

Dev lifecycle

Run tsc typecheck and Jest tests from within the MCP client

Git diff

Full or file-scoped diff output

Project Tracks

Create and manage markdown-based feature tracks (plan/spec/index/metadata)


Related MCP server: nodespace-mcp

Prerequisites

  • Node.js ≥ 18

  • Python ≥ 3.9

  • A git repository to point at

Important: MemPalace Fork Required

⚠️ This MCP server requires a custom fork of MemPalace with multi-branch exclude-patterns support. The official pip install mempalace package will not work — you must use my fork (branch feat/exclude-patterns-config).

The easiest way to get this set up is the setup script (see Quick Start).


Quick Start

The fastest way to get up and running is the bootstrap script at scripts/setup-mempalace.sh. It handles the entire MemPalace setup:

  • Clones my fork with the required exclude-patterns support

  • Creates a Python virtual environment

  • Installs the fork in editable mode

  • Symlinks the mempalace CLI to ~/.local/bin

  • Prepares the palace data directory

  • Optionally runs the initial codebase index

# From the repo root:
./scripts/setup-mempalace.sh

# To also index your codebase right away:
./scripts/setup-mempalace.sh --mine

The script is fully configurable via environment variables:

Env var

Default

Description

MEMPALACE_FORK_URL

https://github.com/2loch-ness6/mempalace

My fork with required exclude-patterns support

MEMPALACE_FORK_BRANCH

feat/exclude-patterns-config

Branch containing the feature

MEMPALACE_FORK_DIR

$HOME/.mempalace-fork

Where to clone the fork

MEMPALACE_VENV_DIR

$HOME/.mempalace

Python venv location

MCP_PALACE_DIR

<repo-root>/.palace/active

Palace data directory

MCP_PALACE_WING

code

Palace wing (namespace)

MCP_REPO_DIR

<repo-root>

Source code to mine

After the script finishes, check that everything works:

mempalace --version
mempalace --palace ~/.mempalace/active status

2. Clone and build the MCP server

This is not published to npm. Clone and build locally:

git clone https://github.com/2loch-ness6/mempalace-mcp-dev
cd mempalace-mcp-dev
npm install
npm run build

After building, you can use npm link to make mempalace-mcp-dev available globally:

npm link
# Now this works from anywhere:
mempalace-mcp-dev

3. Configure environment variables

export MCP_REPO_DIR=/path/to/your/repo        # defaults to process.cwd()
export MCP_PALACE_DIR=~/.mempalace/active      # MemPalace data directory
export MCP_PALACE_WING=code                    # wing name (namespace) for your repo
export MEMPALACE_PYTHON=/path/to/venv/bin/python3  # python with fork installed

If you used the setup script, set MEMPALACE_PYTHON to $HOME/.mempalace/bin/python3 (or wherever MEMPALACE_VENV_DIR points).

4. Add to your MCP client config

For Claude Desktop and other MCP clients:

{
  "mcpServers": {
    "mempalace-mcp-dev": {
      "command": "node",
      "args": ["/path/to/mempalace-mcp-dev/dist/index.js"],
      "env": {
        "MCP_REPO_DIR": "/path/to/your/repo",
        "MCP_PALACE_DIR": "/home/you/.mempalace/active",
        "MCP_PALACE_WING": "code",
        "MEMPALACE_PYTHON": "/home/you/.mempalace/bin/python3"
      }
    }
  }
}

If you ran npm link, you can also use the shorter form:

{
  "mcpServers": {
    "mempalace-mcp-dev": {
      "command": "mempalace-mcp-dev",
      "env": {
        "MCP_REPO_DIR": "/path/to/your/repo",
        "MCP_PALACE_DIR": "/home/you/.mempalace/active",
        "MCP_PALACE_WING": "code",
        "MEMPALACE_PYTHON": "python3"
      }
    }
  }
}

Environment Variables

Variable

Default

Description

MCP_REPO_DIR

process.cwd()

Absolute path to your git repository root

MCP_PALACE_DIR

~/.mempalace/active

MemPalace data directory

MCP_PALACE_WING

code

Wing (namespace) name within the palace

MCP_LEDGER_PATH

<repo>/.mcp-dev/ledger.jsonl

Path to the change ledger file

MCP_TRACKS_DIR

<repo>/conductor/tracks

Directory containing project track folders

MEMPALACE_PYTHON

python3

Python binary (must have the MemPalace fork installed)


MCP Tools Reference

Tool

Description

search_code

Semantic search over indexed codebase. Accepts query (string) and optional scope (room name) and limit (int, default 10)

mine_changed_files

Re-index files changed since the last git commit. Call after editing to keep search current

Branch & Git

Tool

Description

get_branch_context

Returns current branch, SHA, short SHA, and last 5 commit messages

get_changed_files

Files changed vs HEAD~1 (or a specified base ref) with add/modify/delete status

get_git_diff

Full diff output. Optional base ref and filePath for scoping

Change Ledger

Tool

Description

record_change

Append an entry to the ledger (files affected, description, reason, tags, optional track link)

read_ledger

Read recent ledger entries. Optional limit (default 20) and branch filter

Dev Lifecycle

Tool

Description

run_typecheck

Run tsc --noEmit in a service directory. Returns structured errors with file/line/col/code

run_tests

Run Jest in a service directory. Returns pass/fail counts and structured failure details

Project Tracks (Conductor)

Tool

Description

list_tracks

List all live tracks (directories containing plan.md)

get_track_plan

Read plan.md for a track

update_track_plan

Overwrite plan.md for a track

get_track_spec

Read spec.md for a track

update_track_spec

Overwrite spec.md for a track

get_track_index

Read index.md for a track

update_track_index

Overwrite index.md for a track

create_track

Scaffold a new track directory with all four files


Project Tracks Methodology (Conductor)

Project Tracks is a lightweight, file-based feature management system. Each track is a directory containing up to four files:

conductor/tracks/
└── my-feature-20260501/
    ├── plan.md       ← living task list; the status source of truth
    ├── spec.md       ← technical spec, design decisions, acceptance criteria
    ├── index.md      ← short summary and linked resources
    └── metadata.json ← machine-readable metadata (id, owner, status, dates)

Rules:

  • A directory is a live track only if it contains plan.md.

  • plan.md is always read/written live from disk (never via MemPalace — no staleness).

  • Track slugs must match [a-zA-Z0-9][a-zA-Z0-9_-]* (max 100 chars).

Bootstrapping tracks in a new project:

# Create the tracks directory
mkdir -p conductor/tracks

# Use the MCP tool to scaffold a track
# (or copy from templates/track/ in this package)

Template files are included in templates/track/ for manual scaffolding.


MemPalace Configuration (mempalace.yaml)

Place a mempalace.yaml at the root of MCP_REPO_DIR to control how files are indexed. A generic example is provided in mempalace.yaml.example.

Key sections:

  • wing — must match MCP_PALACE_WING

  • exclude_patterns — gitignore-syntax patterns to skip during mining

  • rooms — semantic routing rules (keyword → room name) for search scoping


Development

git clone https://github.com/2loch-ness6/mempalace-mcp-dev
cd mempalace-mcp-dev
npm install
npm run build
npm test

See CONTRIBUTING.md for contribution guidelines.


License

MIT — see LICENSE.

Available Tools

19 tools
create_trackB

Create a new conductor track directory with plan.md, index.md, and metadata.json. Fails if the slug already exists.

ParametersJSON Schema
NameRequiredDescriptionDefault
slugYes
titleYes
typeNo
ownerNo

TDQS

B3.3/5.0
Behavior3/5

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

With no annotations, the description bears full burden. It discloses creation behavior and the duplicate slug failure, but lacks side effects, auth needs, or what happens on partial existence. Adequate but not thorough.

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?

Single sentence conveying creation and failure condition. No redundant information, highly efficient.

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

Completeness2/5

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

No output schema, no annotations, and only 4 params with zero schema descriptions. The description lacks details on return value, parameter effects, and contents of created files. Incomplete for a creation tool.

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

Parameters2/5

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

Schema coverage is 0%, so description must compensate. It explains 'slug' as identifier for the directory, but ignores 'title', 'type', 'owner' parameters. Only 'slug' is partially described, leaving other params opaque.

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 the tool creates a conductor track directory with specific files (plan.md, index.md, metadata.json) and fails if the slug exists. This distinguishes it from sibling tools like get_track_* or update_track_*.

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

Usage Guidelines2/5

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

No guidance on when to use vs alternatives. It only mentions failure on duplicate slug, but does not compare with update_track_* or list_tracks. Sibling tools are present but no context provided.

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

get_all_changesC

Get all changes in the ledger, optionally filtered by ISO timestamp.

ParametersJSON Schema
NameRequiredDescriptionDefault
sinceNo

TDQS

C2.9/5.0
Behavior2/5

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

No annotations are provided, and the description fails to disclose behavioral traits such as read-only nature, pagination, or performance implications. It only states the basic function.

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 extremely concise with a single sentence that front-loads the key information. No redundant words.

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

Completeness2/5

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

Given no output schema and minimal description, the tool lacks completeness. It does not explain what constitutes a change, return format, or pagination, making it insufficient for agents.

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?

The description adds meaning to the 'since' parameter by stating it expects an ISO timestamp, but it does not specify format or provide examples. Schema coverage is 0%, so the description partially compensates.

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

Purpose4/5

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

The description clearly states it retrieves all changes in the ledger and optionally filters by ISO timestamp, which is specific and distinguishes it from sibling tools like get_changed_files. However, it does not define 'changes' further.

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

Usage Guidelines2/5

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

No usage guidance is provided; there is no mention of when to use this tool versus alternatives like get_changed_files or get_session_changes. The description is purely functional.

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

get_branch_contextA

Get the current git branch, HEAD SHA, and recent commits. Always call this first to anchor your context to the correct branch.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.2/5.0
Behavior3/5

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

Describes the output (branch, HEAD SHA, recent commits) but lacks detail on what constitutes 'recent commits' (e.g., count, ordering). No annotations provided, so description carries full burden; minimal transparency.

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?

Two sentences, front-loaded with purpose and immediate usage instruction. No redundant or unnecessary text; every word serves a function.

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?

Given zero parameters and no output schema, the description adequately conveys the tool's output and purpose. However, could be expanded slightly to specify commit count or format for better completeness.

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

Parameters4/5

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

No parameters exist (0 params, 100% schema coverage). The description adds value by specifying the output fields, which is the only relevant semantic information.

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?

Description clearly states what the tool does: get current git branch, HEAD SHA, and recent commits. The verb 'Get' and specific resources distinguish it from siblings like get_all_changes or get_changed_files.

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

Usage Guidelines4/5

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

Explicitly instructs to call this first to anchor context to the correct branch, providing a clear usage sequence. Does not mention alternatives directly, but the instruction strongly implies its primary role.

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

get_changed_filesA

List files changed since a base ref (default: HEAD~1). Useful to understand scope of recent changes.

ParametersJSON Schema
NameRequiredDescriptionDefault
baseNo

TDQS

A3.7/5.0
Behavior2/5

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

No annotations are provided, so the description must fully describe behavior. It only indicates the tool lists changed files with a default base ref, but does not disclose whether it is read-only, permission requirements, or return format. This is minimal for a tool that likely involves git operations.

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?

Two sentences, no filler. The first sentence defines the core functionality, and the second provides a use case. Every word earns its place, making it easy to parse.

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

Completeness3/5

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

Given the single parameter and lack of annotations or output schema, the description is sufficient for basic understanding but incomplete. It does not specify what the output looks like (e.g., file paths only?), or whether other git refs (tags, commits) are valid inputs beyond commits.

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

Parameters4/5

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

The input schema has one parameter 'base' with no description (0% coverage). The description adds meaning by stating the default value (HEAD~1) and context ('base ref'), which helps the agent understand the parameter's purpose beyond the raw schema.

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 the tool lists files changed since a base ref with a default of HEAD~1. It uses specific verb 'list' and resource 'files changed', distinguishing it from siblings like 'get_git_diff' (which likely shows diffs) and 'mine_changed_files' (which may have advanced filtering).

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

Usage Guidelines3/5

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

The description mentions it is 'useful to understand scope of recent changes,' implying when to use it. However, it does not explicitly exclude other usages or compare with sibling tools, leaving ambiguity about alternatives like 'get_all_changes' or 'get_git_diff'.

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

get_file_ledgerA

Get all logged changes that touched a specific file path. Use to understand the change history of a file before modifying it.

ParametersJSON Schema
NameRequiredDescriptionDefault
filePathYes

TDQS

A3.7/5.0
Behavior2/5

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

No annotations are provided, and the description only says 'get all logged changes,' implying a read operation but not explicitly stating it is safe, non-destructive, or any other behavioral traits like required permissions or rate limits. The description carries the full burden but provides minimal transparency.

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 extremely concise—two sentences—with no redundant or filler content. Every word serves a purpose: the first sentence states the function, the second provides a usage context.

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?

Given the tool's simplicity (one parameter, no output schema), the description covers the essential purpose and a key usage scenario. It could optionally mention return order or pagination, but it is largely complete for an agent to invoke correctly.

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

Parameters2/5

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

Schema description coverage is 0%, so the description must compensate. It mentions 'specific file path' but adds no extra constraints (e.g., path format, absolute vs. relative, valid characters) beyond the schema's simple string type and minLength. This is insufficient for full parameter understanding.

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 the action ('get'), the resource ('all logged changes'), and the scope ('touched a specific file path'). It effectively distinguishes from siblings like 'get_all_changes' and 'get_changed_files' by specifying file-path filtering.

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

Usage Guidelines4/5

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

The second sentence provides a clear use case: 'Use to understand the change history of a file before modifying it.' While it doesn't explicitly state when not to use or list alternatives, the context implies it is for pre-modification review.

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

get_git_diffA

Get the full unified diff between two refs (default: HEAD~1..HEAD). Returns diff text, file list, and addition/deletion counts. Use to review changes before logging them to the ledger.

ParametersJSON Schema
NameRequiredDescriptionDefault
baseNoBase git ref to diff against. Defaults to HEAD~1 (last commit). Use "HEAD" for uncommitted changes.
fileNoOptional file path to scope the diff to a single file.

TDQS

A4.5/5.0
Behavior4/5

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

With no annotations provided, the description carries full burden. It discloses the operation type (read), default behavior, and return structure. However, it does not explicitly state that it is non-destructive or mention any side effects, though the nature of git diff suggests none.

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?

Two sentences with no redundant words. The first sentence defines the action and inputs, the second provides the usage context. Information is front-loaded and efficient.

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

Completeness5/5

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

For a simple tool with two optional parameters and no output schema, the description fully explains inputs, defaults, return values, and suggested usage. No additional information is needed for an agent to use it correctly.

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

Parameters4/5

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

Schema coverage is 100%, and the description adds value by explaining defaults (base defaults to HEAD~1) and special values ('Use HEAD for uncommitted changes'). This provides context beyond the schema descriptions.

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 the tool gets the full unified diff between two refs with a default of HEAD~1..HEAD, and lists the return types (diff text, file list, counts). This distinguishes it from siblings like get_changed_files or get_all_changes which focus on file lists rather than the full diff.

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

Usage Guidelines4/5

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

The description specifies when to use the tool: 'Use to review changes before logging them to the ledger.' This provides clear context, but it does not explicitly mention when not to use it or compare with alternative sibling tools, leaving some ambiguity.

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

get_session_changesB

Retrieve all changes logged in the current session. Use at session start to understand what was done previously.

ParametersJSON Schema
NameRequiredDescriptionDefault
sessionIdYes

TDQS

B3/5.0
Behavior2/5

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

No annotations present. Description only says 'Retrieve', implying read-only, but does not explicitly confirm non-destructive nature or explain what 'changes' entails.

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?

Two concise sentences front-load the purpose and usage without unnecessary words.

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

Completeness2/5

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

Given no output schema, description fails to explain return format or content of changes. No mention of sibling tools like log_change or get_all_changes to provide context.

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

Parameters2/5

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

Schema has 0% description coverage for sessionId. Description mentions 'current session' but does not clarify how sessionId relates or how to obtain it, leaving ambiguity.

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

Purpose4/5

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

The description clearly states it retrieves all changes in the current session, differentiating it somewhat from sibling 'get_all_changes' by specifying session scope, but could be more explicit.

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

Usage Guidelines3/5

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

It advises using at session start to understand previous work, providing context, but lacks when-not-to use or alternatives like get_all_changes.

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

get_track_indexB

Read the index.md for a specific conductor track. Returns the live track overview and summary.

ParametersJSON Schema
NameRequiredDescriptionDefault
trackNameYes

TDQS

B3/5.0
Behavior3/5

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

No annotations are provided, so the description must carry full burden. It indicates a read operation (non-destructive) and mentions the return value, but does not disclose behavior like error handling or prerequisites (e.g., track must exist). Adequate but minimal.

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

Conciseness4/5

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

The description is very short (two sentences) with no unnecessary words. It front-loads the action and resource. Slight room for improvement in structure (e.g., listing return value first).

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

Completeness3/5

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

For a simple tool with one parameter and no output schema, the description is mostly complete. It states what is read and what is returned. However, it lacks context about error conditions or the requirement for the track to exist.

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

Parameters2/5

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

Schema description coverage is 0%, so the description should add meaning to the single parameter 'trackName'. It only mentions 'specific conductor track' but does not explain format, constraints, or examples. Insufficient compensation for lack of schema descriptions.

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

Purpose4/5

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

The description clearly states the action 'Read' and the resource 'index.md for a specific conductor track', with return value of 'live track overview and summary'. It is specific but does not explicitly differentiate from sibling tools like get_track_plan or get_track_spec.

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

Usage Guidelines2/5

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

No guidance is provided on when to use this tool versus alternatives. The description simply states what it does without context for selection or exclusion.

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

get_track_planA

Read the plan.md for a specific conductor track. Returns live file content — not docs, not memory.

ParametersJSON Schema
NameRequiredDescriptionDefault
trackNameYes

TDQS

A3.9/5.0
Behavior3/5

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

Describes that it returns live file content, indicating a non-destructive read operation. No annotations exist, so description carries full burden, but lacks details on error handling or permissions for a mutation-free tool.

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?

Single sentence, front-loaded with key action and resource, no wasted words.

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?

Sufficient for a simple read tool with one parameter and no output schema; covers what the tool returns and what it is not, but could mention potential failure modes.

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

Parameters2/5

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

Schema coverage is 0%, and description does not explain the 'trackName' parameter beyond its implied role in the purpose. Adds minimal meaning to the bare schema.

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?

Clearly states verb 'Read' and resource 'plan.md for a specific conductor track', distinguishing it from similar sibling tools like get_track_spec or get_track_index by emphasizing 'not docs, not memory'.

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

Usage Guidelines4/5

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

Provides clear context that it returns live file content, differentiating from other file types, but does not explicitly state when to use or not use it, nor mention alternatives.

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

get_track_specB

Read the spec.md for a specific conductor track. Returns the live technical specification.

ParametersJSON Schema
NameRequiredDescriptionDefault
trackNameYes

TDQS

B3.2/5.0
Behavior2/5

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

No annotations provided, so description carries full burden. It indicates read-only behavior but lacks details on side effects, permissions, or error handling.

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?

Two sentences, 15 words, front-loaded with essential information. No unnecessary text.

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

Completeness3/5

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

For a simple read tool with one parameter, description is adequate but sparse. Does not explain what a conductor track is or error scenarios, but sufficient given low complexity.

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

Parameters2/5

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

Schema has 0% description coverage for parameter 'trackName'. Description adds minimal context by saying 'for a specific conductor track' but does not explain format or validation.

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?

Description clearly states the action (Read), resource (spec.md for a conductor track), and outcome (returns live technical specification). It distinguishes from siblings like update_track_spec.

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

Usage Guidelines2/5

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

No explicit guidance on when to use this tool versus alternatives like update_track_spec or get_track_plan. Agent must infer from context.

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

list_tracksA

List all live conductor tracks (only tracks with a plan.md are returned). Use to understand current work in progress.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4/5.0
Behavior3/5

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

No annotations provided, so description must disclose behaviors. It reveals the filtering condition (only tracks with plan.md) but does not mention read-only nature, performance, or auth needs.

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?

Two sentences, no extraneous words. Front-loaded with action and filter. Efficient for its purpose.

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?

Given tool simplicity (no params, no output schema), description covers purpose and filter adequately. Could briefly differentiate from 'get_track_index' for completeness, but not necessary.

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

Parameters4/5

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

Input schema is empty with 100% coverage, so no parameters to describe. Baseline for 0 params is 4; description adds no additional parameter info but none is needed.

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?

Describes specific verb 'list' and resource 'live conductor tracks', with clear filter 'only tracks with a plan.md'. Distinguishes from siblings like 'get_track_index' or 'create_track' by specifying the scope.

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

Usage Guidelines3/5

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

States use case 'to understand current work in progress' but does not mention when not to use or provide alternatives. Lacks explicit differentiation from other list-like tools.

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

log_changeA

Log a code change to the persistent change ledger. Models MUST call this after modifying files. Enables cross-session coherence.

ParametersJSON Schema
NameRequiredDescriptionDefault
sessionIdYes
modelYes
filesAffectedYes
descriptionYes
reasonYes
tagsNo
conductorTrackNo
conductorTaskNo

TDQS

A3.7/5.0
Behavior3/5

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

With no annotations provided, the description carries full behavioral burden. It implies a write operation but does not disclose side effects, idempotency, or error conditions. The phrase 'persistent change ledger' suggests append-only behavior, but this is not explicit.

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 extremely concise: two sentences that front-load the main purpose. Every word earns its place, with no redundancy or fluff.

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

Completeness2/5

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

Despite reasonable purpose clarity, the description lacks detail on the ledger's behavior, return value, and parameter semantics. Given the tool's complexity (8 params, no output schema), it is insufficiently complete for correct agent invocation.

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

Parameters2/5

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

Schema description coverage is 0%, yet the description adds no meaning for any of the 8 parameters. Critical fields like 'filesAffected' and 'description' are unexplained, leaving the agent to infer from names alone.

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 the action ('Log a code change') and the resource ('persistent change ledger'), specifying that models MUST call this after modifying files for cross-session coherence. This distinguishes it clearly from read-only sibling tools like 'get_all_changes'.

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

Usage Guidelines4/5

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

The description explicitly states when to use the tool: 'Models MUST call this after modifying files.' It provides clear context for usage but does not mention when not to use it or list alternatives among siblings.

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

mine_changed_filesA

Re-index files changed since last commit into MemPalace. Call after making code changes to keep the search index current.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations, the description carries the burden of disclosing behavior. It describes the re-indexing action but provides no additional context about side effects, performance impact, or safety. It is minimally adequate.

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 a single, well-structured sentence that gets straight to the point without any fluff. Every word is necessary.

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

Completeness3/5

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

Given the tool has no parameters or output schema, the description covers the essentials but lacks details about prerequisites (e.g., git repository) or consequences. It is adequate but not comprehensive.

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

Parameters4/5

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

The tool has no parameters and the input schema coverage is 100% (empty). The description adds no parameter information, but none is needed. Baseline for zero parameters is 4.

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

Purpose4/5

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

The description clearly states the tool re-indexes files changed since the last commit into MemPalace, using a specific verb and resource. It does not explicitly distinguish from siblings like get_changed_files or update_track_index, but the action is distinct enough.

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

Usage Guidelines4/5

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

The description explicitly says to call it after making code changes to keep the search index current, providing clear context for use. However, it does not mention when not to use it or alternative tools.

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

run_testsA

Run Jest tests for a service. Returns pass/fail counts and structured failure details with test names and error messages. Optionally scope to a test name pattern.

ParametersJSON Schema
NameRequiredDescriptionDefault
servicePathYesRelative path from repo root to the service to test. E.g. "ops/control-panel/server".
patternNoOptional Jest test name pattern to run a subset of tests.

TDQS

A3.8/5.0
Behavior3/5

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

No annotations are provided, so the description must disclose behavior. It describes the return values (pass/fail counts, failure details) but does not mention side effects, permissions, or environmental impact (e.g., is the test isolated? Does it require a service to be running?).

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?

Two concise sentences: first covers purpose and return, second covers parameter usage. No wasted words or redundancy.

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?

Given simple parameters, no output schema, and no annotations, the description adequately covers what the tool does, what it returns, and how to use the optional parameter. Slightly incomplete as it omits error conditions or prerequisites, but sufficient for the tool's simplicity.

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?

Schema coverage is 100%, so baseline is 3. The description restates that the pattern parameter is optional ('Optionally scope to a test name pattern'), adding no new meaning beyond the schema descriptions.

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 specifies the action ('Run Jest tests for a service'), the resource ('Jest tests'), and the context ('for a service'). It distinguishes from siblings like run_typecheck by naming the test framework and purpose.

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

Usage Guidelines3/5

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

The description implies usage is for running tests, but it does not explicitly state when to use this tool versus alternatives like run_typecheck. It mentions optional scoping with a pattern but lacks exclusion guidance.

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

run_typecheckA

Run TypeScript type-checking (tsc --noEmit) for a service. Returns structured errors with file, line, column, and message. Call after writing code to verify correctness before committing.

ParametersJSON Schema
NameRequiredDescriptionDefault
servicePathYesRelative path from repo root to the service to typecheck. E.g. "ops/control-panel/server", "SeID/seid-core", "packages/overlay-contracts".

TDQS

A4.3/5.0
Behavior4/5

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

Discloses that it runs tsc --noEmit (no output files) and returns structured errors with file, line, column, and message. No annotations provided, but description covers main behavioral aspects for a type-check tool.

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?

Two sentences, front-loaded with action and return format, then usage guidance. Every sentence adds value with no waste.

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

Completeness5/5

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

Given the simplicity (one parameter, no output schema, no nested objects), the description is fully adequate: it explains what the tool does, what it returns, and when to call it.

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?

Schema has 100% coverage with a description for servicePath. The tool description does not add additional meaning beyond what the schema provides, so baseline of 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?

Clearly states the action: run TypeScript type-checking (tsc --noEmit) for a service. Distinguishes from siblings like run_tests and search_code by specifying it's for TypeScript type-checking and returning structured errors.

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

Usage Guidelines4/5

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

Explicitly advises calling 'after writing code to verify correctness before committing.' Provides clear context for when to use the tool, though does not mention alternatives or when not to use it.

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

search_codeA

Semantic search over the current branch's code. Returns branch-stamped results from MemPalace. Never searches docs or config.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYes
limitNo
scopeNo

TDQS

A3.8/5.0
Behavior3/5

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

The description discloses that search is semantic, results are branch-stamped from MemPalace, and it excludes docs/config. With no annotations, it carries the transparency burden but omits details like how the 'scope' parameter affects behavior, potential rate limits, or authentication needs. It provides minimal but useful behavioral context.

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?

Two sentences deliver the core purpose, scope, and a constraint with no wasted words. Information is front-loaded, making it easy for an agent to quickly understand the tool's function.

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

Completeness3/5

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

The description covers the main purpose and a key exclusion. It lacks explanation of the return format, the meaning of 'scope', and how results are structured. Since there is no output schema, more detail on return values would improve completeness. It is adequate but not thorough.

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

Parameters2/5

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

The input schema has no descriptions (0% coverage). The description only implicitly covers the 'query' parameter via the search verb but does not explain the 'limit' or 'scope' parameters. This leaves the agent lacking guidance on how to use these parameters effectively.

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 'Semantic search over the current branch's code,' specifying the verb, resource, and scope. It distinguishes from siblings by targeting code only and explicitly excluding docs and config, setting it apart from other tools on the server like those for tracks or changes.

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

Usage Guidelines4/5

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

The description provides context that search is over current branch code and never searches docs or config, implying when to use. However, it does not explicitly state when to avoid using this tool or suggest alternatives, leaving some ambiguity about comparative usage.

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

update_track_indexB

Overwrite index.md for an existing conductor track. Use to update the track summary, status, or linked resources.

ParametersJSON Schema
NameRequiredDescriptionDefault
trackNameYes
contentYes

TDQS

B3.4/5.0
Behavior2/5

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

No annotations are provided, so the description carries full burden for behavioral traits. It states 'overwrite', implying destructive replacement, but lacks details on side effects, error conditions, permissions, or what happens to existing content. The minimal disclosure is insufficient for a mutation tool.

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

Conciseness4/5

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

The description is a single sentence, very concise and front-loaded with the verb and resource. However, it may be overly concise given the lack of other documentation, sacrificing completeness for brevity.

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

Completeness2/5

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

The tool has 2 required parameters, no output schema, and no annotations. The description omits essential context: what index.md is, what a conductor track is, expected content format, and whether the operation is idempotent. An AI agent would need additional domain knowledge to use this tool correctly.

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

Parameters2/5

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

Schema description coverage is 0%, so the description must compensate. It mentions 'track summary, status, or linked resources' but does not explicitly map to the two parameters (trackName, content). No format, length, or example values are provided, leaving the agent to infer parameter meaning.

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 the tool overwrites index.md for an existing conductor track, specifying the verb 'overwrite' and the resource. It also lists use cases: update track summary, status, or linked resources. This distinguishes it from siblings like create_track and get_track_index.

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

Usage Guidelines4/5

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

Explicitly says 'use to update the track summary, status, or linked resources', providing clear context for when to use. However, it does not mention when not to use or differentiate from alternatives like update_track_plan or update_track_spec, which limits guidance for tool selection.

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

update_track_planA

Overwrite the plan.md for an existing conductor track with new content. The track must already exist. Use this to update task status, add phases, or record decisions.

ParametersJSON Schema
NameRequiredDescriptionDefault
trackNameYes
contentYes

TDQS

A4/5.0
Behavior3/5

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

Without annotations, the description carries the full burden. It discloses that the action is destructive ('overwrite') and includes a precondition (track must exist). However, it does not detail other behavioral traits such as atomicity, error handling, or return behavior, which is acceptable for a simple update operation.

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 two sentences, concise and front-loaded with the core action. Every sentence adds value without redundancy.

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?

Given the simple two-parameter schema and no output schema, the description is largely complete. It covers purpose, prerequisite, and use cases. Minor gaps like error behavior are acceptable for this tool's complexity.

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?

With 0% schema description coverage, the description partially compensates by explaining that content is used for task status, phases, or decisions. However, it does not describe the format or constraints for either parameter, leaving some ambiguity.

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 the tool overwrites plan.md for an existing conductor track, using specific verb ('overwrite') and resource ('plan.md' for a track). It implicitly distinguishes from siblings like get_track_plan (read) and create_track (create new track).

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

Usage Guidelines4/5

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

The description provides clear context for when to use the tool (update task status, add phases, record decisions) and states a prerequisite ('The track must already exist'). It does not explicitly mention when not to use or list alternatives, but the context is sufficient.

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

update_track_specA

Overwrite spec.md for an existing conductor track. Use to update technical decisions, architecture notes, or acceptance criteria.

ParametersJSON Schema
NameRequiredDescriptionDefault
trackNameYes
contentYes

TDQS

A3.6/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden. It states 'Overwrite' indicating mutation, but lacks details on side effects (e.g., whether it creates if missing, if content is appended or replaced, any requirements for existing track).

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?

Two sentences, front-loaded with the main action ('Overwrite spec.md'), no redundant information. Every sentence adds value.

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

Completeness3/5

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

Given two simple parameters and no output schema, the description is mostly adequate but lacks details on whether the track must exist, how errors are handled, and what the response contains. For a mutation tool, more context is needed.

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

Parameters2/5

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

Schema description coverage is 0%, and the description adds no extra meaning beyond the parameter names. 'trackName' and 'content' are self-explanatory from the schema but the description does not elaborate on format, constraints, or purpose.

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 the verb 'Overwrite' and the resource 'spec.md for an existing conductor track'. It differentiates from sibling tools like get_track_spec (read) and create_track (create track).

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

Usage Guidelines4/5

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

The description provides explicit use cases: 'update technical decisions, architecture notes, or acceptance criteria.' It implies context but does not state when not to use or list alternatives.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 19 tool updatesv1.0.0
    • First observedcreate_track
    • First observedget_all_changes
    • First observedget_branch_context
    • First observedget_changed_files
    • First observedget_file_ledger
    • First observedget_git_diff
    • First observedget_session_changes
    • First observedget_track_index
    • First observedget_track_plan
    • First observedget_track_spec
    • First observedlist_tracks
    • First observedlog_change
    • First observedmine_changed_files
    • First observedrun_tests
    • First observedrun_typecheck
    • First observedsearch_code
    • First observedupdate_track_index
    • First observedupdate_track_plan
    • First observedupdate_track_spec

TDQS

A3.7/5.0
Disambiguation5/5

Each tool targets a specific resource or action with clear boundaries. For example, get_all_changes vs get_session_changes are distinguished by persistence scope, and get_git_diff vs get_changed_files provide different levels of detail.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern using snake_case (e.g., create_track, get_branch_context, run_tests). The naming is predictable and easy to understand.

Tool Count4/5

With 19 tools, the server is slightly above the ideal range of 3-15, but the count is justified by covering two distinct domains (track management and code change tracking) plus code quality checks. The set is well-scoped without being overwhelming.

Completeness4/5

Core workflows for track management and change logging are covered (create, read, update, log). Minor gaps exist: no delete_track tool and limited git operations (no commit/push), but these are acceptable for the intended assistant role.

Maintenance

ActivityStale
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/2loch-ness6/mempalace-mcp-dev'

If you have feedback or need assistance with the MCP directory API, please join our Discord server