> ## Documentation Index
> Fetch the complete documentation index at: https://corsair-feat-reconnect-error.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Overview

> Slack plugin for Corsair — messages, channels, reactions, and workspace events.

Use **Slack** through Corsair: one client, typed API calls, local DB sync, and incoming webhooks.

**What you get:**

* 45 typed API operations
* 5 synced entities (`channels`, `files`, `messages`, `userGroups`, `users`) for fast `.search()` / `.list()`
* 9 incoming webhook event types

## Setup

<Steps>
  <Step title="Install">
    <CodeGroup>
      ```bash npm theme={null}
      npm install corsair @corsair-dev/slack
      ```

      ```bash yarn theme={null}
      yarn add corsair @corsair-dev/slack
      ```

      ```bash pnpm theme={null}
      pnpm install corsair @corsair-dev/slack
      ```

      ```bash bun theme={null}
      bun add corsair @corsair-dev/slack
      ```
    </CodeGroup>
  </Step>

  <Step title="Add the plugin">
    ```ts corsair.ts theme={null}
    import Database from 'better-sqlite3';
    import { createCorsair } from 'corsair';
    import { slack } from '@corsair-dev/slack';

    export const corsair = createCorsair({
    	plugins: [
    		slack({
    			authType: 'managed',
    		}),
    	],
    	database: new Database('corsair.db'),
    	kek: process.env.CORSAIR_KEK!,
    	hub: {
    		projectApiKey: process.env.CORSAIR_DEV_API_KEY!,
    		signingSecret: process.env.CORSAIR_DEV_SIGNING_SECRET!,
    	},
    });
    ```

    Multi-tenancy is the default — scope calls with `corsair.withTenant(id)`. See [Quick start](/quick-start) for KEK + Hub keys, and [Multi-tenancy](/concepts/multi-tenancy) for account isolation.
  </Step>

  <Step title="Choose authentication">
    <Tabs>
      <Tab title="Managed OAuth (Recommended)">
        No setup required. Corsair hosts the OAuth app for **Slack** — your tenants connect through Hub when they sign in.

        Provider walkthrough: [Get Credentials](/plugins/slack/get-credentials).

        ```ts theme={null}
        slack({
        	authType: 'managed',
        })
        ```

        More: [Managed OAuth](/concepts/auth#managed)
      </Tab>

      <Tab title="API Key">
        No setup required yet. When you make your first request as a tenant, Corsair prompts for the API key.

        Provider walkthrough: [Get Credentials](/plugins/slack/get-credentials).

        ```ts theme={null}
        slack()
        ```

        More: [API Key](/concepts/api-key)
      </Tab>

      <Tab title="OAuth 2.0">
        Open [hub.corsair.dev](https://hub.corsair.dev/dashboard), navigate to your project, and enter the **client ID** and **client secret** from your Slack OAuth app.

        Provider walkthrough: [Get Credentials](/plugins/slack/get-credentials).

        ```ts theme={null}
        slack({
        	authType: 'oauth_2',
        })
        ```

        More: [OAuth 2.0](/concepts/oauth)
      </Tab>
    </Tabs>
  </Step>

  <Step title="Connect a tenant">
    Mint a connect link and send the tenant to it. Hub hosts the page and delivers the result to your app — see [Connect / OAuth](/management/connect).

    ```ts theme={null}
    const { connectUrl } = await corsair.manage.connect.createLink({
    	plugin: 'slack',
    	tenantId: 'acme',
    });
    // redirect the user's browser to connectUrl
    ```
  </Step>
</Steps>

## Example API calls

**List channels**

```ts theme={null}
const tenant = corsair.withTenant('acme');
await tenant.slack.api.channels.list({});
```

**Post a message**

```ts theme={null}
const tenant = corsair.withTenant('acme');
await tenant.slack.api.messages.post({ channel: 'C01234567', text: 'Hello from Corsair' });
```

See the full list on the [API](/plugins/slack/api) page.

## Query synced data

Search synced channels without hitting Slack's API.

```ts theme={null}
const tenant = corsair.withTenant('acme');
const rows = await tenant.slack.db.channels.search({
	data: { is_archived: false },
	limit: 50,
});
```

Synced entities: `channels`, `files`, `messages`, `userGroups`, `users`. See [Database](/plugins/slack/database) for filters and operators.

## Webhooks

React when someone posts in a channel — `messages.message` is the common entry point.

```ts theme={null}
slack({
    webhookHooks: {
        messages: {
            message: {
                after: async (ctx, result) => {
                    const text = result.data?.text;
                    console.log('Slack message:', text);
                }
            },
        },
    },
})
```

Mount your framework handler once (see [Frameworks](/frameworks/next)), then point the provider at that URL. Full event list: [Webhooks](/plugins/slack/webhooks). Concepts: [Webhooks](/concepts/webhooks), [Hooks](/concepts/hooks).

## What's next

<CardGroup cols={2}>
  <Card title="API reference" href="/plugins/slack/api">
    Every `slack.api.*` operation with input and output types.
  </Card>

  <Card title="Database" href="/plugins/slack/database">
    Synced entities, search filters, and operators.
  </Card>

  <Card title="Webhooks" href="/plugins/slack/webhooks">
    Event paths, payloads, and `webhookHooks` examples.
  </Card>

  <Card title="Connect / OAuth" href="/management/connect">
    createLink, Hub delivery, and tenant connect flows.
  </Card>

  <Card title="Use with agents" href="/mcp-adapters/mcp-adapters">
    Expose this plugin's operations as MCP tools.
  </Card>

  <Card title="Get credentials" href="/plugins/slack/get-credentials">
    Provider-console walkthrough for keys and OAuth apps.
  </Card>
</CardGroup>
