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

# Get Plugin Registry • AI Agent SDK

> get_plugin_registry: Return a truthful, unified view of all discoverable plugins.

# get\_plugin\_registry

<div className="flex items-center gap-2">
  <Badge color="teal">Function</Badge>
</div>

> This function is defined in the [**plugins**](../modules/plugins) module.

Return a truthful, unified view of all discoverable plugins.

Combines three real sources — no hardcoded/fake entries:

* Entry-point plugins (installed pip packages registering in the
  `praisonai.plugins` group), reported with their `source` as their
  distribution/entry-point provenance.
* Registered `Plugin` instances held by the :class:`PluginManager`.
* Project/user single-file plugins discovered on disk (`.praisonai/plugins`
  and `~/.praisonai/plugins`), reported without executing them.

Each entry is a dict with `name`, `version`, `source`
(`entry_point` | `registered` | `single_file`), `enabled` state,
`hooks` and `description`. Enabled state reflects both the live manager
and the persisted config allow-list, so a truthful CLI can render it
without a running agent.

## Signature

```python theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
def get_plugin_registry() -> list
```

### Returns

<ResponseField name="Returns" type="list">
  List of plugin entry dicts.
</ResponseField>

## Uses

* `get_plugin_manager`
* `get_enabled_plugins`
* `manager.is_enabled`
* `manager.list_plugins`
* `seen.add`
* `_md.entry_points`
* `debug`
* `logging.getLogger`
* `discover_plugins`

## Source

<Card title="View on GitHub" icon="github" href="https://github.com/MervinPraison/PraisonAI/blob/main/src/praisonai-agents/praisonaiagents/plugins/__init__.py#L308">
  `praisonaiagents/plugins/__init__.py` at line 308
</Card>

***

## Related Documentation

<CardGroup cols={2}>
  <Card title="Plugins Feature" icon="plug" href="/docs/docs/features/plugins" />
</CardGroup>
