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

# Using Cognite Toolkit plugins

> Plugins add extra functionality to interact with Cognite Data Fusion including run, pull, and dump capabilities.

<CardGroup cols={4}>
  <Card title="Run plugin" icon="play" href="/cdf/deploy/cdf_toolkit/guides/plugins/run_plugin">
    Run Cognite Functions locally and live.
  </Card>

  <Card title="Pull plugin" icon="download" href="/cdf/deploy/cdf_toolkit/guides/plugins/pull_plugin">
    Download a governed configuration created or updated in the CDF application, to your local machine.
  </Card>

  <Card title="Dump plugin" icon="file-down" href="/cdf/deploy/cdf_toolkit/guides/plugins/dump_plugin">
    Download the configuration of a CDF resource to your local machine.
  </Card>

  <Card title="Data plugin" icon="database" href="/cdf/deploy/cdf_toolkit/guides/plugins/data_plugin/index">
    Download, upload, and delete data in Cognite Data Fusion.
  </Card>
</CardGroup>

<Note>
  Plugins are only supported for Cognite Toolkit **version 0.3.0** and later.
</Note>

## Enable and disable plugins

To enable or disable plugins, edit your `cdf.toml` file. This example enables the `run` and `dump` plugins, and disables the `pull` plugin:

```toml theme={"languages":{"custom":["/_languages/kuiper.json","../_languages/kuiper.json"]}}
...

[plugins]
run = true
dump = true
pull = false

...
```
