get_node_documentation
Retrieve detailed node documentation with examples, authentication details, and usage patterns for n8n workflow automation. Input the full node type to access structured, actionable guidance.
Instructions
Get readable docs with examples/auth/patterns. Better than raw schema! 87% coverage. Format: "nodes-base.slack"
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| nodeType | Yes | Full type with prefix: "nodes-base.slack" |
Implementation Reference
- src/mcp-tools-engine.ts:47-50 (handler)The main handler function for the get_node_documentation tool. It fetches the node by type from the repository and returns its documentation field or null if not found.async getNodeDocumentation(args: any) { const node = await this.repository.getNodeByType(args.nodeType); return node?.documentation || null; }
- src/mcp/tools-n8n-friendly.ts:36-36 (helper)Documentation comment indicating that get_node now replaces get_node_documentation among other tools.// Consolidated node info tool (replaces get_node_info, get_node_essentials, get_node_documentation, search_node_properties)
- scripts/migrate-tool-docs.ts:18-18 (registration)Listed as a configuration tool in migration script for tool documentation structure.'get_node_documentation',