Skip to main content
Glama

Symvanta

ref

Idempotent

Session-scoped branch / working-tree overlay. Ops:

  • use: pin a repository's reads to a branch (latest indexed revision). Branch must be tracked+indexed (open a PR, or add on the dashboard); else "indexing_in_progress". commitSha overrides.

  • clear: remove the pin, revert to default.

  • index_working_tree: overlay UNCOMMITTED edits (changedFiles path+content, optional deletedPaths/baseSha) on a short-lived synthetic revision pinned here; find_node/locate/relate reflect them, source and locate mode:semantic do NOT. Cap 100 files/256KB.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
opYesuse: pin reads to a tracked branch. clear: revert to the default branch. index_working_tree: overlay uncommitted edits on a synthetic revision and pin it.
branchNoop:use. The tracked branch to pin.
baseShaNoIndexed base your edits sit on. Omit for the default-branch tip.
feedbackNoOptional: report how a previous answer worked out; piggybacks on any call.
projectIdNoProject id from init/list_projects. Omit for the active project.
repositoryNoRepository full name, e.g. "owner/repo". Omit when the project has one repository.
changedFilesNoChanged/added files with current contents, repo-relative paths.
deletedPathsNoRepo-relative deleted paths.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A3.9/5.0
Behavior4/5

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

With readOnlyHint=false already signaling mutation, the description adds valuable behavioral context: state is session-scoped, index_working_tree pins a short-lived synthetic revision, clear reverts to the default, and there is a 100-file/256KB cap. The disclosure is strong, but the undocumented 'commitSha overrides' claim and lack of clarity about what happens on success reduce full transparency.

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 bulleted operation list is compact, front-loaded with a summary, and contains nearly no filler. The final 'index_working_tree' bullet is dense and slightly run-on, and the unresolved 'commitSha overrides' fragment hurts readability, so it is not quite top-tier.

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?

For a complex stateful tool with no output schema, the description covers invocation preconditions, side effects, failure modes, caps, and interactions with sibling tools well. It is incomplete only around the success/error response contract and the unexplained commitSha reference, leaving some room for agent confusion.

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 the baseline is 3, and the description does add meaningful context for branch, baseSha, changedFiles, and deletedPaths (e.g., tracked/indexed requirement, synthetic revision, tool visibility). However, the description explicitly mentions a 'commitSha' override that is absent from the schema, which is a concrete parameter-semantics defect that could mislead an agent.

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 opens with a crisp summary ('Session-scoped branch / working-tree overlay') and enumerates three distinct operations with their effects, so an agent can see what the tool does without opening the schema. It loses a point because the phrase 'commitSha overrides' references a parameter that does not exist in the input schema, creating ambiguity about the exact behavior.

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?

It gives concrete preconditions ('Branch must be tracked+indexed... else indexing_in_progress') and names which sibling tools reflect the overlay (find_node/locate/relate) versus those that do not (source, locate mode:semantic). It does not explicitly say when to prefer this over alternative tools, but for a state-overlay tool the operation-specific conditions provide adequate routing guidance.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4/5.0
Disambiguation4/5

Tools generally target distinct operations—repository attachment, symbol resolution, graph traversal, source access, indexing health—and the detailed routing notes reduce ambiguity. A few pairs still overlap in intent (quick_lookup vs locate symbol, context vs ask_codebase), so it is not perfectly unambiguous.

Naming Consistency3/5

All names are lowercase snake_case and readable, but the set mixes verb_noun patterns like add_repository and list_projects with single-word nouns/verbs like context, history, map, relate, and source, plus one acronym (adr). There is no predictable convention across the full surface, though individual names are clear.

Tool Count3/5

25 tools is at the high end for a single MCP server and falls in the 'feels heavy' range. The breadth is justified by the code-intelligence/query domain, but the selection surface is large for an agent to navigate efficiently.

Completeness4/5

The code indexing, search, graph query, source access, history, ADR, test lookup, and scope estimation needs are well covered. Minor gaps remain—no detach/remove repository, no ADR content editing, and source access is gated by an add-on—but these are workable.