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 78118ac commit 4502f71Copy full SHA for 4502f71
examples/usecases/mcp_github_to_slack_agent/main.py
@@ -9,7 +9,11 @@
9
10
app = MCPApp(name="github_to_slack")
11
12
-@app.async_tool(name="github_to_slack", description="Tool to list GitHub pull requests and provides summaries to Slack")
+
13
+@app.async_tool(
14
+ name="github_to_slack",
15
+ description="Tool to list GitHub pull requests and provides summaries to Slack",
16
+)
17
async def github_to_slack(github_owner: str, github_repo: str, slack_channel: str):
18
async with app.run() as agent_app:
19
context = agent_app.context
0 commit comments