TestAtlas
The problem
Large test-automation solutions are hard to navigate — for humans and for AI agents. Asked to automate a new story, an agent can't see which steps already exist, where similar code lives, or what conventions the solution follows — so it duplicates steps and misplaces code. TestAtlas indexes the solution once into a single SQLite map and answers those questions precisely: deterministically, offline, without a model or a network call.
Related MCP server: CodeMap MCP
See it in action
Index the bundled 8-project sample once — testatlas index samples/SampleShop/SampleShop.sln — then
ask it questions from the terminal. Every number below is real output from that run:
$ testatlas stats sampleshop.db
TestAtlas map: sampleshop.db (schema v5)
totals: 8 project(s), 15 class(es), 36 method(s), 14 step definition(s)
class kinds:
api_client 7
page_object 4
step_class 4
gherkin: 4 feature(s), 5 scenario(s), 16 step(s)
bound steps: 16 · unbound: 0 · ambiguous: 0
endpoints: 3 (3 call site(s))…or let your agent ask them over MCP. Here an agent checks whether a step it is about to write
already exists — resolve_step answers with the definitions that would bind it, or the closest
near-misses to reuse instead:
// agent → testatlas: resolve_step { "text": "I add the product to my cart" }
{
"status": "none", // nothing binds this exact text — don't invent it from scratch:
"suggestions": [ // these existing steps are the closest, ranked by shared terms
{ "expression": "product (.*) is added to the cart with quantity (.*)",
"keyword": "When", "location": "SampleShop.Tests.Api/Steps/CatalogApiSteps.cs:34" },
{ "expression": "the cart is not empty",
"keyword": "Then", "location": "SampleShop.Tests.Api/Steps/CatalogApiSteps.cs:43" }
// …8 more
]
}Live sample outputs, committed from that same solution:
HTML report (features, scenarios, bindings, class kinds, endpoints) ·
dependency map (the eight projects and their edges).
(GitHub serves .html as source, so the links route through htmlpreview.github.io — or download from docs/ and open locally.)
What you get
TestAtlas statically analyses the solution and emits codemap.db — projects and their dependency
edges, Gherkin features/scenarios/steps, step definitions and their bindings (bound / unbound /
ambiguous), page objects, API clients, helpers, test classes, and the call/usage edges connecting
them — then turns that map into answers:
Capability | What you get | |
🧩 | Reuse-first authoring |
|
💥 | Impact | Blast radius — the scenarios affected by changing a class, method, step, or endpoint |
🔍 | Search | FTS5 over step definitions + scenarios — "does a step for this already exist?" |
🔌 | MCP | All of it served to an AI agent over stdio — precise answers in a few hundred tokens, no context stuffing |
📊 | Report & map | Self-contained HTML drill-down of the whole map + project-dependency graph |
📈 | Stats | Entity counts, class-kind breakdown, binding coverage, diagnostics |
All of it offline, deterministic, and reproducible — same input, same map, every time.
🚀 Quick start
Requires the .NET SDK 8.0+. On a corporate machine where
dotnet tool installfails with 401, see docs/troubleshooting.md.
1 — Install the CLI (and the MCP server, if you'll connect an agent):
dotnet tool install --global TestAtlas.Cli
dotnet tool install --global TestAtlas.Mcp2 — Index your solution. This produces the map (./codemap.db) that every query, report, and
MCP answer reads — nothing works without it:
testatlas index path/to/YourSolution.slnNo need to build or restore the solution first — indexing is a syntax-only pass, so an unrestored
checkout maps fine. Point index at a folder (or nothing) and it auto-discovers a single
.sln/.csproj there.
3 — Query it:
testatlas stats
testatlas search "login"
testatlas report # writes codemap.html
testatlas map # writes codemap-map.html…and to serve it to your AI agent, continue to MCP setup.
git clone https://github.com/Karzone/TestAtlas.git
cd TestAtlas
dotnet build TestAtlas.sln
dotnet run --project src/CodeMap.Cli -- index path/to/YourSolution.sln🔌 Use it from an AI agent (MCP)
TestAtlas ships an MCP server — testatlas-mcp — that serves the map to any MCP-aware client
(Visual Studio / VS Code Copilot, Claude Code, and others) over stdio JSON-RPC. The agent asks a
precise question and gets an exact, structured answer straight from the .db — instead of
stuffing source files into its context window.
Prerequisites: both tools installed and a map built — steps 1–2 of the Quick start. Then register the server:
Visual Studio / VS Code (GitHub Copilot agent mode) — add to your .mcp.json
(%USERPROFILE%\.mcp.json or <SolutionDir>\.mcp.json):
{
"servers": {
"testatlas": {
"type": "stdio",
"command": "testatlas-mcp",
"args": ["C:\\path\\to\\codemap.db"]
}
}
}Pass the map path explicitly (as above, or via a TESTATLAS_DB env var) — most agents launch
the server from their own working directory, not your solution folder, so relying on auto-discovery
makes the server exit with code 2. In Visual Studio you can also use Tools picker → + → Add
custom MCP server to write this entry for you. On the .NET 10 SDK you can skip the install and
use "command": "dnx", "args": ["TestAtlas.Mcp", "--yes", "C:\\path\\to\\codemap.db"] — dnx
fetches and runs the server on demand.
Claude Code:
claude mcp add testatlas -- testatlas-mcp path/to/codemap.db
claude mcp list # the testatlas row should read: ✔ ConnectedBy default the server is registered for the current project (--scope local). Add
--scope user to make it available in every project on your machine, or --scope project to
share the registration with your team via a committed .mcp.json.
MCP clients load serversat session start — if you register mid-session, restart your agent
session before the testatlas tools appear. To confirm it's actually being used (and not
silently ignored), run the checks in
docs/troubleshooting.md.
Tools exposed:
resolve_step— resolve a Gherkin phrase to the existing step definition(s) that would bind it (regex/cucumber, keyword-agnostic).exact/ambiguous/none(+ near-match suggestions ranked by shared terms). Reuse-first authoring: don't write a step that already exists.step_catalog— the reusable step vocabulary with extracted placeholders and allowed values (cucumber{type}, regex(a|b)enums). Compose scenarios from what exists.impact— blast radius of a change: the scenarios affected by a given class, method, step definition, or endpoint.search_steps— full-text search over step definitions (expression text + method + class name).search_scenarios— full-text search over scenarios (feature + scenario name + step text + tags).get_scenario— full detail of scenario(s) by name: feature, tags, kind, example-row count, and the ordered steps.get_step_definition— full detail of step definition(s) by expression: keyword, params, C# class/method/signature, and the scenarios that use it.list_tags— the tag taxonomy with per-tag scenario counts, most-used first — tag new scenarios consistently.list_endpoints— the HTTP endpoints the suite calls, each with verb, route, and scenario blast radius (highest-reach first).project_dependencies— the implied project dependency graph (depends-on / depended-on-by), e.g. "what depends on the Party project?".stats— summary counts: projects, classes, methods, class-kind breakdown, endpoints, and edge tallies.
Retrieval runs locally against the SQLite file — deterministic, offline, and a few hundred tokens
per answer. Protocol details in specs/codemap-mcp.md; registration from
source and every failure mode in docs/troubleshooting.md.
📖 Commands
Command | What it does |
| Analyse a |
| Entity counts per project, unbound/ambiguous steps, diagnostics. |
| FTS5 full-text search over step definitions and scenarios. |
| Blast radius: scenarios affected by changing an entity. |
| Write a self-contained HTML drill-down of the map. |
| Write a self-contained project dependency graph (HTML). |
| Check a file is a supported TestAtlas map. |
index --output <file> · --config <file> · --include <glob> (repeatable) · --exclude <glob> (repeatable) · --verbose · --quiet
search --steps (step definitions only) · --scenarios (scenarios only)
Exit codes 0 ok · 1 completed with warnings · 2 fatal · 3 bad arguments
Run testatlas --help for the full usage text.
# Index the solution (no build needed — the pass is syntax-only)
testatlas index YourSolution.sln --output atlas.db
# Before writing a new step — does one already exist?
testatlas search atlas.db "add a product to the cart" --steps
# About to change a shared client — what will it hit?
testatlas impact atlas.db --class ProductsApiClient
# Share human-readable snapshots
testatlas report atlas.db --html atlas.html
testatlas map atlas.db --html atlas-map.htmlsamples/SampleShop is a self-contained 8-project solution mixing API
tests and UI tests, so the map has plenty of connected nodes — real HttpClient API clients, real
Selenium IWebDriver page objects, and Reqnroll suites driving both:
┌─▶ Api.Catalog ──┐
Tests.Api ────────────┼─▶ Api.Cart ──┤
Tests.E2E ──┬─────────┴─▶ Api.Identity ──┼─▶ Core (ApiClientBase : HttpClient)
└─▶ Ui.Pages ─────────────────┘ (PageBase : IWebDriver)
Tests.Ui ────▶ Ui.Pages ──────────────────▶ CoreReproduce the committed sample outputs yourself:
testatlas index samples/SampleShop/SampleShop.sln --output sampleshop.db
testatlas report sampleshop.db --html docs/sample-report.html
testatlas map sampleshop.db --html docs/sample-map.html🔄 Keeping the map fresh
Answers are deterministic — but only as fresh as the map, so re-index on change, not on a timer. A full re-index is a single static pass (seconds), and its cost scales with solution size, not with how much changed:
Locally —
python scripts/check-map-age.pytells you when your map drifted; a version-controlledpost-mergegit hook can warn automatically after every pull.In CI (team model) — re-index on every merge to main and publish the
.dbto a shared feed (never commit it — it's a build artifact). Then teammates and agents only needTestAtlas.Mcplocally: download the shared map and pointTESTATLAS_DBat it — no localTestAtlas.Clior indexing required. (Index locally only to include your own uncommitted branch work.)
Details — the staleness checker, the git hook, and copy-paste CI recipes (GitHub Actions + Azure DevOps with a Universal feed) — in docs/keeping-the-map-fresh.md.
🧹 Uninstall
Two separate things — remove them in this order, so the editor isn't launching a server whose binary just vanished:
Remove the MCP registration — delete the
testatlasblock from your.mcp.json(<SolutionDir>\.mcp.jsonor%USERPROFILE%\.mcp.json), then restart Visual Studio / VS Code. (Or just toggle it off in the agent's tools/wrench picker to keep it for later.)Uninstall the tools — they're .NET global tools, not editor add-ins:
dotnet tool uninstall --global TestAtlas.Mcp dotnet tool uninstall --global TestAtlas.Cli dotnet tool list --global # confirm they're gone(Optional) delete the
codemap.dbmap file — it's just data, nothing else references it.
🎯 Design tenets
Zero config — a useful map on an unseen solution, no config file required.
Solution agnostic — heuristic, overridable detection; no company-specific assumptions.
Deterministic & offline — same input ⇒ byte-equivalent logical content; no network, no AI.
Graceful degradation — solutions without Gherkin still yield a useful map.
Public schema as contract — a versioned SQLite schema, so downstream consumers keep working even if a third party swaps in their own indexer.
The project folders use the indexer's working name (CodeMap); the shipped tools and
packages are TestAtlas. Full specs: specs/codemap-indexer.md ·
specs/codemap-mcp.md. Repo layout: CONTRIBUTING.md.
🗺 Roadmap
Indexer CLI — C# indexer + documented, versioned SQLite schema
HTML visualization — self-contained report + project map generated from the db
MCP server —
testatlas-mcpexposes the map to AI agents over stdio JSON-RPC (11 tools)Second-language indexer — same schema, contract-tested
Deliberately not planned (see design tenets): LLM-assisted analysis inside the indexer, network calls at index/query time, running or generating tests, and semantic (compilation-based) analysis that would require a restored build. Releases and per-version notes live on the releases page; current distribution channels in docs/DISTRIBUTION.md.
📄 License
MIT © 2026 Karthik Kalaiyarasu
Available Tools
11 toolsget_scenarioA
Full detail of scenario(s) whose name contains the given text: feature, tags, kind, example-row count, file:line, and the ordered steps (keyword + text + doc-string/data-table flags). Use to read an existing scenario before writing a similar one.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Substring of the scenario name to match (case-insensitive). | |
| limit | No | Max scenarios (default 10). |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden and reveals meaningful behavior: matching is by substring containment, and the response includes full detail and ordered steps with doc-string/data-table flags. It also signals read-only intent via 'Use to read.' It omits minor behaviors like result ordering or default limit, but those are partially covered by the schema's limit parameter.
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?
Two tight, information-dense sentences with no filler. The first front-loads the exact contents of the returned detail; the second adds a clear usage context. Every phrase earns its place.
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 simple 2-parameter read tool with full schema coverage, the description covers return content, matching behavior, and a use case. It could be improved by explicitly naming sibling tools to avoid confusion with search_scenarios, but nothing critical is missing for correct invocation.
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 both parameters documented in the schema. The description's mention that name is matched by substring effectively restates the schema and adds no new semantic detail. Limit is not elaborated in the description, but the schema already covers its default and meaning.
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 states a specific verb and resource ('get' + 'scenario') and enumerates the returned fields (feature, tags, kind, example-row count, file:line, ordered steps). It is clear, but it does not explicitly distinguish get_scenario from the sibling search_scenarios or state selection criteria relative to those alternatives.
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 sentence 'Use to read an existing scenario before writing a similar one' provides a clear and concrete use case. However, it does not explicitly mention when not to use this tool or point to alternatives such as search_scenarios for lighter-weight discovery.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_step_definitionA
Full detail of step definition(s) whose expression contains the given text: keyword, expression kind, method parameters, C# class/method/signature, file:line, and the scenarios that currently use it (usage count). Use to inspect a step before reusing or changing it.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max definitions (default 20). | |
| query | Yes | Substring of the step-definition expression to match (case-insensitive). |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden of behavioral disclosure. It clearly lists what the returned data includes, which is valuable, but it does not describe matching behavior beyond 'contains the given text,' absence-of-results behavior, or any side effects. The 'inspect before reusing or changing' phrasing implies a read-only operation but does not state it.
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 one dense, front-loaded sentence that lists the output fields and provides a usage recommendation. Every part contributes useful information, and there is no fluff.
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 lookup tool with no output schema, the description covers the tool's purpose, result contents, and appropriate use context. Minor gaps remain, such as behavior when no definitions match and whether results are sorted or paginated, but these do not seriously hinder a correct call.
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 both 'query' and 'limit' documented in the input schema. The description adds little parameter meaning beyond restating that text matches the query, so the baseline score of 3 is appropriate.
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 uses a specific verb-resource pair ('get step definition') and enumerates the returned details: keyword, expression kind, method parameters, class/signature, file:line, and usage count. It is clear what the tool does, though it does not explicitly distinguish itself from siblings like search_steps or resolve_step.
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 states when to use the tool: 'Use to inspect a step before reusing or changing it.' This gives a clear context for use, but it does not mention when not to use it or point to a specific alternative among the sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
impactA
Blast radius of a change: the test scenarios affected by changing a class, method, step definition, or endpoint. Returns the affected scenarios (feature + the connecting step text), plus step-definition and feature counts.
| Name | Required | Description | Default |
|---|---|---|---|
| value | Yes | The name/route to match (class or method name, step expression substring, or endpoint route substring). | |
| target | Yes | What kind of entity to trace. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations available, the description carries the burden of behavioral disclosure. It does explain the return shape — affected scenarios with feature and connecting step text, plus step-definition and feature counts — which is useful. It does not explicitly state that the operation is read-only or describe matching nuances, but the language strongly implies a non-mutating analysis tool.
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?
Two compact sentences front-load the tool's purpose and then specify what is returned. Every word earns its place, and there is no redundant restatement of the tool name or schema.
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 simple two-parameter tool with no output schema, the description gives enough to understand the result payload and the kinds of targets. It could add an example or an edge case note, but the essential information for invoking it correctly is present.
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 description coverage is 100%, so the baseline is 3. The description maps the target types to the schema enum and clarifies the purpose of the value parameter, but it adds little beyond the schema's own parameter descriptions.
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 identifies the tool's function: computing the blast radius of a change by listing affected test scenarios. It names the entity types (class, method, step definition, endpoint) and differentiates itself from sibling search/list tools by focusing on impact rather than generic lookup.
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 implies when to use the tool: when you need to understand which scenarios are affected by a change. However, it does not explicitly state when not to use it or name alternatives such as search_scenarios or resolve_step for different lookup needs.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_endpointsA
The HTTP endpoints/operations the suite calls, each with verb, route (real path when known), and its scenario blast radius. Highest-reach first.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max rows (default 50). |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the behavioral burden and provides useful context: results include real path where known, scenario blast radius, and are sorted by highest reach. This clarifies what the agent should expect beyond a bare list, though it does not address pagination or response shape.
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?
One dense sentence conveys the resource, output fields, a caveat, and ordering. Every clause contributes information, and there is no filler or repetition of the schema.
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 tool is simple, has no output schema, and the description adequately defines the return contents and sort order. It is slightly incomplete because it does not explain what 'scenario blast radius' means or how limit interacts with the listing, but overall the description gives enough for correct invocation.
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%, and the single 'limit' parameter is already documented as max rows with a default of 50. The description adds no additional meaning for this parameter, so the baseline score of 3 is appropriate.
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 states exactly what the tool returns: the HTTP endpoints/operations the suite calls, including verb, route, and scenario blast radius. It also specifies ordering (highest-reach first), which makes the tool's purpose concrete and distinct from sibling tools like search_steps or impact.
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 implies usage: use this when you need an inventory of all endpoints and their reach. It does not explicitly state when to prefer this over alternatives, nor does it mention exclusions or related tools, so guidance is present only by implication.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_tagsA
The tag taxonomy across the suite — every scenario tag (e.g. @smoke, @regression, ticket ids) with the number of scenarios carrying it, most-used first. Use to tag new scenarios consistently with what already exists.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max tags (default 200). |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It discloses what is returned—tag names, counts, and ordering—which is valuable behavioral context. It does not explicitly state that the operation is read-only, but the verb in the tool name and the absence of side-effect language make that reasonably clear.
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 two sentences with no filler. The first sentence packs in the output format, examples, and ordering; the second gives the usage context. It is slightly dense due to the em-dash style and parenthetical examples, but remains appropriately sized.
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?
There is no output schema, so the description's explanation of 'every scenario tag ... with the number of scenarios carrying it, most-used first' reasonably conveys the return shape. It also explains the intended use case. Minor gaps like explicit JSON structure and default-limit behavior are not critical given the simple one-parameter 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?
The schema already documents the only parameter, 'limit', with a full description ('Max tags (default 200)'), so schema coverage is 100%. The tool description adds no additional parameter semantics, meeting the baseline but not exceeding it.
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 identifies the resource—scenario tags—and specifies the output structure: each tag with its scenario count, sorted most-used first. It differentiates from siblings by focusing on tags rather than steps, endpoints, or statistics, but it lacks an explicit verb like 'List' and instead opens with a noun phrase.
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?
It provides a clear use case: 'Use to tag new scenarios consistently with what already exists.' This tells an agent when to invoke it, though it does not mention exclusions or explicitly name alternative tools for other scenarios.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
project_dependenciesA
The project dependency graph the suite implies: for each project, which projects it depends on and which depend on it, derived from cross-project binds_to/uses_type/inherits edges (edge counts as weight). Answers e.g. "what depends on the Party project?". Optional 'project' name filter.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max projects (default 200). | |
| project | No | Optional: substring of a project name to focus on (case-insensitive). |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the behavioral disclosure burden. It explains that the graph is derived from cross-project binds_to/uses_type/inherits edges and that edges are weighted, which is useful beyond the schema. It does not detail output formatting, but the core behavior is transparent.
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 compact and well-structured, with the core purpose front-loaded and a helpful example question. Each sentence adds relevant information without unnecessary filler.
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 what the graph contains, how it is derived, and gives an example use case. It lacks explicit output-format details, but the absence of an output schema is partially mitigated by the clear high-level return semantics.
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 description coverage is 100%, so the schema already documents both parameters. The description only reiterates the optional project filter without adding new semantics, keeping this at the baseline.
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 identifies the tool as providing a project dependency graph, specifying what it contains and giving a concrete example question it answers. It is distinct from the sibling tools, which focus on stats, impact, steps, scenarios, endpoints, and tags.
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 use context: it answers dependency-related questions like 'what depends on the Party project?' and mentions the optional project filter. It does not explicitly contrast with alternatives, but the intended use case is evident from the description.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
resolve_stepA
Resolve a Gherkin step phrase to the EXISTING step definition(s) that would bind it — the same way the runner does (regex/cucumber expression, keyword-agnostic). Use this BEFORE writing a new step so an agent reuses what already exists instead of authoring a duplicate. status is 'exact' (one binding — reuse it), 'ambiguous' (several match — a conflict to resolve), or 'none' (nothing binds — returns existing step definitions ranked by shared terms, to adapt rather than duplicate). Each match returns the expression, the C# class/method, the method parameters, the argument values captured from the phrase, and file:line.
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | The step phrase to resolve, without the leading Given/When/Then keyword (e.g. "the customer checks out"). | |
| keyword | No | Optional; informational only — matching is keyword-agnostic, as in Reqnroll/SpecFlow. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full behavioral burden and does so thoroughly. It discloses the three status outcomes, how matches are ranked in the 'none' case, the exact fields returned per match, and that matching ignores Given/When/Then keywords.
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 dense but well-structured, front-loading the core purpose before explaining statuses and return contents. Every sentence adds value, though it is slightly long and could be tightened without losing meaning.
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?
Given the lack of annotations and output schema, the description is exceptionally complete. It explains what the tool returns, how statuses should be interpreted, and why the agent should use it, leaving no critical gaps for correct invocation and interpretation.
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 description coverage is 100%, so the schema already documents both parameters. The description reinforces that the keyword parameter is informational and keyword-agnostic, but it does not add substantial per-parameter semantics beyond what the schema provides.
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's verb and resource: it resolves a Gherkin step phrase to the existing step definition(s) that would bind it. It also differentiates itself from authoring a new step and explains its keyword-agnostic matching behavior, making its purpose distinct from sibling search tools.
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 gives explicit timing guidance: use this BEFORE writing a new step so the agent reuses existing definitions instead of duplicating. It does not explicitly name sibling alternatives or state when not to use it, but the usage context is clear and actionable.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_scenariosA
Full-text search over scenarios (feature name + scenario name + step text + tags). Returns matching scenarios.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Search terms. |
TDQS
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 does disclose the search scope and that it returns matching scenarios, but it does not explicitly state that the operation is read-only, nor does it mention result limits, pagination, or ordering. These are meaningful gaps for a search tool without annotation support.
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 a single, well-structured sentence that front-loads the core operation and then specifies searchable fields and return type. There is no redundant or filler content.
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 one parameter, no output schema, and no annotations, the description covers the main essentials: what is searched and what is returned. Some detail about the returned scenario shape or result handling would make it fully complete, but it is adequate for straightforward invocation.
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?
The schema only describes 'query' as 'Search terms,' but the description adds significant meaning by specifying exactly which text is searched: feature names, scenario names, step text, and tags. This extra context helps the agent formulate effective queries and goes beyond the schema's minimal description.
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 a full-text search operation with a specific resource (scenarios) and enumerates the fields searched: feature name, scenario name, step text, and tags. This distinguishes it from sibling tools like search_steps and get_scenario without needing to inspect schemas.
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 implies when to use it: when a free-text search across scenario content is needed. However, it does not explicitly state when not to use it or name alternatives such as search_steps, so the routing to the correct sibling is left mostly to inference.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_stepsA
Full-text search over step definitions (expression text + method + class name). Returns matching step definitions.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Search terms. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the behavioral burden. It discloses that the tool returns matching step definitions, but does not cover ordering, pagination, matching semantics, or error behavior. For a straightforward search tool this is adequate but not rich.
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 a single focused statement that front-loads the core purpose, specifies the searchable fields, and states the return value with no wasted words.
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 simple one-parameter search tool with no output schema, the description covers the main requirement: what is searched and what is returned. Minor gaps like result limits or ordering are present, but the tool's simplicity reduces the impact of those omissions.
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% for the query parameter, and the description adds meaning by clarifying that the query applies to expression text, method, and class name. This goes beyond the schema's generic 'Search terms' description.
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 a specific action ('Full-text search') and a specific resource ('step definitions'), and identifies the exact fields being searched: expression text, method, and class name. This distinguishes it from sibling tools like search_scenarios, which targets scenarios rather than step definitions.
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 context: use this tool to full-text search step definitions by expression, method, or class name. It does not explicitly call out when not to use it or name alternatives, but the scope is specific enough for an agent to infer appropriate use.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
statsA
Summary of the test map: project/class/method counts, class-kind breakdown, endpoints, and edge tallies.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the burden of behavioral disclosure. It communicates a non-mutating reporting operation by using 'Summary' and specifying the categories returned. It does not describe response shape, freshness, computation cost, or any other behavioral nuance, but for a simple zero-parameter stats tool the basic behavior is reasonably clear.
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 a single, tightly packed sentence that leads with the resource ('Summary of the test map') and then lists the specific included metrics. There is no filler, and every phrase contributes useful 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?
For a zero-parameter tool with no annotations and no output schema, the description is mostly sufficient: it tells the agent what kind of data the summary contains. It could be more explicit about the exact output format and how it differs from sibling tools, but those are not critical for basic invocation.
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?
The tool has zero parameters and schema description coverage is 100%, so the 0-parameter baseline of 4 applies. No parameter documentation is needed, and the description does not need to compensate for any schema gaps.
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 identifies the resource ('the test map') and enumerates the exact contents of the summary: project/class/method counts, class-kind breakdown, endpoints, and edge tallies. It is not a tautology and leaves little doubt about what the tool does, though it lacks an explicit verb and does not differentiate from sibling tools like list_endpoints or project_dependencies.
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 term 'Summary' and the focus on aggregate counts strongly imply use when a high-level overview is needed rather than detailed step/endpoint listings. However, the description does not explicitly state when to use this tool versus its siblings, nor does it mention any exclusions or alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
step_catalogA
The reusable step vocabulary: step definitions with their placeholders and (best-effort) allowed values pulled from the expression — cucumber {int}/{string}/{word}, regex alternations like (Auto|Allianz) as enum values, other groups as free parameters. Use to compose new scenarios from steps and values that already exist. Optional keyword/query filters.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max steps (default 100). | |
| query | No | Optional: only steps whose expression contains this text. | |
| keyword | No | Optional: only steps declared with this attribute keyword. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden, and it does disclose a key non-obvious behavior: allowed values are 'best-effort' and derived via specific rules (cucumber types, regex alternations, free parameters). This gives the agent realistic expectations about output quality. It does not mention output structure or side effects, but the catalog/resource framing implies a read-only operation.
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 compact and front-loaded, with the core definition first and the usage context second. The final fragment about optional filters is somewhat redundant with the schema, but it is short and does not distract from the main message.
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 an output schema, the description conveys the main return content (step definitions, placeholders, allowed values) and the intended use case. It does not detail the exact response structure or pagination, but the limit default is in the schema and the catalog tool is simple enough that this is likely sufficient.
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?
All three parameters have schema descriptions (100% coverage), so the baseline is 3. The description adds no new parameter-level meaning beyond summarizing 'Optional keyword/query filters'; the explanation of value extraction pertains to the output, not the parameters.
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 identifies the resource as a catalog of reusable step definitions and explains what it provides: placeholders and best-effort allowed values derived from the expression. It also states a usage goal ('compose new scenarios'), which distinguishes it from a generic search tool. However, it does not explicitly contrast with sibling tools like search_steps, so differentiation is implied rather than stated.
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 explicitly says 'Use to compose new scenarios from steps and values that already exist,' giving a clear context for when to use this tool. It does not name alternatives or state when not to use it, so exclusion guidance is missing.
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.
11 tool updates
v0.1.10- First observed
get_scenario - First observed
get_step_definition - First observed
impact - First observed
list_endpoints - First observed
list_tags - First observed
project_dependencies - First observed
resolve_step - First observed
search_scenarios - First observed
search_steps - First observed
stats - First observed
step_catalog
TDQS
Most tools are distinct, but several revolve around step definitions: search_steps, resolve_step, get_step_definition, and step_catalog all have overlapping surfaces and could cause misselection. impact and list_endpoints also share blast-radius concepts for endpoints. Descriptions help, but an agent may need to read carefully to pick the right tool.
The tools mostly use verb_noun snake_case (search_steps, list_endpoints, get_scenario, list_tags), but several are bare nouns (stats, impact, step_catalog, project_dependencies). The mixed conventions are still readable, yet the pattern is not uniform.
11 tools is well within the ideal scope for a test-suite analysis server. Each tool contributes a meaningful capability, from summary stats to step resolution to dependency analysis, and none feel redundant enough to cut.
For its apparent purpose—discovering, understanding, and safely reusing steps and scenarios in a test suite—the surface is thorough. It covers search, detailed lookup, resolution before authoring, impact analysis, endpoint visibility, tagging, a step catalog for composition, and project dependencies. There are no obvious dead ends or missing critical operations.
Maintenance
Related MCP Connectors
AI Agent with Architectural Memory. Impact analysis (free), tests and code from the graph (pro).
Deterministic context layer for your codebase: change impact, blast radius, answers with receipts.
AI-powered codebase analysis — call graphs, security, dead code, complexity. 150+ tools.
Code intelligence platform for AI agents. 20 tools for architecture, security & impact analysis.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceTurn any codebase into an AI-readable neural map — with proof. Every claim linked to code anchors (line + SHA-256 hash), every context window optimized with greedy token budgeting, every session protected by drift detection. Tree-sitter indexing across 11 languages, cross-session learning, AI enrichment, and 28 MCP tools. Zero config — just connect and your AI agent remembers everything.1413GPL 3.0
- FlicenseNot gradedqualityBmaintenanceCodeMap is a Roslyn-powered MCP server that lets AI agents navigate C# codebases by symbol, call graph, and architectural fact, instead of brute-force reading thousands of lines of source code. One tool call. Precise answer. No context flood.18-
- AlicenseNot gradedqualityAmaintenanceA semantic map of your .NET solution for AI coding agents. Analyzes a solution with Roslyn into a queryable code graph exposing 11 read-only tools (find_symbol, impact_analysis, find_implementations, etc.) over MCP. 100% local, no telemetry, MIT licensed.23MIT
- AlicenseAqualityCmaintenanceExtracts deterministic architecture maps from codebases for AI agents, enabling queries about blast radius, routes, security findings, and production readiness without sending code anywhere.6MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/Karzone/TestAtlas'
If you have feedback or need assistance with the MCP directory API, please join our Discord server