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

# Accounts and organizations

> Organization, memberships, teams, and labels

The MCP server exposes everything you need to introspect the organization behind the OAuth token: who the members are, how teams are structured, what labels are used to categorise transactions, and which bank accounts the organization holds.

## Organization

| Tool               | What it does                                                                                                                                                                                           | Upstream                                                                                                                                                                   |
| ------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `get_organization` | Returns the authenticated organization (id, slug, legal name, locale, country) and its bank accounts (id, IBAN, BIC, currency, balance, status, main flag). Use the `slug` for any tool that needs it. | [Retrieve the authenticated organization](/api-reference/business-api/accounts-organizations/organizations/retrieve-the-authenticated-organization-and-list-bank-accounts) |

**Try it**

> What organizations am I connected to, and what is my main account IBAN?

## Memberships

| Tool                           | What it does                                                                                                                                | Upstream                                                                                                                                      |
| ------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- |
| `list_memberships`             | List members of the organization (role, optional team id, country, birthdate, nationality), paginated.                                      | [List memberships](/api-reference/business-api/accounts-organizations/memberships/list-memberships)                                           |
| `get_authenticated_membership` | Returns the "me" view, the membership behind the current OAuth token.                                                                       | [Retrieve the authenticated membership](/api-reference/business-api/accounts-organizations/memberships/retrieve-the-authenticated-membership) |
| `create_membership`            | Invite a new member as `employee` or `reporting`. Sends the activation email. A team id is required even though the spec marks it optional. | [Create a membership](/api-reference/business-api/accounts-organizations/memberships/create-a-membership)                                     |

**Try it**

> Who is on the finance team?
>
> Invite [jane@example.com](mailto:jane@example.com) as a reporting member of the finance team.

## Teams

| Tool          | What it does                                           | Upstream                                                                                |
| ------------- | ------------------------------------------------------ | --------------------------------------------------------------------------------------- |
| `list_teams`  | Paginated list of the organization's teams (id, name). | [List teams](/api-reference/business-api/accounts-organizations/teams/list-teams)       |
| `create_team` | Create a new team.                                     | [Create a team](/api-reference/business-api/accounts-organizations/teams/create-a-team) |

**Try it**

> Create a "Customer Success" team.

## Labels

| Tool          | What it does                                                                                          | Upstream                                                                                       |
| ------------- | ----------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- |
| `list_labels` | List transaction labels (custom categorisation tags). Labels nest one level deep through `parent_id`. | [List labels](/api-reference/business-api/accounts-organizations/labels/list-labels)           |
| `get_label`   | Fetch one label by UUID.                                                                              | [Retrieve a label](/api-reference/business-api/accounts-organizations/labels/retrieve-a-label) |

**Try it**

> Show me my label tree.
