Skip to main content
Glama
DataCraftsmanAU

DataCraftsmanAU/vineverse-mcp

Get a graph neighbourhood

get_graph_neighborhood
Read-onlyIdempotent

Return all connected nodes, edges, and predicates within a configurable hop depth. Filter by type or predicate to answer what passages, people, places, or themes link to a node.

Instructions

Everything within N hops of a document, WITH the edges that connect them and the predicate on each. Useful for asking what a passage, person or theme is connected to without fetching each document.

Filter with type to ask a shaped question — the places near an event, the people in an epoch — and with predicate to keep only one kind of edge. Depth 1 is direct links; depth 3 gets large quickly and is capped. See get_vocabulary for what each predicate means.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYesDocument path, e.g. "people/david" or "themes/faith"
typeNoKeep only neighbours of this type: Person, Place, Theme, Lexeme, Commandment, Event, Epoch, Book, Chapter, Source, Dataset, Relation Vocabulary.
depthNoHow many hops out from the starting document. Defaults to 1. Capped at 3 — the graph fans out fast.
limitNoCap on nodes returned. Defaults to 200, capped at 600. The response sets `truncated` when it bites.
predicateNoKeep only edges with this predicate, e.g. "develops".

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
noteNo
rootYes
countYes
depthYes
edgesYes
nodesYes
licenceNo
edgeCountYes
truncatedYes
Behavior4/5

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

Annotations already declare the operation read-only, idempotent, and non-destructive; the description goes beyond these by explaining that the response includes edges and predicates, not just nodes. It also warns about the cost of deeper traversal ('depth 3 gets large quickly and is capped') and points to get_vocabulary for predicate semantics, which is useful operational context.

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?

Three concise sentences, each carrying useful information: the main function, the filtering techniques, and the expectations about depth. No filler or redundant wording; the formatting with occasional capitals is minor.

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?

Without being verbose, the description covers all critical context an agent needs to make a correct invocation: what is returned, how to filter, how depth affects cost, and where to look up predicate meanings. The output schema and comprehensiveness annotation cover the remaining details, so nothing essential 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?

Since the schema has 100% parameter description coverage, the baseline is 3, but the description adds meaningful semantic depth: type is used to 'ask a shaped question,' predicate narrows the graph to one kind of edge, and depth is contextualized as ranging from direct links to a fast-fan-out cap. These are real interpretation gains beyond the schema's literal field descriptions.

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 explicitly defines the tool as returning everything within N hops of a document along with the connecting edges and their predicates. It clearly states the resource (graph neighborhood) and the action (get/traverse), making the tool’s behavior distinct from simple document fetches or direct-connection lookups.

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 practical context for when to use the tool: asking what a passage, person, or theme is connected to without fetching each document. It explains how filtering by type and predicate can shape the query and warns about frontier growth, but it does not explicitly name or contrast siblings like get_connections or get_family, so the guidance is not exhaustive.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/DataCraftsmanAU/vineverse-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server