n8n_explore_node_resources
Resolve a node's dynamic dropdown options or resource-locator search results using an existing credential, returning real IDs for accurate workflow configuration.
Instructions
Resolve the real options behind a node's dynamic dropdown (loadOptions) or resource-locator search (listSearch) using one of the instance's credentials — Slack channels, Google Sheets tabs, model lists — so workflow configs use existing IDs instead of invented ones. Requires N8N_MCP_ACCESS_TOKEN. Find methodName/methodType in get_node output (dynamicOptions on a property) and the credentialId with n8n_manage_credentials list.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filter | No | Search text (listSearch only) | |
| version | Yes | Node typeVersion | |
| nodeType | Yes | Full node type, e.g. n8n-nodes-base.slack | |
| timeoutMs | No | Request timeout in ms (default 30000) | |
| methodName | Yes | loadOptionsMethod or searchListMethod name from the property definition | |
| methodType | Yes | ||
| credentialId | Yes | ID of an existing credential of that type | |
| credentialType | Yes | Credential type the node uses, e.g. slackApi | |
| paginationToken | No | Token from a previous page (listSearch only) | |
| currentNodeParameters | No | Parameters the method depends on (loadOptionsDependsOn), e.g. {documentId: {...}} |