# Connectors CLI

Use `provon connectors` to manage project connector integrations used for Finding handoff and other
external workflows.

These commands require a project-scoped credential.

## List Connectors

```bash
provon connectors list
```

## Configure A Connector

```bash
provon connectors update github --enabled --config-file ./github-config.json --secret "$GITHUB_TOKEN"
```

The connector kind determines the required config shape. Common kinds include:

```text
slack, microsoft-teams, lark, notion, larkbase, monday, airtable, github, gitlab, linear, jira,
huggingface
```

Without `--config-file`, the command uses an empty default config for the connector kind. Use
`--enabled` to enable the connector or `--disabled` to disable it.

## Delete A Connector

```bash
provon connectors delete github
```

## Related Docs

- [Findings connectors](../findings/connectors.md)
- [Findings CLI](./findings.md)
