Skip to main content
Glama

Server Details

Agent-design pattern guidance via 8 hosted read-only tools; Streamable HTTP, no auth, one Release.

Ownership verified
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Available Tools

8 tools
atlas_cardsRead Atlas CardsA
Read-onlyIdempotent
Inspect

Read 1-4 canonical ids as one ordered Card per id: identity, Hook, and sealed claims with source addresses. Atomic batch. Use atlas_read for Section wording or a complete Node.

ParametersJSON Schema
NameRequiredDescriptionDefault
idsYes1-4 distinct canonical node ids.
expected_revisionNoA prior payload's 'coherence'; 'revision_changed' refuses a moved Release.

Output Schema

ParametersJSON Schema
NameRequiredDescription
dataYes
scopeYes
coherenceYes
projectionYes
payload_classYes

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the safety profile is covered. The description adds behavioral details beyond annotations: the batch is atomic, results are ordered, and cards contain identity, Hook, and sealed claims with source addresses. This gives the agent useful expectations about execution and return content.

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 dense sentences with no filler. The core behavior is front-loaded, and the alternative-tool routing is compressed into the final clause. Every word earns its place.

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 rich annotations, 100% schema coverage, and existing output schema, the description covers everything an agent needs to select and invoke the tool correctly. It specifies scope, cardinality, ordering, atomicity, and the key alternative, leaving no critical gap.

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 description coverage is 100%, so the schema already documents both parameters. The description reinforces the 1-4 id constraint and adds that the batch is atomic and ordered, which helps interpret the ids parameter, but it does not significantly extend the parameter-level meaning beyond the 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 states a precise verb ('Read') and resource ('1-4 canonical ids as one ordered Card per id'), and enumerates the card contents: identity, Hook, and sealed claims with source addresses. It also explicitly distinguishes itself from atlas_read, so an agent can tell them apart immediately.

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

Usage Guidelines5/5

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

The description explicitly says when to use atlas_read instead: 'Use atlas_read for Section wording or a complete Node.' It also implies the intended use case for atlas_cards (reading card-shaped data for multiple canonical ids atomically). This is clear routing guidance with no ambiguity.

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

atlas_decisionsRead Atlas DecisionsA
Read-onlyIdempotent
Inspect

List or search the admitted Decision summaries — id, title, Hook, in manifest order. Use atlas_read at 'decision:' for the complete record.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryNoSubstring matched against canonical id, title, and body; omit to list every Decision.
expected_revisionNoA prior payload's 'coherence'; 'revision_changed' refuses a moved Release.

Output Schema

ParametersJSON Schema
NameRequiredDescription
dataYes
scopeYes
coherenceYes
projectionYes
payload_classYes

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, establishing a safe read profile. The description adds that results are summaries rather than full records, are restricted to 'admitted' Decisions, and appear in manifest order, which is useful behavioral context beyond the annotations.

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 filler: the core action, output contents, ordering, and the key sibling alternative are all included. Every clause carries information relevant to selecting or invoking the tool.

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 output schema is present and parameter docs are complete, the description only needs to add selection guidance and result-shape cues; it provides both. The explicit atlas_read pointer also closes the main 'what if I need the full Decision?' gap, so an agent has enough to invoke correctly.

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 description coverage is 100%, with both query and expected_revision fully documented in the input schema. The tool description adds no additional parameter meaning, so it meets the baseline but does not elevate it.

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?

States a specific action ('List or search'), a clear resource ('admitted Decision summaries'), and the returned fields ('id, title, Hook') plus ordering ('manifest order'). It also distinguishes itself from atlas_read by pointing to that sibling for complete records, so an agent can tell them apart.

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 routes complete-record needs to atlas_read with the address pattern 'decision:<id>', giving a clear alternative. It does not spell out exclusions relative to the other siblings, but the summary-vs-complete-record split covers the main selection decision.

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

atlas_defineDefine an Atlas TermA
Read-onlyIdempotent
Inspect

Define one admitted glossary term. 'match' states the outcome: 'exact' carries the definition, 'ambiguous' lists the narrowing terms, 'none' is a successful miss.

ParametersJSON Schema
NameRequiredDescriptionDefault
termYesThe term to define; a substring naming exactly one term is accepted.
expected_revisionNoA prior payload's 'coherence'; 'revision_changed' refuses a moved Release.

Output Schema

ParametersJSON Schema
NameRequiredDescription
dataYes
scopeYes
coherenceYes
projectionYes
payload_classYes

TDQS

A3.6/5.0
Behavior4/5

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

The annotations already provide the safety profile: read-only, idempotent, non-destructive, and closed-world. The description adds meaningful behavioral detail beyond those annotations: the match state machine with 'exact', 'ambiguous', and 'none', including the fact that 'none' is a successful miss rather than an error.

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 short, front-loaded with the primary action, and every sentence contributes useful information. The match-outcome explanation is compact and avoids 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?

Given the low complexity, strong annotations, and an output schema, the description is largely complete: it conveys the non-obvious matching behavior and confirms that all outcomes are valid. It loses one point because it provides no context for when to use this tool versus its siblings.

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 description coverage is 100%, so the schema already documents both parameters, including the substring matching behavior of 'term' and the meaning of 'expected_revision'. The description adds context about the match outcome, but it does not independently explain parameter semantics. A baseline of 3 is therefore appropriate.

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 states a clear action on a specific resource: 'Define one admitted glossary term.' It also clarifies the core match outcomes, which is useful for an agent. It does not explicitly distinguish itself from sibling tools such as atlas_read or atlas_navigate, so it misses the extra point for sibling differentiation.

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?

There is no guidance about when to prefer atlas_define over the sibling tools, nor any mention of exclusions or alternatives. The description implies this is the tool for glossary definitions, but it never states the conditions or contexts that should drive selection.

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

atlas_navigateNavigate the AtlasA
Read-onlyIdempotent
Inspect

Read 'tree', the canonical ordered traversal of every published node, or 'tour', the publisher-curated first learning path. Use atlas_orient for relevance-ranked discovery.

ParametersJSON Schema
NameRequiredDescriptionDefault
viewNo'tree' for the canonical traversal, 'tour' for the curated walk.tree
expected_revisionNoA prior payload's 'coherence'; 'revision_changed' refuses a moved Release.

Output Schema

ParametersJSON Schema
NameRequiredDescription
dataYes
scopeYes
coherenceYes
projectionYes
payload_classYes

TDQS

A4.3/5.0
Behavior3/5

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

Annotations already declare the tool read-only, idempotent, and non-destructive, and the description's 'Read' is consistent with those hints. The description adds useful semantic context about the two views, but does not disclose additional behavioral details beyond what the schema and annotations already provide.

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 contain everything needed: the action, the two modes, their meanings, and the routing hint to atlas_orient. No filler or redundant restating of the title.

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 two optional, fully documented parameters, a rich output schema, and safety annotations, the description covers the main decision an agent must make. The reference to atlas_orient completes the practical context.

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 description coverage is 100%, so both 'view' and 'expected_revision' are already documented with meaningful descriptions. The tool description reinforces the tree/tour distinction but does not need to compensate for any schema gap.

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 ('Read') and concrete, named resources ('tree', 'tour'), defining each one clearly. It also distinguishes the tool from atlas_orient by noting that atlas_orient is for relevance-ranked discovery.

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

Usage Guidelines5/5

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

The description explicitly says to use atlas_orient when relevance-ranked discovery is desired, implying that atlas_navigate is for canonical or curated traversal. This gives clear routing guidance and names the alternative directly.

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

atlas_orientOrient in the AtlasA
Read-onlyIdempotent
Inspect

Discover canonical identity from an ordinary-language query — the entry point when no canonical id is held. Ranked: identity fields and sealed claims decide candidacy, Section text only when no identity field matches; ordered by identity score, then Section score, then how many words matched, then manifest position. Candidates carry id, status, Hook, and disclosure class; results are paged. A miss is a successful empty payload.

ParametersJSON Schema
NameRequiredDescriptionDefault
kindNoRestrict to 'pattern', 'concept', or 'example'; excludes Roadmap entries.
boundNoCandidates per page, 1-8.
queryYesOrdinary design vocabulary. Stopwords are dropped and each remaining word matches whole tokens (a word of four or more characters also matches longer tokens it begins) in canonical ids, titles, Hooks, sealed Card claims, and published Section headings and bodies, each word weighed by how few subjects carry it in an identity field. A Section match orders a candidate but makes one only when no subject matches in an identity field, so total counts the candidates, not every subject a word touches. Empty lists every subject.
cursorNoscope.next_cursor from a prior atlas_orient page; repeat the same other arguments.
statusNoOne status-ladder rung; published subjects are 'fleshed' or 'stable'.
expected_revisionNoA prior payload's 'coherence'; 'revision_changed' refuses a moved Release.

Output Schema

ParametersJSON Schema
NameRequiredDescription
dataYes
scopeYes
coherenceYes
projectionYes
payload_classYes

TDQS

A4.7/5.0
Behavior5/5

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

The description goes well beyond the annotations by disclosing the ranking order, the role of identity fields versus Section text, candidate payload fields, paging behavior, and the fact that a miss returns an empty payload. This gives the agent a strong behavioral model before invoking the 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?

The description is compact yet information-dense, with the primary purpose front-loaded and every sentence contributing behavioral or selection context. The ranking rules are compressed without losing clarity.

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?

Despite the tool having 6 parameters and a rich output schema, the description covers the core decision logic, candidate field shape, paging, and failure behavior. The output schema covers return details, and the annotations cover safety, so nothing essential is missing for correct invocation.

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%, so the baseline is 3, but the description meaningfully adds semantics beyond the property descriptions: it explains the query ranking philosophy, how identity fields and sealed claims affect candidacy, and how Section text only matters when no identity match exists. This enriches the otherwise structural parameter documentation.

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: 'Discover canonical identity from an ordinary-language query.' It further distinguishes itself from sibling tools by positioning itself as 'the entry point when no canonical id is held,' making its unique role clear.

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 explicitly states when to use the tool: as the entry point when no canonical id is held. It does not explicitly name alternatives or give when-not-to-use conditions, but the stated usage condition is sufficient and clearly differentiates it from ID-based access tools like atlas_read.

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

atlas_provenanceRead Atlas ProvenanceA
Read-onlyIdempotent
Inspect

Expand cited span addresses into audit facts: dependency digest, attestations, and the Release's expanded identity. Atomic batch; only for auditing how a claim is sourced.

ParametersJSON Schema
NameRequiredDescriptionDefault
addressesYesSpan addresses ('node-id#section-slug') exactly as cited by Card claim 'sources'.
expected_revisionNoA prior payload's 'coherence'; 'revision_changed' refuses a moved Release.

Output Schema

ParametersJSON Schema
NameRequiredDescription
dataYes
scopeYes
coherenceYes
projectionYes
payload_classYes

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnly, idempotent, and non-destructive. The description adds a meaningful behavioral trait beyond those: 'Atomic batch,' which tells an agent that all requested spans are processed as a unit. It also clarifies that the result is an audit-focused expansion rather than raw data, which is useful contextual behavior.

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 short sentences carry the full purpose, output nature, scoping constraint, and batch behavior without any filler. The core action is front-loaded, and all content earns its place.

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?

With only two parameters, a 100%-described schema, an output schema present, and annotations covering safety semantics, the description supplies the missing behavioral pieces: atomic batch execution and the audit-only use case. Nothing an agent needs to decide whether to call this tool is absent.

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 description coverage is 100%, and the schema already explains both parameters precisely: addresses use the exact 'node-id#section-slug' format and expected_revision gates on 'revision_changed.' The tool description itself adds little parameter-level meaning, so the 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?

The description opens with a specific verb-resource pairing: 'Expand cited span addresses into audit facts,' and enumerates the exact kind of facts returned (dependency digest, attestations, Release identity). The closing 'only for auditing how a claim is sourced' distinguishes it from general-purpose siblings like atlas_read or atlas_navigate.

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 phrase 'only for auditing how a claim is sourced' gives a clear context for when to invoke the tool and implicitly rules out general browsing or editing use. It does not name sibling alternatives explicitly, so it stops short of full when/when-not routing.

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

atlas_readRead an Atlas Node or SectionA
Read-onlyIdempotent
Inspect

Read a complete Node (bare id: identity, hierarchy, Hook, and every Section — relationships are recovered through atlas_links), one Section ('node-id#section-slug'), or one Decision record ('decision:'). A Card from atlas_cards is usually cheaper than a whole Node.

ParametersJSON Schema
NameRequiredDescriptionDefault
addressYesA bare node id; 'node-id#section-slug', the slug read off a Node's sections, a Card claim's sources, or a Link's occurrence (slugs are not guessable); or 'decision:<decision-id>'.
expected_revisionNoA prior payload's 'coherence'; 'revision_changed' refuses a moved Release.

Output Schema

ParametersJSON Schema
NameRequiredDescription
dataYes
scopeYes
coherenceYes
projectionYes
payload_classYes

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare read-only, idempotent, and non-destructive behavior. The description adds genuine context beyond those annotations by specifying the payload contents of a Node, the exclusion of relationships, and the multi-address behavior.

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 compact sentences front-load the main purpose and avoid restating the title. Each clause either defines the address modes or provides routing context, with no wasted words.

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 multi-mode read tool with strong annotations, a full output schema, and fully documented parameters, the description covers address variants, payload scope, and relationship behavior. Nothing an agent needs to decide whether and how to call the tool is missing.

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 description coverage is 100%, so the schema already fully documents both 'address' and 'expected_revision'. The description repeats the address shapes but adds no meaning beyond what the schema provides, so it stays at the baseline.

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 uses a specific verb ('Read') and names exactly what can be read: a complete Node, one Section, or one Decision record. It also distinguishes itself from atlas_cards and atlas_links by stating what they provide, so an agent can tell this tool apart from its siblings.

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

Usage Guidelines5/5

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

It gives concrete routing guidance: relationships are recovered through atlas_links rather than included here, and atlas_cards is usually cheaper when a Card is the target. This is a clear when-to-use-alternative signal, and the address forms themselves define the boundaries of the tool.

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. 1 tool update
    • Changedatlas_orient1 field changed
      • changedInput schema / properties / query / description
        Previous value: -"Ordinary design vocabulary. Stopwords are dropped and each remaining word matches whole tokens (a word of four or more characters also matches longer tokens it begins) in canonical ids, titles, Hooks, sealed Card claims, and published Section headings and bodies; Section text is searched only when no subject matches in an identity field, and total counts subjects with at least one matching term. Empty lists every subject."New value: +"Ordinary design vocabulary. Stopwords are dropped and each remaining word matches whole tokens (a word of four or more characters also matches longer tokens it begins) in canonical ids, titles, Hooks, sealed Card claims, and published Section headings and bodies, each word weighed by how few subjects carry it in an identity field. A Section match orders a candidate but makes one only when no subject matches in an identity field, so total counts the candidates, not every subject a word touches. Empty lists every subject."
  2. 1 tool update
    • Changedatlas_read1 field changed
      • changedInput schema / properties / address / description
        Previous value: -"A bare node id, 'node-id#section-slug', or 'decision:<decision-id>'."New value: +"A bare node id; 'node-id#section-slug', the slug read off a Node's sections, a Card claim's sources, or a Link's occurrence (slugs are not guessable); or 'decision:<decision-id>'."
  3. 8 tool updates
    • Changedatlas_cards1 field changed
      • changedOutput schema / properties / projection / const
        Previous value: -"agent-projection/v4"New value: +"agent-projection/v5"
    • Changedatlas_decisions1 field changed
      • changedOutput schema / properties / projection / const
        Previous value: -"agent-projection/v4"New value: +"agent-projection/v5"
    • Changedatlas_define1 field changed
      • changedOutput schema / properties / projection / const
        Previous value: -"agent-projection/v4"New value: +"agent-projection/v5"
    • Changedatlas_links1 field changed
      • changedOutput schema / properties / projection / const
        Previous value: -"agent-projection/v4"New value: +"agent-projection/v5"
    • Changedatlas_navigate1 field changed
      • changedOutput schema / properties / projection / const
        Previous value: -"agent-projection/v4"New value: +"agent-projection/v5"
    • Changedatlas_orient2 fields changed
      • changedInput schema / properties / query / description
        Previous value: -"Ordinary design vocabulary, matched case-insensitively against canonical ids, titles, Hooks, and published Section headings and bodies; empty lists every subject."New value: +"Ordinary design vocabulary. Stopwords are dropped and each remaining word matches whole tokens (a word of four or more characters also matches longer tokens it begins) in canonical ids, titles, Hooks, sealed Card claims, and published Section headings and bodies; Section text is searched only when no subject matches in an identity field, and total counts subjects with at least one matching term. Empty lists every subject."
      • changedOutput schema / properties / projection / const
        Previous value: -"agent-projection/v4"New value: +"agent-projection/v5"
    • Changedatlas_provenance1 field changed
      • changedOutput schema / properties / projection / const
        Previous value: -"agent-projection/v4"New value: +"agent-projection/v5"
    • Changedatlas_read1 field changed
      • changedOutput schema / properties / projection / const
        Previous value: -"agent-projection/v4"New value: +"agent-projection/v5"
  4. 8 tool updates
    • Changedatlas_cards1 field changed
      • changedOutput schema / properties / projection / const
        Previous value: -"agent-projection/v3"New value: +"agent-projection/v4"
    • Changedatlas_decisions1 field changed
      • changedOutput schema / properties / projection / const
        Previous value: -"agent-projection/v3"New value: +"agent-projection/v4"
    • Changedatlas_define1 field changed
      • changedOutput schema / properties / projection / const
        Previous value: -"agent-projection/v3"New value: +"agent-projection/v4"
    • Changedatlas_links1 field changed
      • changedOutput schema / properties / projection / const
        Previous value: -"agent-projection/v3"New value: +"agent-projection/v4"
    • Changedatlas_navigate1 field changed
      • changedOutput schema / properties / projection / const
        Previous value: -"agent-projection/v3"New value: +"agent-projection/v4"
    • Changedatlas_orient1 field changed
      • changedOutput schema / properties / projection / const
        Previous value: -"agent-projection/v3"New value: +"agent-projection/v4"
    • Changedatlas_provenance1 field changed
      • changedOutput schema / properties / projection / const
        Previous value: -"agent-projection/v3"New value: +"agent-projection/v4"
    • Changedatlas_read1 field changed
      • changedOutput schema / properties / projection / const
        Previous value: -"agent-projection/v3"New value: +"agent-projection/v4"
  5. 8 tool updates
    • Changedatlas_cards1 field changed
      • changedOutput schema / (root)
        Previous value: -nullNew value: +{
        +  "properties": {
        +    "coherence": {
        +      "type": "string"
        +    },
        +    "data": {
        +      "type": "object"
        +    },
        +    "payload_class": {
        +      "enum": [
        +        "cards"
        +      ],
        +      "type": "string"
        +    },
        +    "projection": {
        +      "const": "agent-projection/v3"
        +    },
        +    "scope": {
        +      "type": "object"
        +    }
        +  },
        +  "required": [
        +    "projection",
        +    "coherence",
        +    "payload_class",
        +    "scope",
        +    "data"
        +  ],
        +  "type": "object"
        +}
    • Changedatlas_decisions1 field changed
      • changedOutput schema / (root)
        Previous value: -nullNew value: +{
        +  "properties": {
        +    "coherence": {
        +      "type": "string"
        +    },
        +    "data": {
        +      "type": "object"
        +    },
        +    "payload_class": {
        +      "enum": [
        +        "decisions"
        +      ],
        +      "type": "string"
        +    },
        +    "projection": {
        +      "const": "agent-projection/v3"
        +    },
        +    "scope": {
        +      "type": "object"
        +    }
        +  },
        +  "required": [
        +    "projection",
        +    "coherence",
        +    "payload_class",
        +    "scope",
        +    "data"
        +  ],
        +  "type": "object"
        +}
    • Changedatlas_define1 field changed
      • changedOutput schema / (root)
        Previous value: -nullNew value: +{
        +  "properties": {
        +    "coherence": {
        +      "type": "string"
        +    },
        +    "data": {
        +      "type": "object"
        +    },
        +    "payload_class": {
        +      "enum": [
        +        "definition"
        +      ],
        +      "type": "string"
        +    },
        +    "projection": {
        +      "const": "agent-projection/v3"
        +    },
        +    "scope": {
        +      "type": "object"
        +    }
        +  },
        +  "required": [
        +    "projection",
        +    "coherence",
        +    "payload_class",
        +    "scope",
        +    "data"
        +  ],
        +  "type": "object"
        +}
    • Changedatlas_links1 field changed
      • changedOutput schema / (root)
        Previous value: -nullNew value: +{
        +  "properties": {
        +    "coherence": {
        +      "type": "string"
        +    },
        +    "data": {
        +      "type": "object"
        +    },
        +    "payload_class": {
        +      "enum": [
        +        "links"
        +      ],
        +      "type": "string"
        +    },
        +    "projection": {
        +      "const": "agent-projection/v3"
        +    },
        +    "scope": {
        +      "type": "object"
        +    }
        +  },
        +  "required": [
        +    "projection",
        +    "coherence",
        +    "payload_class",
        +    "scope",
        +    "data"
        +  ],
        +  "type": "object"
        +}
    • Changedatlas_navigate1 field changed
      • changedOutput schema / (root)
        Previous value: -nullNew value: +{
        +  "properties": {
        +    "coherence": {
        +      "type": "string"
        +    },
        +    "data": {
        +      "type": "object"
        +    },
        +    "payload_class": {
        +      "enum": [
        +        "tree",
        +        "tour"
        +      ],
        +      "type": "string"
        +    },
        +    "projection": {
        +      "const": "agent-projection/v3"
        +    },
        +    "scope": {
        +      "type": "object"
        +    }
        +  },
        +  "required": [
        +    "projection",
        +    "coherence",
        +    "payload_class",
        +    "scope",
        +    "data"
        +  ],
        +  "type": "object"
        +}
    • Changedatlas_orient1 field changed
      • changedOutput schema / (root)
        Previous value: -nullNew value: +{
        +  "properties": {
        +    "coherence": {
        +      "type": "string"
        +    },
        +    "data": {
        +      "type": "object"
        +    },
        +    "payload_class": {
        +      "enum": [
        +        "orient"
        +      ],
        +      "type": "string"
        +    },
        +    "projection": {
        +      "const": "agent-projection/v3"
        +    },
        +    "scope": {
        +      "type": "object"
        +    }
        +  },
        +  "required": [
        +    "projection",
        +    "coherence",
        +    "payload_class",
        +    "scope",
        +    "data"
        +  ],
        +  "type": "object"
        +}
    • Changedatlas_provenance1 field changed
      • changedOutput schema / (root)
        Previous value: -nullNew value: +{
        +  "properties": {
        +    "coherence": {
        +      "type": "string"
        +    },
        +    "data": {
        +      "type": "object"
        +    },
        +    "payload_class": {
        +      "enum": [
        +        "provenance"
        +      ],
        +      "type": "string"
        +    },
        +    "projection": {
        +      "const": "agent-projection/v3"
        +    },
        +    "scope": {
        +      "type": "object"
        +    }
        +  },
        +  "required": [
        +    "projection",
        +    "coherence",
        +    "payload_class",
        +    "scope",
        +    "data"
        +  ],
        +  "type": "object"
        +}
    • Changedatlas_read1 field changed
      • changedOutput schema / (root)
        Previous value: -nullNew value: +{
        +  "properties": {
        +    "coherence": {
        +      "type": "string"
        +    },
        +    "data": {
        +      "type": "object"
        +    },
        +    "payload_class": {
        +      "enum": [
        +        "section",
        +        "node",
        +        "decision"
        +      ],
        +      "type": "string"
        +    },
        +    "projection": {
        +      "const": "agent-projection/v3"
        +    },
        +    "scope": {
        +      "type": "object"
        +    }
        +  },
        +  "required": [
        +    "projection",
        +    "coherence",
        +    "payload_class",
        +    "scope",
        +    "data"
        +  ],
        +  "type": "object"
        +}
  6. 8 tool updates
    • Changedatlas_cards2 fields changed
      • changedInput schema / properties / expected_revision / description
        Previous value: -"Optional coherence marker: the Release version (for example 'v1.0.2') read off any previous payload's 'coherence' field. Omit on a first call. When carried, a promotion that has moved the active Release off this marker is refused with the 'revision_changed' error rather than silently answered from a different Release."New value: +"A prior payload's 'coherence'; 'revision_changed' refuses a moved Release."
      • changedInput schema / properties / ids / description
        Previous value: -"1 to 4 distinct canonical node ids, for example taken from atlas_orient candidates, atlas_links targets, or atlas_navigate tree entries."New value: +"1-4 distinct canonical node ids."
    • Changedatlas_decisions2 fields changed
      • changedInput schema / properties / expected_revision / description
        Previous value: -"Optional coherence marker: the Release version (for example 'v1.0.2') read off any previous payload's 'coherence' field. Omit on a first call. When carried, a promotion that has moved the active Release off this marker is refused with the 'revision_changed' error rather than silently answered from a different Release."New value: +"A prior payload's 'coherence'; 'revision_changed' refuses a moved Release."
      • changedInput schema / properties / query / description
        Previous value: -"Case-insensitive substring matched against each Decision's canonical id, title, and full body. An exact id returns that one summary; omit to list every admitted Decision."New value: +"Substring matched against canonical id, title, and body; omit to list every Decision."
    • Changedatlas_define2 fields changed
      • changedInput schema / properties / expected_revision / description
        Previous value: -"Optional coherence marker: the Release version (for example 'v1.0.2') read off any previous payload's 'coherence' field. Omit on a first call. When carried, a promotion that has moved the active Release off this marker is refused with the 'revision_changed' error rather than silently answered from a different Release."New value: +"A prior payload's 'coherence'; 'revision_changed' refuses a moved Release."
      • changedInput schema / properties / term / description
        Previous value: -"The glossary term to define, matched case-insensitively; a substring is accepted when it names exactly one term."New value: +"The term to define; a substring naming exactly one term is accepted."
    • Changedatlas_links4 fields changed
      • changedInput schema / properties / bound / description
        Previous value: -"Maximum occurrences per page, 1-50 (default 12)."New value: +"Occurrences per page, 1-50."
      • changedInput schema / properties / cursor / description
        Previous value: -"Opaque continuation token from a previous atlas_links payload's 'scope.next_cursor'. Repeat the same arguments alongside it; a cursor minted for a different request or a different Release is refused with 'invalid_argument'."New value: +"scope.next_cursor from a prior atlas_links page; repeat the same other arguments."
      • changedInput schema / properties / expected_revision / description
        Previous value: -"Optional coherence marker: the Release version (for example 'v1.0.2') read off any previous payload's 'coherence' field. Omit on a first call. When carried, a promotion that has moved the active Release off this marker is refused with the 'revision_changed' error rather than silently answered from a different Release."New value: +"A prior payload's 'coherence'; 'revision_changed' refuses a moved Release."
      • changedInput schema / properties / subject / description
        Previous value: -"The one canonical node id whose relationship occurrences are paged."New value: +"The node id whose occurrences are paged."
    • Changedatlas_navigate2 fields changed
      • changedInput schema / properties / expected_revision / description
        Previous value: -"Optional coherence marker: the Release version (for example 'v1.0.2') read off any previous payload's 'coherence' field. Omit on a first call. When carried, a promotion that has moved the active Release off this marker is refused with the 'revision_changed' error rather than silently answered from a different Release."New value: +"A prior payload's 'coherence'; 'revision_changed' refuses a moved Release."
      • changedInput schema / properties / view / description
        Previous value: -"'tree' for the canonical ordered traversal of every published node; 'tour' for the publisher-curated first learning path."New value: +"'tree' for the canonical traversal, 'tour' for the curated walk."
    • Changedatlas_orient6 fields changed
      • changedInput schema / properties / bound / description
        Previous value: -"Maximum candidates per page, 1-8 (default 3)."New value: +"Candidates per page, 1-8."
      • changedInput schema / properties / cursor / description
        Previous value: -"Opaque continuation token from a previous atlas_orient payload's 'scope.next_cursor'. Repeat the same arguments alongside it; a cursor minted for a different request or a different Release is refused with 'invalid_argument'."New value: +"scope.next_cursor from a prior atlas_orient page; repeat the same other arguments."
      • changedInput schema / properties / expected_revision / description
        Previous value: -"Optional coherence marker: the Release version (for example 'v1.0.2') read off any previous payload's 'coherence' field. Omit on a first call. When carried, a promotion that has moved the active Release off this marker is refused with the 'revision_changed' error rather than silently answered from a different Release."New value: +"A prior payload's 'coherence'; 'revision_changed' refuses a moved Release."
      • changedInput schema / properties / kind / description
        Previous value: -"Restrict candidates to one node kind: 'pattern', 'concept', or 'example'. Roadmap entries carry no kind, so any kind filter excludes them."New value: +"Restrict to 'pattern', 'concept', or 'example'; excludes Roadmap entries."
      • changedInput schema / properties / query / description
        Previous value: -"Ordinary design vocabulary naming the problem or subject (for example 'context window budget'). Terms are split on non-alphanumeric characters and matched case-insensitively against canonical ids, titles, Hooks, and published Section headings and bodies. Section text is searched only when those identity fields produce no candidates, and a body-only match requires every query term. An empty string lists every subject in manifest order."New value: +"Ordinary design vocabulary, matched case-insensitively against canonical ids, titles, Hooks, and published Section headings and bodies; empty lists every subject."
      • changedInput schema / properties / status / description
        Previous value: -"Restrict candidates to one maturity rung of the corpus status ladder; published subjects sit at 'fleshed' or 'stable'."New value: +"One status-ladder rung; published subjects are 'fleshed' or 'stable'."
    • Changedatlas_provenance2 fields changed
      • changedInput schema / properties / addresses / description
        Previous value: -"Compact span addresses in 'node-id#section-slug' form, exactly as cited by a Card claim's 'sources'."New value: +"Span addresses ('node-id#section-slug') exactly as cited by Card claim 'sources'."
      • changedInput schema / properties / expected_revision / description
        Previous value: -"Optional coherence marker: the Release version (for example 'v1.0.2') read off any previous payload's 'coherence' field. Omit on a first call. When carried, a promotion that has moved the active Release off this marker is refused with the 'revision_changed' error rather than silently answered from a different Release."New value: +"A prior payload's 'coherence'; 'revision_changed' refuses a moved Release."
    • Changedatlas_read2 fields changed
      • changedInput schema / properties / address / description
        Previous value: -"One canonical address: a bare node id for the complete Node, 'node-id#section-slug' for one Section, or 'decision:<decision-id>' for one Decision record."New value: +"A bare node id, 'node-id#section-slug', or 'decision:<decision-id>'."
      • changedInput schema / properties / expected_revision / description
        Previous value: -"Optional coherence marker: the Release version (for example 'v1.0.2') read off any previous payload's 'coherence' field. Omit on a first call. When carried, a promotion that has moved the active Release off this marker is refused with the 'revision_changed' error rather than silently answered from a different Release."New value: +"A prior payload's 'coherence'; 'revision_changed' refuses a moved Release."
  7. 3 tool updates
    • Changedatlas_decisions1 field changed
      • changedInput schema / properties / query / description
        Previous value: -"Case-insensitive substring matched against each Decision's title and full body. Omit to list every admitted Decision."New value: +"Case-insensitive substring matched against each Decision's canonical id, title, and full body. An exact id returns that one summary; omit to list every admitted Decision."
    • Changedatlas_orient1 field changed
      • changedInput schema / properties / query / description
        Previous value: -"Ordinary design vocabulary naming the problem or subject (for example 'context window budget'). Terms are split on non-alphanumeric characters and matched case-insensitively; an empty string lists every subject in manifest order."New value: +"Ordinary design vocabulary naming the problem or subject (for example 'context window budget'). Terms are split on non-alphanumeric characters and matched case-insensitively against canonical ids, titles, Hooks, and published Section headings and bodies. Section text is searched only when those identity fields produce no candidates, and a body-only match requires every query term. An empty string lists every subject in manifest order."
    • Changedatlas_provenance1 field changed
      • changedInput schema / properties / addresses / description
        Previous value: -"Compact span addresses in 'node-id#section-slug' form, exactly as cited by a Card claim's 'sources' or a payload's 'derived' entries."New value: +"Compact span addresses in 'node-id#section-slug' form, exactly as cited by a Card claim's 'sources'."
  8. 8 tool updates
    • Changedatlas_cards2 fields changed
      • addedInput schema / properties / expected_revision / description
        Added value: +"Optional coherence marker: the Release version (for example 'v1.0.2') read off any previous payload's 'coherence' field. Omit on a first call. When carried, a promotion that has moved the active Release off this marker is refused with the 'revision_changed' error rather than silently answered from a different Release."
      • addedInput schema / properties / ids / description
        Added value: +"1 to 4 distinct canonical node ids, for example taken from atlas_orient candidates, atlas_links targets, or atlas_navigate tree entries."
    • Changedatlas_decisions2 fields changed
      • addedInput schema / properties / expected_revision / description
        Added value: +"Optional coherence marker: the Release version (for example 'v1.0.2') read off any previous payload's 'coherence' field. Omit on a first call. When carried, a promotion that has moved the active Release off this marker is refused with the 'revision_changed' error rather than silently answered from a different Release."
      • addedInput schema / properties / query / description
        Added value: +"Case-insensitive substring matched against each Decision's title and full body. Omit to list every admitted Decision."
    • Changedatlas_define2 fields changed
      • addedInput schema / properties / expected_revision / description
        Added value: +"Optional coherence marker: the Release version (for example 'v1.0.2') read off any previous payload's 'coherence' field. Omit on a first call. When carried, a promotion that has moved the active Release off this marker is refused with the 'revision_changed' error rather than silently answered from a different Release."
      • addedInput schema / properties / term / description
        Added value: +"The glossary term to define, matched case-insensitively; a substring is accepted when it names exactly one term."
    • Changedatlas_links4 fields changed
      • addedInput schema / properties / bound / description
        Added value: +"Maximum occurrences per page, 1-50 (default 12)."
      • addedInput schema / properties / cursor / description
        Added value: +"Opaque continuation token from a previous atlas_links payload's 'scope.next_cursor'. Repeat the same arguments alongside it; a cursor minted for a different request or a different Release is refused with 'invalid_argument'."
      • addedInput schema / properties / expected_revision / description
        Added value: +"Optional coherence marker: the Release version (for example 'v1.0.2') read off any previous payload's 'coherence' field. Omit on a first call. When carried, a promotion that has moved the active Release off this marker is refused with the 'revision_changed' error rather than silently answered from a different Release."
      • addedInput schema / properties / subject / description
        Added value: +"The one canonical node id whose relationship occurrences are paged."
    • Changedatlas_navigate2 fields changed
      • addedInput schema / properties / expected_revision / description
        Added value: +"Optional coherence marker: the Release version (for example 'v1.0.2') read off any previous payload's 'coherence' field. Omit on a first call. When carried, a promotion that has moved the active Release off this marker is refused with the 'revision_changed' error rather than silently answered from a different Release."
      • addedInput schema / properties / view / description
        Added value: +"'tree' for the canonical ordered traversal of every published node; 'tour' for the publisher-curated first learning path."
    • Changedatlas_orient6 fields changed
      • addedInput schema / properties / bound / description
        Added value: +"Maximum candidates per page, 1-8 (default 3)."
      • addedInput schema / properties / cursor / description
        Added value: +"Opaque continuation token from a previous atlas_orient payload's 'scope.next_cursor'. Repeat the same arguments alongside it; a cursor minted for a different request or a different Release is refused with 'invalid_argument'."
      • addedInput schema / properties / expected_revision / description
        Added value: +"Optional coherence marker: the Release version (for example 'v1.0.2') read off any previous payload's 'coherence' field. Omit on a first call. When carried, a promotion that has moved the active Release off this marker is refused with the 'revision_changed' error rather than silently answered from a different Release."
      • addedInput schema / properties / kind / description
        Added value: +"Restrict candidates to one node kind: 'pattern', 'concept', or 'example'. Roadmap entries carry no kind, so any kind filter excludes them."
      • addedInput schema / properties / query / description
        Added value: +"Ordinary design vocabulary naming the problem or subject (for example 'context window budget'). Terms are split on non-alphanumeric characters and matched case-insensitively; an empty string lists every subject in manifest order."
      • addedInput schema / properties / status / description
        Added value: +"Restrict candidates to one maturity rung of the corpus status ladder; published subjects sit at 'fleshed' or 'stable'."
    • Changedatlas_provenance2 fields changed
      • addedInput schema / properties / addresses / description
        Added value: +"Compact span addresses in 'node-id#section-slug' form, exactly as cited by a Card claim's 'sources' or a payload's 'derived' entries."
      • addedInput schema / properties / expected_revision / description
        Added value: +"Optional coherence marker: the Release version (for example 'v1.0.2') read off any previous payload's 'coherence' field. Omit on a first call. When carried, a promotion that has moved the active Release off this marker is refused with the 'revision_changed' error rather than silently answered from a different Release."
    • Changedatlas_read2 fields changed
      • addedInput schema / properties / address / description
        Added value: +"One canonical address: a bare node id for the complete Node, 'node-id#section-slug' for one Section, or 'decision:<decision-id>' for one Decision record."
      • addedInput schema / properties / expected_revision / description
        Added value: +"Optional coherence marker: the Release version (for example 'v1.0.2') read off any previous payload's 'coherence' field. Omit on a first call. When carried, a promotion that has moved the active Release off this marker is refused with the 'revision_changed' error rather than silently answered from a different Release."
  9. 8 tool updates
    • First observedatlas_cards
    • First observedatlas_decisions
    • First observedatlas_define
    • First observedatlas_links
    • First observedatlas_navigate
    • First observedatlas_orient
    • First observedatlas_provenance
    • First observedatlas_read

Frequently Asked Questions

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    B
    maintenance
    Enables AI agents to query a curated, cited knowledge graph on testing, benchmarking, and auditing autonomous agents, returning claims with sources, confidence values, and evidence tiers through eight read-only tools over a remote streamable-HTTP endpoint with no authentication required.
    CC BY-4.0
  • F
    license
    Not graded
    quality
    B
    maintenance
    AgentTask is a governed work platform where human teams and AI agents share one backlog. Hosted remote MCP server (streamable HTTP, OAuth 2.1 or org API keys) with 60+ tools for tasks, subtasks, projects, groups, labels, notes, comments, attachments, search, crews, and agent runs.
    -
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.1/5.0
Disambiguation5/5

Each tool targets a distinct operation: discovery, navigation, reading, relationship paging, auditing, decisions, and glossary lookup. Descriptions explicitly cross-reference alternatives like atlas_cards vs atlas_read, so an agent can reliably choose the right tool.

Naming Consistency3/5

All names share the atlas_ prefix and are short, but conventions are mixed: cards, decisions, links, and provenance are noun resources while define, navigate, orient, and read are imperative verbs. The set is readable but does not follow a single verb_noun pattern.

Tool Count5/5

Eight tools is well-scoped for a canonical read-only atlas covering discovery, structured reading, navigation, relationships, decisions, glossary, and provenance. Each tool earns its place without feeling bloated or thin.

Completeness5/5

The surface covers the natural read-only workflow: discover identity, navigate structure, read nodes and sections, inspect relationships, look up definitions, check decisions, and audit provenance. Write operations are not an obvious gap given the corpus appears intentionally immutable.

Resources