Skip to main content
Glama
Atlasent

atlasent-mcp

Official

AtlaSent — Knowledge Atlas Lookup

atlasent_atlas_lookup
Read-only

Look up canonical AtlaSent concepts to get definitions, relationships, and implementation anchors, ensuring agents reason from consistent knowledge instead of guessing.

Instructions

Look up a canonical AtlaSent concept from the Knowledge Atlas — the compiled graph of the system's own vocabulary (Caller, Authority, Policy, Decision, Permit, Verification, Evidence, Audit Chain, Gate, Trust Root, ...). Returns the concept's canonical definition (its source-of-truth doc), its relationships (what it depends on and what depends on it), the surfaces that realize it, and its ADR / API / SDK / implementation anchors — so every AI host reasons from the same canonical knowledge instead of guessing. Use id for an exact concept id (e.g. 'permit', 'audit-chain', 'gate') or query for a case-insensitive substring search across id, term, and definition. Omit both to list every concept.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idNoExact concept id (e.g. 'permit', 'audit-chain', 'gate', 'trust-root').
queryNoSubstring search across id, term, and definition. Case-insensitive.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv2.12.2

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already mark the operation read-only and non-destructive, and the description adds meaningful behavior: what the lookup returns, that querying is case-insensitive, and that omitting parameters lists every concept. It does not specify edge cases such as behavior when both parameters are provided or when no match is found, but it exceeds the annotation baseline.

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 front-loaded with the action and then explains returned content and parameter modes. It is slightly verbose due to the enumerated vocabulary examples, but each sentence carries functional guidance and no filler.

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

Completeness4/5

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

With no output schema, the description compensates by naming the categories of returned data and the two lookup modes. It is complete enough to select and invoke correctly; the only minor gaps are exact response shape and pagination/limit behavior on the list-all path.

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 beyond the schema by providing example ids, clarifying that 'query' is a substring search across id/term/definition, and documenting the omit-both default. This goes beyond the baseline without fully specifying interplay between the two parameters.

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 opens with a specific verb and resource: 'Look up a canonical AtlaSent concept from the Knowledge Atlas.' It further distinguishes the tool by listing the returned artifact types and the exact vocabulary examples, so an agent can separate this lookup from the many sibling policy/audit/permit tools.

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 explicit invocation modes: use 'id' for exact matches, 'query' for a case-insensitive substring search, and omit both to list all concepts. It stops short of explicitly naming sibling alternatives or when-not-to-use conditions, so it is clear but not fully exclusionary.

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