# gc_get_organization

> Get an organization

One organization's government-affairs profile: comment activity stats and stance split, active policy topics, lobbying summary (registrants/clients), federal award totals, and political-giving rollups. Money sections gate to the previous quarterly reporting period on free plans. Ids are org slugs from gc_search.

## Input

| Parameter | Type | Description |
| --- | --- | --- |
| idRequired | string | Organization slug (from gc_search). |

## Annotations

```
{
  "readOnlyHint": true,
  "idempotentHint": true,
  "openWorldHint": false
}
```

## Examples

### One organization profile

Comment stats plus lobbying, award, and political-giving sections with history pointers.

```
{
  "id": "acme-corp"
}
```

```
{
  "type": "organization",
  "id": "acme-corp",
  "name": "Acme Corp",
  "kind": "business",
  "is_lobbying_firm": false,
  "stats": {
    "comments": 0,
    "dockets": 0,
    "support": 0,
    "oppose": 0,
    "other": 0
  },
  "sections": {
    "topics": [],
    "lobbying": {
      "summary": null,
      "history_via": "gc_list_activity (scope: {type: \"organization\", id: \"acme-corp\"}, groups: [\"lobbying\"])"
    },
    "awards": {
      "summary": null,
      "history_via": "gc_list_activity (scope: {type: \"organization\", id: \"acme-corp\"}, groups: [\"awards\"])"
    },
    "political_giving": {
      "summary": null,
      "history_via": "gc_list_activity (scope: {type: \"organization\", id: \"acme-corp\"}, groups: [\"fec\"])"
    }
  },
  "followable": true,
  "source": "curated",
  "links": {
    "governmentcontext": "https://governmentcontext.com/org/acme-corp"
  }
}
```

---

Source: https://www.governmentcontext.com/docs/tools/gc_get_organization
Every Government Context docs page is available as Markdown: add `.md` to its URL.
Index of the docs, the guides, and every MCP tool: https://www.governmentcontext.com/llms.txt
