> ## Documentation Index
> Fetch the complete documentation index at: https://docs.wcr.is/llms.txt
> Use this file to discover all available pages before exploring further.

# Integrations overview

> Connect WeCareRemote to n8n for workflow automation and NocoDB for structured data — extending the platform without writing custom backends.

WeCareRemote is designed to plug into the rest of your operational stack. Two integrations are central to most deployments:

* **[n8n](/integrations/n8n)** — workflow automation that connects WeCareRemote events (new conversations, completed meetings, recordings) to email, Slack, spreadsheets, CRMs, and hundreds of other services.
* **[NocoDB](/integrations/nocodb)** — a spreadsheet-style database that NGO staff use to manage cases, resources, and structured data, with API access for the AI assistant and other services.

Together, n8n and NocoDB cover most of the "glue" you need around the core platform: NocoDB stores structured records that the AI assistant and blog can read, and n8n moves data between WeCareRemote, NocoDB, and the outside world.

## How they fit together

A typical pattern looks like this:

<Steps>
  <Step title="Refugee sends a message">
    A refugee chats with the AI assistant. The conversation is captured in WeCareRemote.
  </Step>

  <Step title="n8n picks up the event">
    An n8n workflow listens for new conversations or meeting recordings via webhook or polling.
  </Step>

  <Step title="Data lands in NocoDB">
    n8n writes a structured row to NocoDB — case ID, refugee, topic, NGO assigned, status.
  </Step>

  <Step title="NGO staff work the case">
    Caseworkers update the NocoDB row from the NocoDB UI. Status changes trigger follow-up n8n workflows (notifications, emails, recording archival).
  </Step>

  <Step title="AI assistant reads back">
    When the refugee returns, the AI assistant can reference connected NocoDB content to give an up-to-date answer about their case.
  </Step>
</Steps>

<CardGroup cols={2}>
  <Card title="n8n integration" icon="diagram-project" href="/integrations/n8n">
    Connect WeCareRemote events to automated workflows across hundreds of services.
  </Card>

  <Card title="NocoDB integration" icon="table" href="/integrations/nocodb">
    Store and manage structured data with a spreadsheet UI and REST API.
  </Card>
</CardGroup>
