Skip to content

Commit 5de0838

Browse files
committed
remove debug
1 parent 659e328 commit 5de0838

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

packages/toolbox-core/src/toolbox_core/mcp_transport/base.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,6 @@ async def tool_invoke(
176176

177177
url = self._mcp_base_url
178178
params = {"name": tool_name, "arguments": arguments}
179-
print("DEBUG: Tool invocation request:", params, headers, url)
180179
result = await self._send_request(
181180
url=url, method="tools/call", params=params, headers=headers
182181
)

packages/toolbox-core/tests/test_e2e_mcp.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,6 @@ async def test_run_tool_unauth_with_auth(
153153
async def test_run_tool_no_auth(self, toolbox: ToolboxClient):
154154
"""Tests running a tool requiring auth without providing auth."""
155155
tool = await toolbox.load_tool("get-row-by-id-auth")
156-
print("DEBUG: got tool auth token getters", tool._auth_service_token_getters)
157156
with pytest.raises(
158157
PermissionError,
159158
match="One or more of the following authn services are required to invoke this tool: my-test-auth",

0 commit comments

Comments
 (0)