Overview
Unified node information tool with progressive detail levels and multiple operation modes. Get node schemas, readable documentation, search for specific properties, or check version history. Performance: Instant (< 10ms) for minimal/standard, moderate for fullParameters
Full node type with prefix.Examples:
"nodes-base.httpRequest""nodes-base.slack""nodes-langchain.agent"
Information detail level (applies to
mode="info" only).Operation mode.
Include type structure metadata (type category, JS type, validation rules).Only applies to
mode="info". Adds ~80-120 tokens per property.Include real-world configuration examples from templates.Only applies to
mode="info" with detail="standard". Adds ~200-400 tokens per example.Search term to find properties (for
mode="search_properties")Examples:"auth"- Find authentication properties"header"- Find header-related properties"body"- Find body configuration properties
Maximum results for
mode="search_properties"Source version for compare/breaking/migrations modes.Example:
"1.0", "2.5"Target version for compare mode. Defaults to latest if omitted.Example:
"2.0", "3.1"Response
Response structure depends on themode parameter:
mode=“info”
Full node type identifier
Node type to use in workflow JSON (may differ from nodeType for versioned nodes)
Human-readable node name
Node description
Node category
Node properties (varies by detail level)
Available operations (for resource-based nodes)
Required credential types
Version information
mode=“docs”
Markdown-formatted documentation with examples and patterns
mode=“search_properties”
Array of matching property paths with descriptions
mode=“versions”
List of all available versions with metadata
Latest available version
Whether any version has breaking changes
Examples
Response Example (Standard Detail)
Use Cases
- Configure nodes for workflow building: Use
detail="standard"to get essential properties - Find specific configuration options: Use
mode="search_properties"to search within a node - Get human-readable documentation: Use
mode="docs"for markdown documentation - Check for breaking changes: Use
mode="breaking"before version upgrades - Understand complex types: Use
includeTypeInfo=truefor filter, resourceMapper nodes
Best Practices
Start with detail='standard'
Start with detail='standard'
Standard detail covers 95% of use cases and provides all essential properties.
Only use full detail when necessary
Only use full detail when necessary
Full detail returns large responses (~100KB). Only use when standard is missing required properties.
Use mode='docs' for explanations
Use mode='docs' for explanations
When explaining nodes to users, use docs mode for readable markdown.
Check version history for versioned nodes
Check version history for versioned nodes
Before configuring versioned nodes, check version history to understand changes.
Common Pitfalls
Token Cost by Detail Level
| Detail Level | Token Cost | Use Case |
|---|---|---|
| minimal | ~200 tokens | Quick metadata check |
| standard | ~1000-2000 tokens | Configuration (recommended) |
| full | ~3000-8000 tokens | Complete schema |
| +includeTypeInfo | +80-120 per property | Complex type validation |
| +includeExamples | +200-400 per example | Real-world examples |
| Version modes | ~400-1200 tokens | Version comparison |
Related Tools
search_nodes
Search for nodes first
validate_node
Validate configurations
validate_workflow
Validate complete workflows