Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ai/slackbot-mcp-client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Read the [docs](https://docs.slack.dev/ai/slackbot-mcp-client) to explore more c
### Authentication methods

- **[Dynamic client registration](https://docs.slack.dev/ai/slackbot-mcp-client#dcr)**: Connect a remote MCP server to the Slackbot MCP client using Dynamic Client Registration (DCR). [Implementation](./dynamic-client-registration/).
- **[External auth](https://docs.slack.dev/ai/slackbot-mcp-client#manual-oauth)**: Connect a remote MCP server to the Slackbot MCP client with manual OAuth provider configuration. [Implementation](./external-auth/).
- **[Manual OAuth](https://docs.slack.dev/ai/slackbot-mcp-client#manual-oauth)**: Connect a remote MCP server to the Slackbot MCP client with an external auth provider. [Implementation](./manual-oauth/).
- **[No auth](https://docs.slack.dev/ai/slackbot-mcp-client#no-auth)**: Run an unauthenticated MCP server for the Slackbot MCP client. [Implementation](./no-auth/).
- **[Slack identity](https://docs.slack.dev/ai/slackbot-mcp-client#slack-identity)**: Run an MCP server for the Slackbot MCP client that authenticates against existing installations. [Implementation](./slack-identity/).

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# External Auth
# Manual OAuth

Connect a remote MCP server to the Slackbot MCP client with manual OAuth provider configuration.
Connect a remote MCP server to the Slackbot MCP client with an external auth provider.

## Setup

Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"display_information": {
"name": "MCP Client - External Auth",
"description": "Connects GitHub MCP server to Slackbot MCP client using an external auth provider"
"name": "MCP Client - Manual OAuth",
"description": "Connects GitHub MCP server to Slackbot MCP client using a manual OAuth provider"
},
"features": {
"bot_user": {
"display_name": "MCP Client - External Auth",
"display_name": "MCP Client - Manual OAuth",
"always_online": true
}
},
Expand Down
2 changes: 1 addition & 1 deletion ai/slackbot-mcp-client/slack-identity/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Run an MCP server for the Slackbot MCP client that authenticates against existin

```sh
$ ngrok http 3000 --host-header=rewrite
$ slack install --app local # Create a new app
$ slack install --environment local # Create a new app
$ slack app settings
$ slack env init # Update defaults
$ slack manifest # Validate fields
Expand Down