Skip to main content
Glama
SGromych

DataForge Semantic MCP Server

by SGromych

df_list_relationships

Read-onlyIdempotent

List star-schema relationships between fact tables and dimension groups for a project version. Retrieve many-to-one joins to understand semantic model connections.

Instructions

List star-schema relationships (fact table to dimension group joins). relationship_type is the raw slug many_to_one.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNo
languageNoru
page_sizeNo
use_cacheNo
project_idYesDataForge project id
version_idYesProject version id
fact_table_idNo
dimension_group_idNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.1

TDQS

C2.9/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds no behavioral details such as pagination behavior, caching semantics, or return shape, but it does not contradict the annotations. It provides only minimal context beyond the annotations, so a mid-range score is appropriate.

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 short, front-loaded with the core action, and contains no filler. The second sentence about relationship_type adds a small but possibly useful detail. It earns its place, though it could have been integrated more clearly with the schema context.

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

Completeness2/5

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

The tool has 8 parameters, no output schema, and no explanation of pagination, caching defaults, optional filters, or what the returned relationship objects look like. The description is sufficient to understand the intent but incomplete for an agent to confidently call the tool with the right parameters and interpret results.

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

Parameters2/5

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

Schema description coverage is only 25%, covering just project_id and version_id. The description mentions the fact-table-to-dimension-group join concept, which loosely maps to fact_table_id and dimension_group_id, but it does not explain page, page_size, language, use_cache, or the filtering semantics. With low schema coverage, the description should compensate, and it does not.

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 specific verb and resource ('List star-schema relationships') and clarifies the domain ('fact table to dimension group joins'), which distinguishes it from singular operations like df_get_relationship. It does not explicitly name sibling alternatives, but the purpose is clear and not tautological.

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?

No guidance is given about when to use this tool versus alternatives such as df_get_relationship, df_write_relationship, or df_list_dimension_groups. The context is limited to what the tool does; there are no exclusions, prerequisites, or conditions that would help an agent choose between listing and singular relationship operations.

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