Skip to main content
Glama

cuba_vigia

Analyze a knowledge graph for summary counts, health, drift, communities, bridges, and structural centrality to monitor memory quality and identify key nodes.

Instructions

Knowledge graph analytics: summary, health, drift, communities, bridges, structural.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
metricYessummary: counts + token estimate. health: staleness, entropy, DB size. drift: chi-squared on errors. communities: Leiden clustering. bridges: betweenness centrality. structural: harmonic + closeness centrality + k-core ranking (backbone identification).

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv0.25.0
    • changedInput schema / properties / metric / description
      Previous value: -"Metric to compute. v0.9: 'structural' adds harmonic + closeness centrality (Boldi-Vigna 2014, Bavelas 1950) + k-core decomposition (Seidman 1983)."New value: +"summary: counts + token estimate. health: staleness, entropy, DB size. drift: chi-squared on errors. communities: Leiden clustering. bridges: betweenness centrality. structural: harmonic + closeness centrality + k-core ranking (backbone identification)."
  2. First observedv0.18.0

TDQS

C2.6/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It never says whether the metrics are read-only, computationally expensive (Leiden clustering and betweenness centrality are heavy), whether they mutate graph state, or what latency to expect.

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

Conciseness3/5

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

It is a single short line, which is efficient, but roughly half its content is a bare enumeration that duplicates the enum values already present in the schema. It is under-specified rather than truly concise.

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

Completeness3/5

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

The sole input parameter is fully documented by the schema, so the input side is covered. With no output schema and no annotations, the description leaves the return shape and operational cost of these analytics unstated, which is a real gap for a multi-mode analytics 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 description coverage is 100% and the enum's per-value descriptions are far richer than the description text (e.g. 'Leiden clustering', 'harmonic + closeness centrality + k-core ranking'). The description merely restates the enum keys, adding no meaning beyond the schema, so the baseline 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose3/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description names the domain (knowledge graph analytics) and lists the six metric modes, so an agent can tell roughly what kind of tool this is. However, it is a noun fragment with no verb and no indication of what the tool actually returns or does with the graph, and it does not differentiate this from sibling analytics/supervision tools like cuba_centinela or cuba_calibrar.

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 statement of when to reach for this tool versus alternatives, no prerequisites, and no mention of the large family of cuba_* siblings that perform adjacent analyses. The agent must infer usage entirely from the metric names.

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