Create a new file slack_agent.py with the following code:
Copy
from praisonaiagents import Agent, MCPimport os# Get Slack credentials from environmentslack_token = os.getenv("SLACK_BOT_TOKEN")slack_team_id = os.getenv("SLACK_TEAM_ID")# Use a single string command with Slack configurationslack_agent = Agent( instructions="""You are a helpful assistant that can interact with Slack. Use the available tools when relevant to manage Slack communications.""", llm="gpt-4o-mini", tools=MCP("npx -y @modelcontextprotocol/server-slack", env={ "SLACK_BOT_TOKEN": slack_token, "SLACK_TEAM_ID": slack_team_id }))slack_agent.start("Send a message to the general channel")