list_organizations

List the organizations the authenticated user can access.

Lists organizations you can access, as minimal rows: id, name, slug, and your role. Read-only.

This is the source of truth for organizationId, which every other tool in this server requires; call it first in any session.

Parameters

None.

Returns

{
  "organizations": [
    { "id": "...", "name": "Acme", "slug": "acme", "role": "owner" }
  ]
}

On this page