Skip to main content
Glama

Server Details

Testing, benchmarking and auditing autonomous AI agents — methods, harnesses, evidence

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
citarium/agentreliability-mcp
GitHub Stars
0
Server Listing
Agent Reliability MCP server

Available Tools

8 tools
answerAnswer a question about Agent ReliabilityA
Read-onlyIdempotent
Inspect

Answer a question from the corpus. Returns the matched object's claims with sources and confidence — never an unsourced answer. Use this when the user asked a question in words; use search when you want to see the candidates yourself.

ParametersJSON Schema
NameRequiredDescriptionDefault
questionYesThe question to answer, in the words the user asked it.

Output Schema

ParametersJSON Schema
NameRequiredDescription
claimsNo
entityNo
answeredYes
matched_questionNo

TDQS

A4.9/5.0
Behavior5/5

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

Annotations already mark the operation as read-only, idempotent, and non-destructive. The description adds meaningful behavioral guarantees beyond those annotations: it returns claims with sources and confidence, and explicitly states it 'never' returns an unsourced answer. No contradiction with 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 efficient sentences: the first states the action and output guarantee, the second provides routing guidance. Every sentence earns its place with no filler or repetition.

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 one well-described parameter, an output schema, clear annotations, and explicit sibling differentiation, the description is complete for an agent to select and invoke the tool correctly. No critical behavioral or usage detail is missing.

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% for the single parameter, so the baseline is 3. The description adds value by instructing the agent to use the question 'in the words the user asked it,' which preserves important original phrasing and prevents paraphrasing. This is useful semantic guidance 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 specific action ('Answer a question from the corpus') and clearly specifies the output ('matched object's claims with sources and confidence'). It distinguishes itself from the 'search' sibling by positioning this as the direct-answer tool while search shows candidates.

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?

Explicitly tells the agent when to use this tool ('when the user asked a question in words') and when to use the alternative ('use search when you want to see the candidates yourself'). This removes ambiguity about tool selection.

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

get_entityGet one Agent Reliability knowledge objectA
Read-onlyIdempotent
Inspect

Fetch one knowledge object by id, with its claims and the sources each claim cites. Use this once search, answer or get_topic has given you an id. An unknown id is not a dead end: the answer names near-miss ids you can retry with.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesThe knowledge object's id, as returned by search, answer, get_topic or get_related — the last segment of its canonical URL.

Output Schema

ParametersJSON Schema
NameRequiredDescription
foundYes
entityNo
recoveryNo

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already mark the tool as read-only, idempotent, and non-destructive. The description adds a useful behavioral trait: an unknown id is not a dead end, and the answer provides near-miss ids to retry. This exceeds what annotations convey.

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

Conciseness5/5

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

Two sentences, front-loaded with the action, followed by a clear usage condition and a helpful edge-case note. No waste; every clause 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?

The description tells the agent what the tool returns, when to call it, and how to recover from an unknown id. The output schema covers the return shape, so nothing critical is missing for a one-parameter read-only tool.

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

Parameters3/5

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

Schema coverage is 100%, and the schema already explains the id parameter including how to obtain it and the canonical URL hint. The description merely says 'by id' and adds an error-recovery note for unknown ids, which adds little semantic detail 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 opens with a specific verb and resource: 'Fetch one knowledge object by id', and names the payload ('with its claims and the sources each claim cites'). It also implicitly distinguishes from siblings by noting when it applies ('Use this once search, answer or get_topic has given you an id'), making it clear this is the targeted retrieval step.

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

Usage Guidelines4/5

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

The description explicitly states when to use the tool: 'Use this once search, answer or get_topic has given you an id.' It gives clear context, though it doesn't explicitly list when not to use it or name a sibling alternative.

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

get_latestLatest verified Agent Reliability objectsA
Read-onlyIdempotent
Inspect

Most recently verified knowledge objects (freshness signal). Use this to judge how current the corpus is, or to see what changed since you last read it. It ranks by verification date and ignores your topic entirely — use search or get_topic when you want objects that are relevant rather than recent.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoHow many recently verified objects to return, newest verification first.

Output Schema

ParametersJSON Schema
NameRequiredDescription
totalYes
resultsYes

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, covering safety. The description adds behavioral context beyond annotations by specifying the ordering logic (by verification date) and the fact that topic is ignored. This helps the agent understand what to expect from the results.

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

Conciseness5/5

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

The description is two sentences long with no wasted words. It front-loads the core purpose and freshness signal, then immediately covers use cases and exclusions. Every sentence 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 single optional parameter, output schema presence, rich annotations, and sibling tool context, this description is complete. It explains what the tool returns, how results are ordered, when to use it, and when to use alternatives. Nothing essential 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 single 'limit' parameter is already fully documented. The description reinforces the recency/verification-date concept but does not add substantial meaning beyond the schema. Baseline 3 is appropriate given the schema handles parameter semantics fully.

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 and resource: 'Most recently verified knowledge objects' ranked by verification date. It explicitly distinguishes itself from search and get_topic by noting it ignores topic relevance entirely. This makes the tool's purpose unambiguous and easily differentiated from 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?

The description provides explicit use cases: judge corpus currency or see what changed since last read. It also gives a clear when-not-to-use instruction, directing agents to search or get_topic for relevance-based retrieval. This is strong guidance for tool selection.

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

get_overviewOverview of Agent ReliabilityA
Read-onlyIdempotent
Inspect

Corpus overview: what this instance knows, counts by type, published tags, freshness. Use this first when you land here and do not yet know whether this corpus can answer your question.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
tagsYes
by_typeYes
instanceYes
descriptionYes
total_mediaYes
total_objectsYes
newest_verificationYes
oldest_verificationYes

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already establish read-only, idempotent, non-destructive behavior. The description adds useful context about the tool's role as a preliminary orientation step and discloses the nature of its outputs (counts, tags, freshness), which goes beyond the annotations without contradicting them.

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

Conciseness5/5

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

Two sentences, no fluff. The first sentence front-loads the tool's content and scope, and the second immediately gives actionable usage guidance. 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?

For a parameterless overview tool with a rich output schema and safety-oriented annotations, the description fully covers purpose, usage, and context. Nothing essential is missing for an agent to decide when to invoke it.

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

Parameters4/5

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

The input schema has zero parameters, so parameter semantics are not applicable. Per the rubric, a 0-parameter tool receives a baseline of 4; the description appropriately focuses on the tool's output rather than 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 clearly states the resource ('Corpus overview') and the specific content returned: counts by type, published tags, freshness. It distinguishes itself from siblings by positioning this as the first-stop tool for assessing corpus knowledge, which separates it from query tools like answer or search.

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 when-to-use guidance: 'Use this first when you land here and do not yet know whether this corpus can answer your question.' It implies when not to use it (when you already know the corpus can answer), but it does not explicitly name alternatives or exclusion conditions, so it falls just short of a 5.

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

get_sourcesSources behind Agent ReliabilityA
Read-onlyIdempotent
Inspect

The instance's whole source registry, or just the sources cited by one object — each with its evidence tier, reliability and access date. Use this when you need the registry entry behind a citation, or the whole registry to judge the corpus before trusting it; get_entity already tells you which sources a claim cites.

ParametersJSON Schema
NameRequiredDescriptionDefault
object_idNoRestrict the answer to the sources cited by this knowledge object. Omit it to get the instance's whole source registry.

Output Schema

ParametersJSON Schema
NameRequiredDescription
foundYes
sourcesYes
recoveryNo

TDQS

A4.5/5.0
Behavior4/5

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

The annotations already show readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds useful behavioral context about what the returned entries contain (evidence tier, reliability, access date) and that omitting the parameter returns the full registry, which goes 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?

The description is two sentences, front-loads the core behavior and return contents, and includes the usage guidance and sibling differentiation without any filler. Every sentence 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 a single optional parameter, rich annotations, and an output schema, the description fully equips an agent to invoke the tool correctly. It clarifies the default behavior, what data to expect, and when to choose the tool over a sibling, so nothing essential 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?

The input schema already documents object_id completely, including its optionality and semantics, and schema description coverage is 100%. The description restates the omit-to-get-whole-registry behavior but does not add meaning beyond what the schema already provides, so the baseline 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 states exactly what the tool returns: the source registry, optionally restricted to sources cited by one object, with evidence tier, reliability, and access date. It clearly distinguishes itself from get_entity by noting that get_entity already reports which sources a claim cites, so an agent can tell the tools apart.

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 this tool: when you need the registry entry behind a citation, or when you want the whole registry to judge the corpus before trusting it. It also names the relevant sibling alternative, get_entity, and explains how that other tool differs, giving clear routing guidance.

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

get_topicBrowse Agent Reliability by topicA
Read-onlyIdempotent
Inspect

List the knowledge objects carrying a tag (topics are content-backed tags). Use this to browse a known topic; use search when you have a question rather than a tag, and get_overview to see which tags exist. An unknown tag comes back with the topics that do exist, so a miss still moves you forward.

ParametersJSON Schema
NameRequiredDescriptionDefault
tagYesThe topic to list, spelled exactly as get_overview publishes it. Every published topic has objects under it, so an empty answer means the topic does not exist.

Output Schema

ParametersJSON Schema
NameRequiredDescription
tagYes
totalYes
resultsYes
recoveryNo

TDQS

A4.5/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 behavior, so the bar is lower. The description adds valuable non-obvious edge-case behavior: an unknown tag returns the topics that do exist, so a miss still yields useful output. It also clarifies that an empty answer means the topic does not exist, which complements the read-only trust profile.

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 wasted words: action and scope first, then routing guidance, then the unknown-tag fallback behavior. Every sentence 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?

For a single-parameter, read-only tool with a rich parameter description, safety annotations, and an output schema, the description fully covers purpose, when-to-use, and edge-case behavior. Nothing an agent needs to select and invoke this tool correctly 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%, and the tag parameter's schema description already explains exact spelling requirements and the empty-answer meaning. The tool description adds usage context ('browse a known topic') but no additional parameter-format details, so the baseline 3 applies.

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 verb ('List') and resource ('knowledge objects') filtered by a tag, with the clarifying note that topics are content-backed tags. Explicitly distinguishes this tool from search and get_overview, so an agent can identify it correctly without opening schemas.

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?

Provides explicit guidance: use this to browse a known topic, use search for question-based queries, and use get_overview to enumerate existing tags. This fully routes the agent 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.

Tool Schema Changelog

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

  1. 8 tool updates
    • Changedanswer1 field changed
      • addedInput schema / properties / question / description
        Added value: +"The question to answer, in the words the user asked it."
    • Changedget_entity3 fields changed
      • addedInput schema / properties / id / description
        Added value: +"The knowledge object's id, as returned by search, answer, get_topic or get_related — the last segment of its canonical URL."
      • addedOutput schema / properties / entity / properties / media
        Added value: +{
        +  "items": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "alt": {
        +        "type": "string"
        +      },
        +      "caption": {
        +        "type": "string"
        +      },
        +      "credit": {
        +        "type": "string"
        +      },
        +      "height": {
        +        "maximum": 9007199254740991,
        +        "minimum": -9007199254740991,
        +        "type": "integer"
        +      },
        +      "id": {
        +        "type": "string"
        +      },
        +      "license_spdx": {
        +        "type": "string"
        +      },
        +      "permissions": {
        +        "additionalProperties": {
        +          "type": "boolean"
        +        },
        +        "propertyNames": {
        +          "type": "string"
        +        },
        +        "type": "object"
        +      },
        +      "supports": {
        +        "type": "string"
        +      },
        +      "url": {
        +        "type": "string"
        +      },
        +      "width": {
        +        "maximum": 9007199254740991,
        +        "minimum": -9007199254740991,
        +        "type": "integer"
        +      }
        +    },
        +    "required": [
        +      "id",
        +      "url",
        +      "alt",
        +      "credit",
        +      "license_spdx",
        +      "permissions"
        +    ],
        +    "type": "object"
        +  },
        +  "type": "array"
        +}
      • changedOutput schema / properties / entity / required
        Previous value: -[
        -  "id",
        -  "type",
        -  "name",
        -  "summary",
        -  "tags",
        -  "evidence_tier",
        -  "confidence",
        -  "last_verified",
        -  "canonical_url",
        -  "api_url",
        -  "questions",
        -  "claims"
        -]New value: +[
        +  "id",
        +  "type",
        +  "name",
        +  "summary",
        +  "tags",
        +  "evidence_tier",
        +  "confidence",
        +  "last_verified",
        +  "canonical_url",
        +  "api_url",
        +  "questions",
        +  "claims",
        +  "media"
        +]
    • Changedget_latest1 field changed
      • addedInput schema / properties / limit / description
        Added value: +"How many recently verified objects to return, newest verification first."
    • Changedget_overview2 fields changed
      • addedOutput schema / properties / total_media
        Added value: +{
        +  "maximum": 9007199254740991,
        +  "minimum": -9007199254740991,
        +  "type": "integer"
        +}
      • changedOutput schema / required
        Previous value: -[
        -  "instance",
        -  "description",
        -  "total_objects",
        -  "by_type",
        -  "tags",
        -  "newest_verification",
        -  "oldest_verification"
        -]New value: +[
        +  "instance",
        +  "description",
        +  "total_objects",
        +  "by_type",
        +  "tags",
        +  "newest_verification",
        +  "oldest_verification",
        +  "total_media"
        +]
    • Changedget_related1 field changed
      • addedInput schema / properties / id / description
        Added value: +"The knowledge object to walk out from, by id."
    • Changedget_sources1 field changed
      • addedInput schema / properties / object_id / description
        Added value: +"Restrict the answer to the sources cited by this knowledge object. Omit it to get the instance's whole source registry."
    • Changedget_topic1 field changed
      • addedInput schema / properties / tag / description
        Added value: +"The topic to list, spelled exactly as get_overview publishes it. Every published topic has objects under it, so an empty answer means the topic does not exist."
    • Changedsearch4 fields changed
      • addedInput schema / properties / limit / description
        Added value: +"How many ranked hits to return, best first."
      • addedInput schema / properties / query / description
        Added value: +"What to look for, in the user's own words. Matched against titles, questions, claim text and tags; accents and apostrophes are ignored, so 'jose' finds 'José'."
      • addedOutput schema / properties / results / items / properties / matched_fields / description
        Added value: +"Which fields the query hit: name, tags, content. Does NOT determine the score on its own."
      • addedOutput schema / properties / results / items / properties / score / description
        Added value: +"Text match, weighted by where the token hits (name 3, tags 2, content 1 per query token), plus a centrality bonus of up to 0.9 for objects that other objects point at. That bonus is why two hits can share matched_fields and still score differently: the decimal is inbound edges, not text relevance."
  2. 4 tool updates
    • Changedget_entity1 field changed
      • addedOutput schema / properties / recovery
        Added value: +{
        +  "additionalProperties": false,
        +  "properties": {
        +    "available": {
        +      "items": {
        +        "type": "string"
        +      },
        +      "type": "array"
        +    },
        +    "available_count": {
        +      "maximum": 9007199254740991,
        +      "minimum": -9007199254740991,
        +      "type": "integer"
        +    },
        +    "available_truncated": {
        +      "type": "boolean"
        +    },
        +    "did_you_mean": {
        +      "items": {
        +        "type": "string"
        +      },
        +      "type": "array"
        +    },
        +    "hint": {
        +      "type": "string"
        +    },
        +    "next_tool": {
        +      "type": "string"
        +    }
        +  },
        +  "required": [
        +    "available_count",
        +    "available",
        +    "next_tool",
        +    "hint"
        +  ],
        +  "type": "object"
        +}
    • Changedget_related1 field changed
      • addedOutput schema / properties / recovery
        Added value: +{
        +  "additionalProperties": false,
        +  "properties": {
        +    "available": {
        +      "items": {
        +        "type": "string"
        +      },
        +      "type": "array"
        +    },
        +    "available_count": {
        +      "maximum": 9007199254740991,
        +      "minimum": -9007199254740991,
        +      "type": "integer"
        +    },
        +    "available_truncated": {
        +      "type": "boolean"
        +    },
        +    "did_you_mean": {
        +      "items": {
        +        "type": "string"
        +      },
        +      "type": "array"
        +    },
        +    "hint": {
        +      "type": "string"
        +    },
        +    "next_tool": {
        +      "type": "string"
        +    }
        +  },
        +  "required": [
        +    "available_count",
        +    "available",
        +    "next_tool",
        +    "hint"
        +  ],
        +  "type": "object"
        +}
    • Changedget_sources1 field changed
      • addedOutput schema / properties / recovery
        Added value: +{
        +  "additionalProperties": false,
        +  "properties": {
        +    "available": {
        +      "items": {
        +        "type": "string"
        +      },
        +      "type": "array"
        +    },
        +    "available_count": {
        +      "maximum": 9007199254740991,
        +      "minimum": -9007199254740991,
        +      "type": "integer"
        +    },
        +    "available_truncated": {
        +      "type": "boolean"
        +    },
        +    "did_you_mean": {
        +      "items": {
        +        "type": "string"
        +      },
        +      "type": "array"
        +    },
        +    "hint": {
        +      "type": "string"
        +    },
        +    "next_tool": {
        +      "type": "string"
        +    }
        +  },
        +  "required": [
        +    "available_count",
        +    "available",
        +    "next_tool",
        +    "hint"
        +  ],
        +  "type": "object"
        +}
    • Changedget_topic1 field changed
      • addedOutput schema / properties / recovery
        Added value: +{
        +  "additionalProperties": false,
        +  "properties": {
        +    "available": {
        +      "items": {
        +        "type": "string"
        +      },
        +      "type": "array"
        +    },
        +    "available_count": {
        +      "maximum": 9007199254740991,
        +      "minimum": -9007199254740991,
        +      "type": "integer"
        +    },
        +    "available_truncated": {
        +      "type": "boolean"
        +    },
        +    "did_you_mean": {
        +      "items": {
        +        "type": "string"
        +      },
        +      "type": "array"
        +    },
        +    "hint": {
        +      "type": "string"
        +    },
        +    "next_tool": {
        +      "type": "string"
        +    }
        +  },
        +  "required": [
        +    "available_count",
        +    "available",
        +    "next_tool",
        +    "hint"
        +  ],
        +  "type": "object"
        +}
  3. 8 tool updates
    • First observedanswer
    • First observedget_entity
    • First observedget_latest
    • First observedget_overview
    • First observedget_related
    • First observedget_sources
    • First observedget_topic
    • First observedsearch

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
    An observable autonomy harness for AI coding agents that enables long task execution without drift or cheating, while recording all actions for cost and quality steering.
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    Verifiable action receipts for AI agents — agents sign claims locally, an independent witness countersigns and timestamps, anyone can verify offline.
    14
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables AI agents to conduct evidence-grounded forensic triage of compromised hosts, with architectural safeguards against evidence spoliation and hallucinated findings, supporting self-correction and chain of custody.
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.6/5.0
Disambiguation5/5

Each tool targets a distinct retrieval mode: question answering, text search, entity fetch, topic browse, related traversal, source inspection, freshness, and corpus overview. The descriptions explicitly contrast overlapping pairs like answer vs search and get_topic vs search, so an agent can reliably choose.

Naming Consistency4/5

The dominant get_<noun> pattern is clear and consistent for six of eight tools, while answer and search are plain verbs that still convey their action. This is a minor deviation rather than a mixed convention.

Tool Count5/5

Eight tools is well within the ideal range for a knowledge-corpus query server. Each tool covers a distinct retrieval need with no redundancy or bloat.

Completeness5/5

The read-side lifecycle is complete: discover via overview, search, answer, topic, and latest; drill in via entity and related; and verify via sources. The descriptions explicitly handle misses with near-miss ids and existing topics, so agents are not left at dead ends.