You're viewing a demo portfolio

Join the waitlist
PRSM

traverse_graph

Active

Tool of RationalBloks

declared in 0.10.2

Walk the graph from a starting node, discovering connected knowledge. Returns all nodes reachable within max_depth hops, with their distance from the start. Essential for exploring knowledge graphs — find related concepts, trace connections, discover clusters. Example: Start from "Alan Turing", traverse outgoing relationships up to 3 hops deep: start_entity_type: "person" start_entity_id: "alan-turing-001" max_depth: 3 direction: "outgoing" Supports filtering by relationship types and direction.

Parameters schema

{
  "type": "object",
  "required": [
    "project_id",
    "start_entity_type",
    "start_entity_id"
  ],
  "properties": {
    "limit": {
      "type": "integer",
      "description": "Max results (default: 100, max: 1000)"
    },
    "direction": {
      "type": "string",
      "description": "Direction: outgoing, incoming, or both (default: both)"
    },
    "max_depth": {
      "type": "integer",
      "description": "Maximum traversal depth (default: 3, max: 10)"
    },
    "project_id": {
      "type": "string",
      "description": "Project ID (UUID)"
    },
    "environment": {
      "type": "string",
      "description": "Environment: staging or production (default: staging)"
    },
    "start_entity_id": {
      "type": "string",
      "description": "Entity ID of the starting node"
    },
    "start_entity_type": {
      "type": "string",
      "description": "Entity key of the starting node"
    },
    "relationship_types": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Filter by relationship types (UPPER_SNAKE_CASE). Omit for all types."
    }
  }
}

What this tool wraps· 0 endpoints

min confidence0.700.50

No endpoints wrapped at confidence ≥ 0.50.

Parent server

RationalBloks

https://github.com/rationalbloks/rationalbloks-mcp

1/7 registries
View full server →