| Name | slack-mcp JSON |
| Version |
0.1.0
JSON |
| download |
| home_page | None |
| Summary | 🦾 A strong MCP server for Slack. |
| upload_time | 2025-11-04 07:06:30 |
| maintainer | None |
| docs_url | None |
| author | None |
| requires_python | <3.14,>=3.12 |
| license | MIT License Copyright (c) 2025 Bryant Liu Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| keywords |
mcp
mcp-server
slack
slack-mcp
slack-mcp-server
|
| VCS |
 |
| bugtrack_url |
|
| requirements |
No requirements were recorded.
|
| Travis-CI |
No Travis.
|
| coveralls test coverage |
|
<h1 align="center">
Slack MCP Server
</h1>
<p align="center">
<a href="https://pypi.org/project/slack-mcp">
<img src="https://img.shields.io/pypi/v/slack-mcp?color=%23099cec&label=PyPI&logo=pypi&logoColor=white" alt="PyPI package version">
</a>
<a href="https://github.com/Chisanan232/slack-mcp-server/releases">
<img src="https://img.shields.io/github/release/Chisanan232/slack-mcp-server.svg?label=Release&logo=github" alt="GitHub release version">
</a>
<a href="https://github.com/Chisanan232/slack-mcp-server/actions/workflows/ci.yaml">
<img src="https://github.com/Chisanan232/slack-mcp-server/actions/workflows/ci.yaml/badge.svg" alt="CI/CD status">
</a>
<a href="https://codecov.io/gh/Chisanan232/slack-mcp-server" >
<img src="https://codecov.io/gh/Chisanan232/slack-mcp-server/graph/badge.svg?token=VVZ0cGPVvp"/>
</a>
<a href="https://results.pre-commit.ci/latest/github/Chisanan232/slack-mcp-server/master">
<img src="https://results.pre-commit.ci/badge/github/Chisanan232/slack-mcp-server/master.svg" alt="Pre-Commit building state">
</a>
<a href="https://sonarcloud.io/summary/new_code?id=Chisanan232_slack-mcp-server">
<img src="https://sonarcloud.io/api/project_badges/measure?project=Chisanan232_slack-mcp-server&metric=alert_status" alt="Code quality level">
</a>
<a href="https://chisanan232.github.io/slack-mcp-server/">
<img src="https://github.com/Chisanan232/slack-mcp-server/actions/workflows/documentation.yaml/badge.svg" alt="documentation CI status">
</a>
<a href="https://opensource.org/licenses/MIT">
<img src="https://img.shields.io/badge/License-MIT-yellow.svg" alt="Software license">
</a>
</p>
<img align="center" src="https://raw.githubusercontent.com/Chisanan232/slack-mcp-server/refs/heads/master/docs/static/img/slack_mcp_server_logo.png" alt="slack-mcp-server logo" />
## Overview
🦾 **A strong MCP (Model Context Protocol) server for Slack integration**, providing standardized access to Slack's API features through both MCP tools and webhook processing.
**Key Features:**
- 🤖 **MCP Server**: Provides 6 essential Slack tools for AI assistants and clients
- 🪝 **Webhook Server**: Processes real-time Slack events with secure verification
- 🔗 **Integrated Mode**: Combined MCP + webhook server for complete Slack platform integration
- 🚀 **Multiple Transports**: Supports stdio, SSE, and HTTP streaming protocols
- 📦 **Easy Deployment**: Docker, Kubernetes, and cloud platform ready
[//]: # (- 🛡️ **Enterprise Security**: HMAC-SHA256 verification, token management, and comprehensive logging)
**Use Cases:**
- Building AI assistants with Slack integration
- Creating custom automation tools for Slack workflows
- Developing real-time Slack applications with event processing
- Integrating Slack with other tools and platforms
## Python versions support
[](https://pypi.org/project/slack-mcp)
**slack-mcp-server** supports Python 3.12+ for optimal performance and modern language features.
## Quickly Start
### Installation
Choose your preferred installation method:
#### Using pip
```bash
# Minimal base (protocol only)
pip install slack-mcp
# MCP server feature set
pip install "slack-mcp[mcp]"
# Webhook server feature set
pip install "slack-mcp[webhook]"
# Everything
pip install "slack-mcp[all]"
```
#### Using uv (recommended)
```bash
# Minimal base
uv add slack-mcp
# MCP server / Webhook / All
uv add "slack-mcp[mcp]"
uv add "slack-mcp[webhook]"
uv add "slack-mcp[all]"
```
#### Using poetry
```bash
# Minimal base
poetry add slack-mcp
# MCP server / Webhook / All
poetry add slack-mcp -E mcp
poetry add slack-mcp -E webhook
poetry add slack-mcp -E all
```
> Note: Installation extras
> - [mcp]: Installs the MCP server feature set (SSE/Streamable transports; not the integrated webhook mode)
> - [webhook]: Installs FastAPI/Uvicorn and related parts for Slack webhook handling (not the integrated mode)
> - [all]: Installs everything in this project
> - Base (no extra): Minimal install with only the base protocol rules of this project
### Basic Usage
#### 1. Set Up Environment Variables
```bash
# Required: Slack bot token
export SLACK_BOT_TOKEN="xoxb-your-bot-token-here"
# Optional: For webhook server
export SLACK_SIGNING_SECRET="your-signing-secret"
```
#### 2. Start MCP Server (Standalone)
```bash
# Start with stdio transport (default)
slack-mcp-server
# Start with SSE transport for web clients
slack-mcp-server --transport sse --host 0.0.0.0 --port 3001
```
#### 3. Start Webhook Server (Standalone)
```bash
# Start standalone webhook server
slack-webhook-server --host 0.0.0.0 --port 3000
```
#### 4. Start Integrated Server (MCP + Webhook)
```bash
# Combined server with both MCP and webhook functionality
slack-mcp-server --integrated --transport sse --port 8000
```
### Available MCP Tools
| Tool | Description | Usage |
|-------------------------------|------------------------------|-----------------------------|
| `slack_post_message` | Send messages to channels | Post notifications, updates |
| `slack_read_channel_messages` | Read channel message history | Analyze conversations |
| `slack_read_thread_messages` | Read thread replies | Follow discussions |
| `slack_thread_reply` | Reply to message threads | Engage in conversations |
| `slack_read_emojis` | Get workspace emojis | Access custom reactions |
| `slack_add_reactions` | Add emoji reactions | React to messages |
### Docker Quick Start
```bash
# Pull and run with environment variables
docker run -p 3000:3000 \
-e SLACK_BOT_TOKEN="xoxb-your-token" \
-e SLACK_SIGNING_SECRET="your-secret" \
chisanan232/slack-mcp-server:latest
```
## Documentation
Comprehensive documentation is available at **[https://chisanan232.github.io/slack-mcp-server/](https://chisanan232.github.io/slack-mcp-server/)**
### Documentation Sections
- 📖 **[User Guide](https://chisanan232.github.io/slack-mcp-server/docs/next/introduction)** - Installation, configuration, and usage
- 🛠️ **[Developer Guide](https://chisanan232.github.io/slack-mcp-server/dev/next)** - Contributing, architecture, and development workflow
- 🏗️ **[API Reference](https://chisanan232.github.io/slack-mcp-server/docs/next/server-references/)** - Complete CLI and configuration reference
- 🚀 **[Deployment Guide](https://chisanan232.github.io/slack-mcp-server/docs/next/server-references/deployment-guide)** - Production deployment patterns
### Quick Links
- [Requirements](https://chisanan232.github.io/slack-mcp-server/docs/next/quick-start/requirements)
- [Installation Guide](https://chisanan232.github.io/slack-mcp-server/docs/next/quick-start/installation)
- [Server Modes](https://chisanan232.github.io/slack-mcp-server/docs/next/server-references/mcp-server/server-modes)
- [Environment Configuration](https://chisanan232.github.io/slack-mcp-server/docs/next/server-references/environment-configuration)
- [CI/CD Workflows](https://chisanan232.github.io/slack-mcp-server/dev/next/ci-cd/)
## Coding style and following rules
**slack-mcp-server** follows coding styles **black** and **PyLint** to control code quality, with additional tools for comprehensive code analysis.
[](https://github.com/psf/black)
[](https://github.com/pylint-dev/pylint)
[](https://pycqa.github.io/isort/)
[](http://mypy-lang.org/)
### Code Quality Tools
- **Black**: Consistent code formatting
- **PyLint**: Code analysis and style checking
- **MyPy**: Static type checking
- **isort**: Import sorting and organization
- **Pre-commit**: Automated code quality checks
### Development Workflow
```bash
# Install development dependencies
uv sync --dev
# Run code quality checks
uv run pre-commit run --all-files
# Run tests
uv run pytest
```
## Downloading state
Current download statistics for **slack-mcp** package:
[](https://pepy.tech/project/slack-mcp)
[](https://pepy.tech/project/slack-mcp)
[](https://pepy.tech/project/slack-mcp)
### Container Downloads
[](https://hub.docker.com/r/chisanan232/slack-mcp-server)
## Contributing
We welcome contributions! Please see our [Contributing Guide](https://chisanan232.github.io/slack-mcp-server/docs/next/contribute) for details.
### Quick Contribution Steps
1. **[Report Issues](https://chisanan232.github.io/slack-mcp-server/docs/next/contribute/report-bug)** - Found a bug? Let us know!
2. **[Request Features](https://chisanan232.github.io/slack-mcp-server/docs/next/contribute/request-changes)** - Have ideas? We'd love to hear them!
3. **[Join Discussions](https://chisanan232.github.io/slack-mcp-server/docs/next/contribute/discuss)** - Connect with the community
4. **[Development Setup](https://chisanan232.github.io/slack-mcp-server/dev/next/workflow)** - Start contributing code
### Extend with Custom Queue Backend Plugins
Want to add support for additional message queue systems? Create custom queue backend plugins using our template:
**[Slack MCP Server Backend MQ Template](https://github.com/Chisanan232/Slack-MCP-Server-Backend-MQ-Template)** - Quick-start template for developing queue backend plugins
- Complete project structure with best practices
- Pre-configured CI/CD workflows
- Comprehensive documentation
📚 **Documentation**: [https://chisanan232.github.io/Slack-MCP-Server-Backend-MQ-Template/](https://chisanan232.github.io/Slack-MCP-Server-Backend-MQ-Template/)
## License
[MIT License](./LICENSE)
Raw data
{
"_id": null,
"home_page": null,
"name": "slack-mcp",
"maintainer": null,
"docs_url": null,
"requires_python": "<3.14,>=3.12",
"maintainer_email": null,
"keywords": "mcp, mcp-server, slack, slack-mcp, slack-mcp-server",
"author": null,
"author_email": "Chisanan232 <chi10211201@cycu.org.tw>",
"download_url": "https://files.pythonhosted.org/packages/83/70/a943cd3741354842f6d36d54f0f4b9a9dd4a7f17252fb792246b344fba19/slack_mcp-0.1.0.tar.gz",
"platform": null,
"description": "<h1 align=\"center\">\n Slack MCP Server\n</h1>\n\n<p align=\"center\">\n <a href=\"https://pypi.org/project/slack-mcp\">\n <img src=\"https://img.shields.io/pypi/v/slack-mcp?color=%23099cec&label=PyPI&logo=pypi&logoColor=white\" alt=\"PyPI package version\">\n </a>\n <a href=\"https://github.com/Chisanan232/slack-mcp-server/releases\">\n <img src=\"https://img.shields.io/github/release/Chisanan232/slack-mcp-server.svg?label=Release&logo=github\" alt=\"GitHub release version\">\n </a>\n <a href=\"https://github.com/Chisanan232/slack-mcp-server/actions/workflows/ci.yaml\">\n <img src=\"https://github.com/Chisanan232/slack-mcp-server/actions/workflows/ci.yaml/badge.svg\" alt=\"CI/CD status\">\n </a>\n <a href=\"https://codecov.io/gh/Chisanan232/slack-mcp-server\" >\n <img src=\"https://codecov.io/gh/Chisanan232/slack-mcp-server/graph/badge.svg?token=VVZ0cGPVvp\"/>\n </a>\n <a href=\"https://results.pre-commit.ci/latest/github/Chisanan232/slack-mcp-server/master\">\n <img src=\"https://results.pre-commit.ci/badge/github/Chisanan232/slack-mcp-server/master.svg\" alt=\"Pre-Commit building state\">\n </a>\n <a href=\"https://sonarcloud.io/summary/new_code?id=Chisanan232_slack-mcp-server\">\n <img src=\"https://sonarcloud.io/api/project_badges/measure?project=Chisanan232_slack-mcp-server&metric=alert_status\" alt=\"Code quality level\">\n </a>\n <a href=\"https://chisanan232.github.io/slack-mcp-server/\">\n <img src=\"https://github.com/Chisanan232/slack-mcp-server/actions/workflows/documentation.yaml/badge.svg\" alt=\"documentation CI status\">\n </a>\n <a href=\"https://opensource.org/licenses/MIT\">\n <img src=\"https://img.shields.io/badge/License-MIT-yellow.svg\" alt=\"Software license\">\n </a>\n\n</p>\n\n<img align=\"center\" src=\"https://raw.githubusercontent.com/Chisanan232/slack-mcp-server/refs/heads/master/docs/static/img/slack_mcp_server_logo.png\" alt=\"slack-mcp-server logo\" />\n\n## Overview\n\n\ud83e\uddbe **A strong MCP (Model Context Protocol) server for Slack integration**, providing standardized access to Slack's API features through both MCP tools and webhook processing.\n\n**Key Features:**\n- \ud83e\udd16 **MCP Server**: Provides 6 essential Slack tools for AI assistants and clients\n- \ud83e\ude9d **Webhook Server**: Processes real-time Slack events with secure verification\n- \ud83d\udd17 **Integrated Mode**: Combined MCP + webhook server for complete Slack platform integration\n- \ud83d\ude80 **Multiple Transports**: Supports stdio, SSE, and HTTP streaming protocols\n- \ud83d\udce6 **Easy Deployment**: Docker, Kubernetes, and cloud platform ready\n\n[//]: # (- \ud83d\udee1\ufe0f **Enterprise Security**: HMAC-SHA256 verification, token management, and comprehensive logging)\n\n**Use Cases:**\n- Building AI assistants with Slack integration\n- Creating custom automation tools for Slack workflows\n- Developing real-time Slack applications with event processing\n- Integrating Slack with other tools and platforms\n\n## Python versions support\n\n[](https://pypi.org/project/slack-mcp)\n\n**slack-mcp-server** supports Python 3.12+ for optimal performance and modern language features.\n\n## Quickly Start\n\n### Installation\n\nChoose your preferred installation method:\n\n#### Using pip\n```bash\n# Minimal base (protocol only)\npip install slack-mcp\n\n# MCP server feature set\npip install \"slack-mcp[mcp]\"\n\n# Webhook server feature set\npip install \"slack-mcp[webhook]\"\n\n# Everything\npip install \"slack-mcp[all]\"\n```\n\n#### Using uv (recommended)\n```bash\n# Minimal base\nuv add slack-mcp\n\n# MCP server / Webhook / All\nuv add \"slack-mcp[mcp]\"\nuv add \"slack-mcp[webhook]\"\nuv add \"slack-mcp[all]\"\n```\n\n#### Using poetry\n```bash\n# Minimal base\npoetry add slack-mcp\n\n# MCP server / Webhook / All\npoetry add slack-mcp -E mcp\npoetry add slack-mcp -E webhook\npoetry add slack-mcp -E all\n```\n\n> Note: Installation extras\n> - [mcp]: Installs the MCP server feature set (SSE/Streamable transports; not the integrated webhook mode)\n> - [webhook]: Installs FastAPI/Uvicorn and related parts for Slack webhook handling (not the integrated mode)\n> - [all]: Installs everything in this project\n> - Base (no extra): Minimal install with only the base protocol rules of this project\n\n### Basic Usage\n\n#### 1. Set Up Environment Variables\n\n```bash\n# Required: Slack bot token\nexport SLACK_BOT_TOKEN=\"xoxb-your-bot-token-here\"\n\n# Optional: For webhook server\nexport SLACK_SIGNING_SECRET=\"your-signing-secret\"\n```\n\n#### 2. Start MCP Server (Standalone)\n\n```bash\n# Start with stdio transport (default)\nslack-mcp-server\n\n# Start with SSE transport for web clients\nslack-mcp-server --transport sse --host 0.0.0.0 --port 3001\n```\n\n#### 3. Start Webhook Server (Standalone)\n\n```bash\n# Start standalone webhook server\nslack-webhook-server --host 0.0.0.0 --port 3000\n```\n\n#### 4. Start Integrated Server (MCP + Webhook)\n\n```bash\n# Combined server with both MCP and webhook functionality\nslack-mcp-server --integrated --transport sse --port 8000\n```\n\n### Available MCP Tools\n\n| Tool | Description | Usage |\n|-------------------------------|------------------------------|-----------------------------|\n| `slack_post_message` | Send messages to channels | Post notifications, updates |\n| `slack_read_channel_messages` | Read channel message history | Analyze conversations |\n| `slack_read_thread_messages` | Read thread replies | Follow discussions |\n| `slack_thread_reply` | Reply to message threads | Engage in conversations |\n| `slack_read_emojis` | Get workspace emojis | Access custom reactions |\n| `slack_add_reactions` | Add emoji reactions | React to messages |\n\n### Docker Quick Start\n\n```bash\n# Pull and run with environment variables\ndocker run -p 3000:3000 \\\n -e SLACK_BOT_TOKEN=\"xoxb-your-token\" \\\n -e SLACK_SIGNING_SECRET=\"your-secret\" \\\n chisanan232/slack-mcp-server:latest\n```\n\n## Documentation\n\nComprehensive documentation is available at **[https://chisanan232.github.io/slack-mcp-server/](https://chisanan232.github.io/slack-mcp-server/)**\n\n### Documentation Sections\n\n- \ud83d\udcd6 **[User Guide](https://chisanan232.github.io/slack-mcp-server/docs/next/introduction)** - Installation, configuration, and usage\n- \ud83d\udee0\ufe0f **[Developer Guide](https://chisanan232.github.io/slack-mcp-server/dev/next)** - Contributing, architecture, and development workflow\n- \ud83c\udfd7\ufe0f **[API Reference](https://chisanan232.github.io/slack-mcp-server/docs/next/server-references/)** - Complete CLI and configuration reference\n- \ud83d\ude80 **[Deployment Guide](https://chisanan232.github.io/slack-mcp-server/docs/next/server-references/deployment-guide)** - Production deployment patterns\n\n### Quick Links\n\n- [Requirements](https://chisanan232.github.io/slack-mcp-server/docs/next/quick-start/requirements)\n- [Installation Guide](https://chisanan232.github.io/slack-mcp-server/docs/next/quick-start/installation)\n- [Server Modes](https://chisanan232.github.io/slack-mcp-server/docs/next/server-references/mcp-server/server-modes)\n- [Environment Configuration](https://chisanan232.github.io/slack-mcp-server/docs/next/server-references/environment-configuration)\n- [CI/CD Workflows](https://chisanan232.github.io/slack-mcp-server/dev/next/ci-cd/)\n\n## Coding style and following rules\n\n**slack-mcp-server** follows coding styles **black** and **PyLint** to control code quality, with additional tools for comprehensive code analysis.\n\n[](https://github.com/psf/black)\n[](https://github.com/pylint-dev/pylint)\n[](https://pycqa.github.io/isort/)\n[](http://mypy-lang.org/)\n\n### Code Quality Tools\n\n- **Black**: Consistent code formatting\n- **PyLint**: Code analysis and style checking\n- **MyPy**: Static type checking\n- **isort**: Import sorting and organization\n- **Pre-commit**: Automated code quality checks\n\n### Development Workflow\n\n```bash\n# Install development dependencies\nuv sync --dev\n\n# Run code quality checks\nuv run pre-commit run --all-files\n\n# Run tests\nuv run pytest\n```\n\n## Downloading state\n\nCurrent download statistics for **slack-mcp** package:\n\n[](https://pepy.tech/project/slack-mcp)\n[](https://pepy.tech/project/slack-mcp)\n[](https://pepy.tech/project/slack-mcp)\n\n### Container Downloads\n\n[](https://hub.docker.com/r/chisanan232/slack-mcp-server)\n\n## Contributing\n\nWe welcome contributions! Please see our [Contributing Guide](https://chisanan232.github.io/slack-mcp-server/docs/next/contribute) for details.\n\n### Quick Contribution Steps\n\n1. **[Report Issues](https://chisanan232.github.io/slack-mcp-server/docs/next/contribute/report-bug)** - Found a bug? Let us know!\n2. **[Request Features](https://chisanan232.github.io/slack-mcp-server/docs/next/contribute/request-changes)** - Have ideas? We'd love to hear them!\n3. **[Join Discussions](https://chisanan232.github.io/slack-mcp-server/docs/next/contribute/discuss)** - Connect with the community\n4. **[Development Setup](https://chisanan232.github.io/slack-mcp-server/dev/next/workflow)** - Start contributing code\n\n### Extend with Custom Queue Backend Plugins\n\nWant to add support for additional message queue systems? Create custom queue backend plugins using our template:\n\n**[Slack MCP Server Backend MQ Template](https://github.com/Chisanan232/Slack-MCP-Server-Backend-MQ-Template)** - Quick-start template for developing queue backend plugins\n- Complete project structure with best practices\n- Pre-configured CI/CD workflows\n- Comprehensive documentation\n\n\ud83d\udcda **Documentation**: [https://chisanan232.github.io/Slack-MCP-Server-Backend-MQ-Template/](https://chisanan232.github.io/Slack-MCP-Server-Backend-MQ-Template/)\n\n## License\n\n[MIT License](./LICENSE)\n",
"bugtrack_url": null,
"license": " MIT License Copyright (c) 2025 Bryant Liu Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.",
"summary": "\ud83e\uddbe A strong MCP server for Slack.",
"version": "0.1.0",
"project_urls": {
"Changelog": "https://chisanan232.github.io/slack-mcp-server/docs/next/changelog",
"Documentation": "https://chisanan232.github.io/slack-mcp-server/",
"Homepage": "https://github.com/Chisanan232/slack-mcp-server",
"Project Management": "https://app.clickup.com/9018752317/v/f/90185744047/90184991515",
"Repository": "https://github.com/Chisanan232/slack-mcp-server"
},
"split_keywords": [
"mcp",
" mcp-server",
" slack",
" slack-mcp",
" slack-mcp-server"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "a80a6e9b84fbde2b0c5d3bd137d9685c13e048b27a23de792a8f3bf20b05b66d",
"md5": "7b14aa0175cce01964c3a2d1fa170da2",
"sha256": "cbf20c01e84ea83f810b39a24a6f338cec9fe59b038e65694184b224916b57a6"
},
"downloads": -1,
"filename": "slack_mcp-0.1.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "7b14aa0175cce01964c3a2d1fa170da2",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "<3.14,>=3.12",
"size": 54855,
"upload_time": "2025-11-04T07:06:29",
"upload_time_iso_8601": "2025-11-04T07:06:29.905975Z",
"url": "https://files.pythonhosted.org/packages/a8/0a/6e9b84fbde2b0c5d3bd137d9685c13e048b27a23de792a8f3bf20b05b66d/slack_mcp-0.1.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8370a943cd3741354842f6d36d54f0f4b9a9dd4a7f17252fb792246b344fba19",
"md5": "c3c0b5dad72db2b3551f2541e035fa5e",
"sha256": "bfe9bd04158241f77a4d7a329912ca2e5fbd9c5af5466c4c6e9fbbe15ab2dff5"
},
"downloads": -1,
"filename": "slack_mcp-0.1.0.tar.gz",
"has_sig": false,
"md5_digest": "c3c0b5dad72db2b3551f2541e035fa5e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": "<3.14,>=3.12",
"size": 39948,
"upload_time": "2025-11-04T07:06:30",
"upload_time_iso_8601": "2025-11-04T07:06:30.849453Z",
"url": "https://files.pythonhosted.org/packages/83/70/a943cd3741354842f6d36d54f0f4b9a9dd4a7f17252fb792246b344fba19/slack_mcp-0.1.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-11-04 07:06:30",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "Chisanan232",
"github_project": "slack-mcp-server",
"travis_ci": false,
"coveralls": true,
"github_actions": true,
"lcname": "slack-mcp"
}