---
title: "Read organization"
description: "Get the active organization profile, fiscal identity, readiness, certificate status, global-invoice settings, SAT synchronization, and essential sales defaults."
language: en
canonical_url: "https://exac.mx/docs/en/mcp/tools/get_organization"
md_url: "https://exac.mx/docs/en/mcp/tools/get_organization.md"
---

# Read organization

Get the active organization profile, fiscal identity, readiness, certificate status, global-invoice settings, SAT synchronization, and essential sales defaults.

Tool: `get_organization`

## Purpose

Read organization identity, fiscal readiness, SAT synchronization, global invoicing, and essential sales defaults.

### Use when

You need organization context before another operation.

### Do not use when

You need to change organization settings.

| Detail | Value |
| --- | --- |
| Permissions | org:read |
| Side effects | None |
| Idempotency | Idempotent |

## Input schema

```json
{
  "type": "object",
  "properties": {},
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false
}
```

## Output schema

```json
{
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "properties": {
        "name": {
          "type": "string"
        },
        "timeZone": {
          "type": "string"
        },
        "fiscal": {
          "type": "object",
          "properties": {
            "legalName": {
              "$ref": "#/definitions/__schema0"
            },
            "rfc": {
              "$ref": "#/definitions/__schema0"
            },
            "taxSystem": {
              "$ref": "#/definitions/__schema0"
            },
            "rfcPersonType": {
              "$ref": "#/definitions/__schema0"
            },
            "usesBorderRegionStimulus": {
              "type": "boolean"
            },
            "website": {
              "$ref": "#/definitions/__schema0"
            },
            "phone": {
              "$ref": "#/definitions/__schema0"
            },
            "address": {
              "type": "object",
              "properties": {
                "street": {
                  "$ref": "#/definitions/__schema0"
                },
                "city": {
                  "$ref": "#/definitions/__schema0"
                },
                "state": {
                  "$ref": "#/definitions/__schema0"
                },
                "exterior": {
                  "$ref": "#/definitions/__schema0"
                },
                "interior": {
                  "$ref": "#/definitions/__schema0"
                },
                "neighborhood": {
                  "$ref": "#/definitions/__schema0"
                },
                "municipality": {
                  "$ref": "#/definitions/__schema0"
                },
                "postalCode": {
                  "type": "string"
                }
              },
              "required": [
                "postalCode"
              ],
              "additionalProperties": false
            }
          },
          "additionalProperties": false
        },
        "readiness": {
          "type": "object",
          "properties": {
            "production": {
              "type": "boolean"
            },
            "csd": {
              "type": "boolean"
            },
            "fiel": {
              "type": "boolean"
            }
          },
          "required": [
            "production",
            "csd",
            "fiel"
          ],
          "additionalProperties": false
        },
        "certificates": {
          "type": "object",
          "properties": {
            "csd": {
              "type": "object",
              "properties": {
                "configured": {
                  "type": "boolean"
                },
                "expiresAt": {
                  "$ref": "#/definitions/__schema0"
                },
                "serialNumber": {
                  "$ref": "#/definitions/__schema0"
                }
              },
              "required": [
                "configured"
              ],
              "additionalProperties": false
            },
            "fiel": {
              "type": "object",
              "properties": {
                "configured": {
                  "type": "boolean"
                },
                "expiresAt": {
                  "$ref": "#/definitions/__schema0"
                }
              },
              "required": [
                "configured"
              ],
              "additionalProperties": false
            }
          },
          "required": [
            "csd",
            "fiel"
          ],
          "additionalProperties": false
        },
        "globalInvoice": {
          "type": "object",
          "properties": {
            "enabled": {
              "type": "boolean"
            },
            "periodicity": {
              "$ref": "#/definitions/__schema0"
            },
            "eligibilityStartAt": {
              "allOf": [
                {
                  "$ref": "#/definitions/__schema1"
                }
              ]
            },
            "lastRunAt": {
              "allOf": [
                {
                  "$ref": "#/definitions/__schema1"
                }
              ]
            }
          },
          "required": [
            "enabled"
          ],
          "additionalProperties": false
        },
        "automation": {
          "type": "object",
          "properties": {
            "cfdiSyncEnabled": {
              "type": "boolean"
            },
            "declarationSyncEnabled": {
              "type": "boolean"
            }
          },
          "required": [
            "cfdiSyncEnabled",
            "declarationSyncEnabled"
          ],
          "additionalProperties": false
        },
        "portal": {
          "type": "object",
          "properties": {
            "allowedCfdiUses": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "receiptExpirationDays": {
              "type": "number"
            },
            "receiptLocationRequired": {
              "type": "boolean"
            }
          },
          "required": [
            "receiptLocationRequired"
          ],
          "additionalProperties": false
        }
      },
      "required": [
        "name",
        "timeZone",
        "fiscal",
        "readiness",
        "certificates",
        "globalInvoice",
        "automation",
        "portal"
      ],
      "additionalProperties": false
    },
    "error": {
      "$schema": "http://json-schema.org/draft-07/schema#",
      "type": "object",
      "properties": {
        "code": {
          "type": "string",
          "enum": [
            "validation_error",
            "unauthenticated",
            "forbidden",
            "not_found",
            "method_not_allowed",
            "conflict",
            "idempotency_conflict",
            "operation_in_progress",
            "recovery_required",
            "rate_limited",
            "provider_unavailable",
            "internal"
          ]
        },
        "message": {
          "type": "string"
        },
        "details": {
          "type": "object",
          "properties": {
            "issues": {
              "type": "array",
              "items": {
                "type": "object",
                "properties": {
                  "path": {
                    "type": "array",
                    "items": {
                      "anyOf": [
                        {
                          "type": "string"
                        },
                        {
                          "type": "number"
                        }
                      ]
                    }
                  },
                  "message": {
                    "type": "string"
                  },
                  "code": {
                    "type": "string"
                  }
                },
                "required": [
                  "path",
                  "message"
                ],
                "additionalProperties": false
              }
            },
            "retryable": {
              "type": "boolean"
            },
            "retryAfterSeconds": {
              "type": "integer",
              "exclusiveMinimum": 0,
              "maximum": 9007199254740991
            }
          },
          "additionalProperties": false
        }
      },
      "required": [
        "code",
        "message"
      ],
      "additionalProperties": false
    }
  },
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "definitions": {
    "__schema0": {
      "type": "string"
    },
    "__schema1": {
      "type": "string",
      "format": "date-time"
    }
  },
  "oneOf": [
    {
      "required": [
        "data"
      ]
    },
    {
      "required": [
        "error"
      ]
    }
  ]
}
```

## Related tools

- [`update_organization`](/docs/en/mcp/tools/update_organization.md) — **Update organization**: Update one coherent organization settings section: profile, fiscal identity, essential sales defaults, automatic global invoice, or SAT synchronization. Read get_organization first.

- [`get_configuration`](/docs/en/mcp/tools/get_configuration.md) — **Read configuration**: Search organization configuration or retrieve one location, expense category, or custom receipt field.

## Related workflow

[See the canonical workflows in the introduction](/docs/en.md)

## Equivalent REST operations

- [`GET /v1/organization`](/docs/en/api/workspace/organization/get-organization.md)

Complete documentation: https://exac.mx/docs/en.md
Agent documentation index: https://exac.mx/docs/en/llms.txt
