Skip to content

Commit 91d9c23

Browse files
authored
Merge pull request #72 from SiennaChien/docs_update
📖 Update doc
2 parents 8ef0cbe + 5748d2a commit 91d9c23

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# agent-examples
22

33
This repo collects several examples of community agents and MCP tools written in different
4-
frameworks and exposed with agent-to-agent protocols and tools protocols such as A2A and MCP.
4+
frameworks and exposed with agent-to-agent protocols and tools protocols such as A2A and MCP.

mcp/slack_tool/slack_tool.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ def slack_client_from_bot_token(bot_token):
3131

3232
def get_slack_client(access_token=None):
3333
if ADMIN_SLACK_BOT_TOKEN is None:
34-
logger.debug(f"No ADMIN_SLACK_BOT_TOKEN configured - automatically configuring based on SLACK_BOT_TOKEN. ")
34+
logger.debug("No ADMIN_SLACK_BOT_TOKEN configured - automatically configuring based on SLACK_BOT_TOKEN. ")
3535
return slack_client_from_bot_token(SLACK_BOT_TOKEN)
3636
# we do fine-grained authz
3737
if access_token is None:
38-
logger.error(f"ADMIN_SLACK_BOT_TOKEN configured, but no access token passed. ")
38+
logger.error("ADMIN_SLACK_BOT_TOKEN configured, but no access token passed. ")
3939
return None
4040

4141
# Access token is now claims dict from FastMCP AccessToken

0 commit comments

Comments
 (0)