Skip to main content
Glama

PersonalKnowHow

Find related entries

related_entries
Read-only

Given an entry id (from a prior query_knowhow or list_by_type result), returns other entries that share at least one tag or the same content provider -- the only two relationships this corpus currently tracks (there is no 'led to' or 'used in' relationship here, only shared tag/provider). This is NOT a similarity or relevance judgment -- two entries sharing a broad tag (e.g. both tagged 'data-science') can be quite different in substance; read each related entry's own label/type before treating it as meaningful. Each group is capped at 15 entries, sorted by label, with the true total count shown separately so you know if results were truncated -- call list_by_type on that type if you need the full set. Useful for 'what else is connected to X' or 'what did they do that relates to this specific course/certification/endorsement' -- questions query_knowhow's independent similarity search can't reliably answer, since two entries can be genuinely related without their description text reading alike (e.g. a course title and an endorsement phrase for the same skill, worded completely differently).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesAn entry id from a prior query_knowhow or list_by_type result

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.8/5.0
Behavior5/5

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

Annotations already declare readOnlyHint=true, and the description adds substantial behavioral detail beyond that: only two relationship types exist, results are capped at 15 and sorted by label, the true total count is shown separately, and the tool is not a relevance/similarity judgment. These caveats help an agent interpret results correctly. 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.

Conciseness4/5

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

The description is longer than average but every sentence carries meaningful guidance: relationship semantics, limitations, truncation behavior, and usage context. It front-loads the core function, though some examples could be trimmed without losing value.

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 tool's moderate complexity, one parameter, no output schema, and available sibling context, the description fully covers what an agent needs: input provenance, output shape and limits, caveats about semantic relevance, and when to use an alternative. Nothing critical 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% and the schema already documents id as 'an entry id from a prior query_knowhow or list_by_type result.' The description reinforces this provenance and clarifies what kind of id is expected, adding a small amount of value beyond the schema without needing to repeat format details.

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 and resource: 'returns other entries that share at least one tag or the same content provider.' It explicitly distinguishes itself from query_knowhow's similarity search and names the prior tools that produce the input id, so an agent can clearly understand what this tool does.

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 when-to-use guidance ('what else is connected to X', 'what did they do that relates to this...'), explicitly contrasts with query_knowhow's similarity search, and gives an actionable alternative ('call list_by_type on that type if you need the full set') when results are truncated. This is exemplary routing guidance.

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

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 clearly distinct retrieval mode: exhaustive listing by type, semantic ranked search, relationship traversal by ID, and exact tag matching. The descriptions actively cross-reference each other to prevent confusion, making misselection very unlikely.

Naming Consistency3/5

All names are snake_case and readable, but the pattern is mixed: list_by_type and query_knowhow are imperative verb phrases, while related_entries and skill_evidence are noun phrases. A more consistent set would use verbs throughout, such as get_related_entries and get_skill_evidence.

Tool Count5/5

Four tools is well-scoped for a read-only personal knowledge graph. Each tool covers a necessary and non-redundant query path, and none feel like filler or missing from the core set.

Completeness4/5

The set covers the main query needs: exhaustive lookup by type, semantic search, related entries, and exact skill evidence. Minor gaps exist, such as no direct get-entry-by-id tool and no way to enumerate all available types or tags without first running a search, but these are workable.