Describe the problem/error/question
Whenever I add the Google Calendar tool to an AI agent, workflow executions throw an error once they reach a code block which uses the node module cheerio.
What is the error message (if any)?
Unrecognized node type: n8n-nodes-base.googleCalendarTool
Please share your workflow
This is the n8n server part of my docker-compose.yml file:
```yaml
x-n8n: &service-n8n
image: n8nio/n8n:1.107.2
environment:
- DB_POSTGRESDB_HOST=n8n-postgres
- DB_POSTGRESDB_PASSWORD=${POSTGRES_PASSWORD}
- DB_POSTGRESDB_USER=${POSTGRES_USER}
- DB_TYPE=postgresdb
- GENERIC_TIMEZONE=Europe/Vienna
- N8N_DIAGNOSTICS_ENABLED=false
- N8N_ENCRYPTION_KEY=${N8N_ENCRYPTION_KEY}
- N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS=true
- N8N_LICENSE_ACTIVATION_KEY=${N8N_LICENSE_ACTIVATION_KEY}
- N8N_HOST=n8n.example.com
- N8N_PORT=5678
- N8N_PROTOCOL=https
- N8N_RUNNERS_ENABLED=false # if true, it throws the \`Unrecognized node type: n8n-nodes-base.googleCalendarTool\` error
- N8N_SECURE_COOKIE=true
- N8N_USER_MANAGEMENT_JWT_SECRET=${N8N_USER_MANAGEMENT_JWT_SECRET}
- NODE_ENV=production
- NODE_FUNCTION_ALLOW_EXTERNAL=cheerio,lodash
- N8N_REINSTALL_MISSING_PACKAGES=true
- WEBHOOK_URL=https://n8n.example.com
```
Share the output returned by the last node
Information on your n8n setup
- n8n version: 1.107.2
- Database (default: SQLite): Postgres
- n8n EXECUTIONS_PROCESS setting (default: own, main):
- Running n8n via (Docker, npm, n8n cloud, desktop app): Docker
- Operating system: macos