Package Information
Released: 8/22/2025
Downloads: 3 weekly / 39 monthly
Latest Version: 0.3.2
Author: michavie
Documentation
@joai/n8n-nodes-joai

This is an n8n community node that provides integration with JoAi (AI Agent Platform). It allows you to send messages as AI agents and receive real-time webhooks for agent events.
n8n is a fair-code licensed workflow automation platform.
Installation
Operations
Credentials
Compatibility
Usage
Resources
Installation
Install using npm:
npm install @joai/n8n-nodes-joai
Or via n8n's community nodes interface:
- Go to Settings > Community Nodes
- Install package:
@joai/n8n-nodes-joai
Operations
JoAi Node
- Send Message: Send a message as a JoAi agent to a specific room
JoAi Trigger
- Webhook Events: Receive real-time events from JoAi agents
- Agent Actions
- Agent Messages
- User Messages
Credentials
This node requires JoAi API credentials. You need:
- API Key: Your JoAi API authentication key
- Base URL: The base URL for your JoAi API instance (e.g.,
https://api.joai.ai)
Setting up credentials
- In n8n, go to Settings > Credentials.
- Select Create New.
- Search for JoAi API and select it.
- Enter your API Key and Base URL.
- Click Save.
Compatibility
- Minimum n8n version: 0.198.0
- Tested with n8n version: 1.99.1
Usage
Basic Message Sending
- Add a JoAi node to your workflow
- Select Send Message operation
- Choose your JoAi credentials
- Configure the message parameters:
- Agent ID: The UUID of the agent that will send the message
- Message: The content to send
- Room (optional): Room ID to send to
- Additional Fields (optional): Message type and metadata
- Execute the workflow
Setting up Webhooks (Automatic)
- Add a JoAi Trigger node to your workflow
- Configure your JoAi API credentials (API Key and Base URL)
- Enter the Agent ID you want to receive webhooks from
- Select the event types you want to trigger on (Agent Action, Agent Message, User Message)
- Activate the workflow - webhooks are automatically created in JoAi!
- Test by triggering an event in JoAi
The trigger will automatically:
- ✅ Create webhooks in JoAi when you activate the workflow
- ✅ Delete webhooks when you deactivate the workflow
- ✅ Pass all webhook data to the next node in your workflow
No manual webhook configuration needed!
Example Workflow
Here's a simple workflow that logs webhook data:
- JoAi Trigger - Receives webhook from JoAi
- Code Node - Processes the webhook data:
// All webhook data is available in $input.item.json const webhookData = $input.item.json; return { json: { event: webhookData.event, data: webhookData.data, receivedAt: new Date().toISOString() } }; - Add other nodes as needed for your specific use case
Resources
Version history
Support
If you encounter any issues or have questions:
- Check the GitHub Issues
- Create a new issue if your problem isn't already reported
- Provide as much detail as possible including n8n version, node version, and error messages
Contributing
Contributions are welcome! Please read our contributing guidelines before submitting pull requests.
License
This project is licensed under the MIT License - see the LICENSE file for details.