Add create_comment tool to Basecamp integration

Updated mcp_server_cli.py to include the new tool in the CLI and modified README.md to document the new functionality. Adjusted test_cli_server.py to include the create_comment tool in the expected tools list.
This commit is contained in:
George Antonopoulos
2025-09-11 20:50:06 +01:00
parent c3c96712e6
commit e91e0031b9
4 changed files with 58 additions and 1 deletions

View File

@@ -102,7 +102,7 @@ def test_cli_server_tools_list():
# Check that expected tools are present
tool_names = [tool["name"] for tool in tools]
expected_tools = ["get_projects", "search_basecamp", "get_todos", "global_search"]
expected_tools = ["get_projects", "search_basecamp", "get_todos", "global_search", "create_comment"]
for expected_tool in expected_tools:
assert expected_tool in tool_names