Skip to main content

A Python framework for deploying AI agents as Slack bots

Project description

python-slack-agents

PyPI version Python CI License

A simple Python framework for running AI agents in Slack. Each agent is a YAML config and a system prompt — pick your LLM, connect some MCP tools, and slack-agents run. Everything you need is included: streaming responses, file handling, conversation persistence, and a plugin system when you need to extend things. Built on Bolt for Python.

Agent streaming a response in Slack

What You Get

Each agent is a directory with two files: a config.yaml and a system_prompt.txt. Point it at your LLM, give it some tools, and run it.

LLM providers — Anthropic and OpenAI built in, plus any OpenAI-compatible API (Mistral, Groq, Together, Ollama, vLLM). Extend to any other provider by implementing a simple base class.

Tool calling with MCP — Connect any MCP server over HTTP. Tools are discovered automatically, executed in parallel, and filtered with regex patterns. No tool registration boilerplate.

File handling — Agents can read files your users upload (PDF, DOCX, XLSX, PPTX, CSV, images) and generate documents back (PDF, DOCX, XLSX, CSV, PPTX). All built in, no extra setup.

Streaming — Responses stream token-by-token to Slack. Markdown tables are detected and rendered as native Slack tables, not code blocks.

Conversation persistence — SQLite for development, PostgreSQL for production. Conversations survive restarts, and you can export them to HTML or CSV.

Access control — Allow everyone, restrict to a list of Slack user IDs, or write a custom provider (LDAP, OAuth, whatever you need).

Observability — OpenTelemetry tracing out of the box. Send traces to Langfuse, Jaeger, Datadog, Grafana Tempo, or any OTLP-compatible backend.

Docker — Build per-agent Docker images with a single CLI command. Each agent is its own image with its own config.

Plugin architecture — LLM, storage, tools, and access control are all pluggable. Same pattern everywhere: a type field pointing to a Python module, and a simple Provider class in that module.

Quick Start

mkdir my-agents && cd my-agents
python3 -m venv .venv
source .venv/bin/activate
pip install python-slack-agents

# Scaffold the project
slack-agents init my-agents

# Add your tokens and install framework + deps
cp .env.example .env                 # add your Slack and LLM tokens
pip install -r requirements.txt

# Run the hello-world agent
slack-agents run agents/hello-world

See Setup for creating a Slack app and getting your tokens.

How It Works

An agent is a directory with two files:

agents/my-agent/
├── config.yaml          # LLM, tools, storage, access control
└── system_prompt.txt    # what the agent should do

config.yaml

version: "1.0.0"                     # shown in Slack usage footer, used as Docker image tag
schema: "slack-agents/v1"

slack:
  bot_token: "{SLACK_BOT_TOKEN}"
  app_token: "{SLACK_APP_TOKEN}"

llm:
  type: slack_agents.llm.anthropic
  model: claude-sonnet-4-6
  api_key: "{ANTHROPIC_API_KEY}"
  max_tokens: 4096
  max_input_tokens: 200000

storage:
  type: slack_agents.storage.sqlite
  path: ":memory:"

access:
  type: slack_agents.access.allow_all

tools:
  # Connect any MCP server — tools are auto-discovered
  web-search:
    type: slack_agents.tools.mcp_http
    url: "https://mcp.deepwiki.com/mcp"
    allowed_functions: [".*"]

  # Read uploaded files (PDF, DOCX, XLSX, PPTX, images, text)
  import-files:
    type: slack_agents.tools.file_importer
    allowed_functions: [".*"]

  # Generate and export documents (PDF, DOCX, XLSX, CSV, PPTX)
  export-documents:
    type: slack_agents.tools.file_exporter
    allowed_functions: ["export_pdf", "export_docx"]

  # Create, read, edit, and share Slack canvases
  canvas:
    type: slack_agents.tools.canvas
    bot_token: "{SLACK_BOT_TOKEN}"
    allowed_functions: [".*"]

  # Remember user preferences across conversations in a user-editable slack canvas
  user-context:
    type: slack_agents.tools.user_context
    bot_token: "{SLACK_BOT_TOKEN}"
    max_tokens: 1000
    allowed_functions: [".*"]

All secrets in {ENV_VAR} are resolved from environment variables at startup.

system_prompt.txt — plain text or markdown, as long or short as you need.

CLI

slack-agents init <project-name>                    # scaffold a new project
slack-agents run agents/<name>                      # start an agent
slack-agents healthcheck agents/<name>              # liveness probe (for k8s)
slack-agents export-conversations agents/<name> \   # export conversation history
  --format html --output ./conversations
slack-agents export-usage agents/<name>  \          # export usage metrics to CSV
  --format csv --output ./usage.csv
slack-agents build-docker agents/<name>             # build a Docker image
slack-agents build-docker agents/<name> \           # custom image name
  --image-name my-bot
slack-agents build-docker agents/<name> \           # build and push to a registry
  --push registry.example.com

Built-in Tools

File Import

Users can upload files to the conversation. The agent automatically reads them:

Format What's extracted
PDF Full text with layout preserved (via PyMuPDF)
DOCX Text, headings, tables, lists
XLSX Cell values across all sheets
PPTX Slide text, speaker notes, tables
CSV, Markdown, plain text Raw content
Images (PNG, JPEG, GIF, WebP) Sent as vision input to the LLM

Document Export

The agent can generate and upload files to the conversation:

Format Capabilities
PDF Rich text, tables, headings, bullets, Unicode support
DOCX Styled documents with tables and lists
XLSX Multi-sheet spreadsheets
CSV Tabular data export
PPTX Slide decks with tables and speaker notes

Slack Canvases

Canvases are collaborative documents embedded in Slack — think Google Docs, but native to your workspace. Multiple users and agents can read and write the same canvas, making them a shared surface for collaboration between people and AI. Agents can create, read, update, and manage canvases, which is useful for generating reports, maintaining living documents, or publishing structured content directly where your team works.

See Canvas tool docs for the full tool reference and setup.

User Context (Optional Per-User Memory)

Each user can get a personal Slack canvas that stores their preferences and context across conversations. The agent loads it at the start of every conversation and offers to save important context when users share preferences or corrections. Users can also edit their canvas directly in Slack.

See User context docs for setup and configuration.

MCP Servers

Connect any MCP server over HTTP. Tools are auto-discovered and can be filtered:

tools:
  my-mcp-server:
    type: slack_agents.tools.mcp_http
    url: "https://my-server.example.com/mcp"
    headers:
      Authorization: "Bearer {MCP_API_TOKEN}"
    allowed_functions:
      - "search_.*"       # regex — only tools matching this pattern
      - "get_document"    # exact match works too

Project Structure

Your overlay is a plain git repo — not a Python package. You edit configs, commit, and run; there's no install-the-overlay-as-a-package step. A typical layout looks like:

my-agents/
├── requirements.txt        # pins python-slack-agents (and any extra deps)
├── .env.example
├── .gitignore
├── agents/
│   └── my-agent/
│       ├── config.yaml
│       └── system_prompt.txt
└── src/                    # optional — only if you add custom providers
    └── my_agents/
        └── __init__.py

Two conventions to know:

  • src/ holds custom Python. On slack-agents run, the framework walks up from the agent directory, finds the nearest src/ sibling, and prepends it to sys.path. Anything under src/<pkg>/... is importable as <pkg>.… with no install step.
  • requirements.txt pins your framework version and any extra Python deps. pip install -r requirements.txt is the only install command you ever run.

slack-agents init scaffolds this for you. See Organizing agents for details.

Extending

Every pluggable component follows the same pattern. Add a new LLM provider, storage backend, tool, or access policy by creating a module with a Provider class in src/:

# In config.yaml
llm:
  type: my_agents.my_llm_provider
  model: my-model
  api_key: "{MY_API_KEY}"
# In src/my_agents/my_llm_provider.py
from slack_agents.llm.base import BaseLLMProvider

class Provider(BaseLLMProvider):
    def __init__(self, model, api_key, **kwargs):
        ...

After you drop a module under src/, it's picked up automatically on the next slack-agents run — the framework prepends ./src to sys.path at startup. The same mechanism works inside Docker: the bundled Dockerfile installs dependencies from requirements.txt and copies your src/ into the image, so custom providers resolve in production too.

See the docs for the full interface for each component:

Slack Compatibility

python-slack-agents uses Socket Mode, which connects to Slack over WebSocket. This means:

  • No public URL required — works behind firewalls, on your laptop, in a private cluster (eg, k8s)
  • All Slack plans supported — free, Pro, Business+, and Enterprise Grid
  • One process per agent — Socket Mode requires a single WebSocket connection per app

Agents respond to @mentions in channels, direct messages, and thread replies. File uploads are automatically processed by file importer tools.

To create a Slack app, use the manifest in docs/slack-app-manifest.json — it has all the required scopes and event subscriptions pre-configured.

Requirements

  • Python 3.12+
  • A Slack app with Socket Mode enabled (setup guide)
  • An API key for at least one LLM provider

Documentation

  • Setup — installation and Slack app creation
  • Agents — creating and configuring agents
  • Tools — MCP servers and custom tool providers
  • LLM — supported providers and adding your own
  • Storage — SQLite, PostgreSQL, and custom backends
  • Access control — controlling who can use an agent
  • Canvases — creating and managing Slack canvases
  • User context — per-user memory across conversations
  • Observability — OpenTelemetry tracing
  • Deployment — Docker, docker-compose, and Kubernetes
  • CLI — command reference
  • Organizing agents — in-repo, separate directory, or private repository

For AI Agents

If you're an AI agent or coding assistant, see llms-full.txt for a complete, single-file reference to the config schema, all providers, and the plugin system. After pip install, the reference is available locally inside the package at slack_agents/llms-full.txt.

Related Projects

Other projects in this space:

  • Bolt for Python — The official Slack SDK. python-slack-agents uses it internally. Use Bolt directly if you want full control over Slack interactions without an agent abstraction.
  • bolt-python-ai-chatbot — Official Slack sample app for AI chatbots. A starting point if you want to build from scratch rather than use a framework.
  • bolt-python-assistant-template — Official Slack template for building Agents & Assistants with Bolt and OpenAI.
  • langgraph-messaging-integrations — Connects LangGraph agents to Slack and other messaging platforms.
  • slack-mcp-client — A Go application bridging Slack and MCP servers. Deployed app rather than a library.

Disclaimer

This is an independent open-source project and is not affiliated with, endorsed by, or sponsored by Slack Technologies, LLC or Salesforce, Inc.

License

Apache 2.0 — see LICENSE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

python_slack_agents-0.7.0.tar.gz (1.4 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

python_slack_agents-0.7.0-py3-none-any.whl (109.3 kB view details)

Uploaded Python 3

File details

Details for the file python_slack_agents-0.7.0.tar.gz.

File metadata

  • Download URL: python_slack_agents-0.7.0.tar.gz
  • Upload date:
  • Size: 1.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for python_slack_agents-0.7.0.tar.gz
Algorithm Hash digest
SHA256 35b94e74e593625d8f9cf283015992a229152164a3c62e04e51a2090ab12dd4e
MD5 376eb3d6c6801f6b0510faa1ec39b4ab
BLAKE2b-256 9bc1697d728866fda69fdf565e129ec4e6e11b261d97b1b0c9dad76d6500b754

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_slack_agents-0.7.0.tar.gz:

Publisher: publish.yml on CompareNetworks/python-slack-agents

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_slack_agents-0.7.0-py3-none-any.whl.

File metadata

File hashes

Hashes for python_slack_agents-0.7.0-py3-none-any.whl
Algorithm Hash digest
SHA256 cbb015bd5f73ce8f7513c1483b7e7da096a62244dbe9206165536a84b353eab1
MD5 a3048c456c6cb4838f3e0037ad1682fa
BLAKE2b-256 5dd06a80d218be0b1fc18d254f03250e3c13f61e96aefa04e27e6102bad036be

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_slack_agents-0.7.0-py3-none-any.whl:

Publisher: publish.yml on CompareNetworks/python-slack-agents

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page