Skip to main content
Glama

get_cross_references

Get all entries that reference or are referenced by a given entry.

Given an entry ID (e.g., "structural-engineering/superstructure/primary-geometry"), returns:

  • Outbound references: entries this entry explicitly references

  • Inbound references: entries that reference this entry

  • Shared parameters: entries in other domains with parameters that share the same name (potential cross-domain dependencies)

This is the primary tool for cross-domain consistency analysis.

Args: entry_id: The full entry ID (domain/subdomain/slug format)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
entry_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

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

  1. Added

TDQS

A4.4/5.0
Behavior3/5

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

With no annotations provided, the description carries the full burden of disclosing behavior. It describes the three types of results (outbound, inbound, shared parameters) and notes potential cross-domain dependencies, but does not explicitly state that the operation is read-only or address edge cases like pagination or large result sets.

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 well-structured and front-loaded: the purpose appears in the first sentence, followed by a concise bulleted list of return types, a clear positioning statement, and an Args section. Every sentence contributes value with no redundant content.

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 tool has only one parameter, an output schema exists, and the description clearly explains the tool's purpose, return categories, and primary use case. It provides all necessary context for an agent to select and invoke the tool correctly, with no significant gaps.

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

Parameters5/5

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

The schema provides no description for the single parameter, but the Args section fully compensates by specifying the format (domain/subdomain/slug) and giving a concrete example. This provides complete semantic meaning beyond the raw 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 first sentence uses a specific verb ('Get') and resource ('all entries that reference or are referenced by a given entry'), clearly distinguishing it from siblings like get_entry_parameters and read_node. It also explicitly lists the three return categories, making the purpose unambiguous.

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 states this is 'the primary tool for cross-domain consistency analysis,' giving clear contextual guidance on when to use it. However, it does not explicitly mention alternatives or situations where a sibling tool might be more appropriate, so it falls just short of a perfect score.

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.2/5.0
Disambiguation5/5

Each tool has a distinct purpose: retrieving entries, cross-references, parameters, stats, open questions, domains, search, registration, and submission. No two tools appear to perform the same function, and the descriptions clarify when to use each.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern with snake_case: get_cross_references, list_domains, read_node, submit_proposal, etc. The verb prefixes (get, list, read, search, register, submit) align with their operations, making the pattern predictable.

Tool Count5/5

With 9 tools, the set is well-scoped for a knowledge base system. Each tool covers a core functionality (retrieval, search, stats, submission, registration) without redundancy or bloat, striking the right balance for the stated purpose.

Completeness4/5

The tool surface covers the main workflows: reading, searching, cross-referencing, statistics, and submission. Minor gaps exist, such as no direct listing of all entries in a domain and no update/delete operations for submissions, but these are workable around and do not severely hinder typical usage.