We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdf12cd commit a033e44Copy full SHA for a033e44
1 file changed
mcp/slack_tool/slack_tool.py
@@ -62,7 +62,8 @@ def get_channel_history(channel_id: str, limit: int = 20) -> List:
62
try:
63
# Call the Slack API to list conversations the bot is part of.
64
response = slack_client.conversations_history(
65
- channel=channel_id
+ channel=channel_id,
66
+ limit=limit
67
)
68
return response.get("messages",)
69
except SlackApiError as e:
0 commit comments