# Slack Team Workspace MCP Server
> Package: `@modelcontextprotocol/server-slack`
> Tools Exposed: slack_list_channels, slack_post_message, slack_get_channel_history
> URL: https://agentnow.in/mcp/slack-mcp-server

## Description
Read channels, search messages, and post updates to Slack workspaces.

## Installation CLI
```bash
npx -y @modelcontextprotocol/server-slack
```

## Claude Desktop Configuration (claude_desktop_config.json)
```json
{
  "mcpServers": {
    "slack": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-slack"
      ],
      "env": {
        "SLACK_BOT_TOKEN": "xoxb-your-token",
        "SLACK_TEAM_ID": "T0123456"
      }
    }
  }
}
```

## Cursor Configuration (.cursor/mcp.json)
```json
{
  "mcpServers": {
    "slack": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-slack"
      ],
      "env": {
        "SLACK_BOT_TOKEN": "xoxb-your-token",
        "SLACK_TEAM_ID": "T0123456"
      }
    }
  }
}
```
