Skip to main content
Glama

VineVerse — Bible Knowledge Graph

Get a document

get_entity
Read-onlyIdempotent

Fetch any document in the knowledge base by path: People — people/moses Places — places/bethel-1 Themes — themes/faith Lexemes — lexemes/h430 Commandments — commandments/001-know-there-is-a-g-d Events — sa/events/exodus-from-egypt Epochs — epochs/david-reigns-in-jerusalem Books — bible/john Chapters — bible/john/3 Sources — sources/bibledata Datasets — references/cross-references Schema — schema/relations

Returns the document's structured fields, its typed relations in BOTH directions, what links to it, and optionally its full text. The inbound direction matters: the corpus stores each relation once, on one side only, so a person's parents live on their parents' documents and only relations.inbound recovers them.

Set body=true for the prose — a lexeme's Strong's definition, a commandment's Hebrew, a theme's outline of verses all live in the body and nowhere else.

Where several people or places share a name the path is disambiguated with a number (people/zechariah-14, places/bethel-1) — search_concepts first if unsure. A collection path like "themes" or "sources" returns what that collection holds.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyNoInclude the full markdown body. Default false.
pathYesDocument path, e.g. "people/moses", "themes/faith", "lexemes/h430", "epochs/the-exile"
backlinksNoHow many backlinks to return, 100 by default. `backlinkCount` always reports the true total and `backlinksTruncated` says whether you are seeing all of it.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
latNo
lonNo
bodyNo
noteNo
osisNo
tagsNo
typeYes
countNo
linksNo
staleNo
titleYes
wordsNo
degreeNo
sampleNo
statusNo
licenceNo
sourcesNo
strongsNo
backlinksNo
extensionNo
generatedNo
linkCountNo
relationsNo
trustTierNo
collectionNo
shareAlikeNo
descriptionNo
backlinkCountNo
backlinksTruncatedNo

TDQS

A4.7/5.0
Behavior5/5

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

Beyond already-strong annotations (readOnly, idempotent), the description reveals genuinely non-obvious behavior: relations are stored only on one side, so inbound relations must be requested explicitly; body content exists only when body=true; collection paths return collection contents. It even explains the path layout for the ambiguous corpus. This is real behavioral value above and beyond the structured fields.

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?

Despite covering many path types and edge cases, the description remains well-structured and purposeful. The path examples are front-loaded, the behaviors are clearly separated, and no sentence is filler. The length is justified by the breadth of document types the tool must address.

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?

This description is remarkably complete for a path-based fetch tool. Together with full parameter schema coverage, strong readOnly/idempotent annotations, and an output schema, the description already handles path disambiguation, collection behavior, body requirements, relation-direction semantics, and alternative routes when the path is uncertain. Little is left for the agent to guess.

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%, so the baseline is already strong. The description adds additional semantic meaning for path: an extensive set of valid path prefixes, the fact that a collection path returns whatever that collection holds, and meaningful examples of when body=true is required for prose that is not available elsewhere. It does not deepen the meaning of backlinks much, but the schema description already handles that well.

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 clear, specific verb and resource: 'Fetch any document in the knowledge base by path.' It then enumerates the exact path categories it covers and states exactly what is returned (structured fields, relations in both directions, links, optional body). It also distinguishes itself from one sibling by routing ambiguous lookups to search_concepts.

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 gives clear context on when this tool fits — fetching path-based documents, collections, and documents with prose — and explicitly recommends search_concepts first when paths are ambiguous. It lacks explicit exclusions or direct comparisons with other sibling tools like get_graph_neighborhood or get_family, 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.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.4/5.0
Disambiguation4/5

Each tool targets a distinct retrieval task, and the only near-overlaps—get_connections vs find_cross_references, get_stats vs get_status, get_entity vs get_family—are clearly separated by the descriptions. An agent could occasionally hesitate between get_entity and get_family for genealogy, but the purpose statements make the boundary clear.

Naming Consistency4/5

All tool names use clear snake_case verb_noun phrasing, and most are get_* operations. There is a minor stylistic split between get_*, find_*, search_*, and list_*, which gives the set a slightly less uniform feel but is still predictable and readable enough for an agent.

Tool Count4/5

At 16 tools, this is slightly above the typical 3-15 range, but every tool covers a genuinely separate capability: passage lookup, concept search, graph queries, genealogy, interlinear, statistics, and service health. The count is large but reasonable for the breadth of a Bible knowledge graph.

Completeness5/5

For read-only knowledge-graph, the surface is well covered: known-lookup, text and concept search, browsing by collection, cross-references, graph neighborhoods, genealogy, places, interlinear, vocabulary, tags, and every diagnostics. get_stats and get_vocabulary together give an agent a reliable map of the whole domain, so there are no obvious dead ends.

Resources