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.
2 parents 89b4d6b + 059e259 commit 5183fadCopy full SHA for 5183fad
jupyter_mcp_tools/client.py
@@ -123,7 +123,7 @@ async def get_tools(
123
# We need to query through the WebSocket or add an HTTP endpoint
124
# For now, we'll add an HTTP endpoint to the extension
125
126
- url = urljoin(self.base_url, '/jupyter-mcp-tools/tools')
+ url = urljoin(self.base_url + '/', 'jupyter-mcp-tools/tools')
127
params = {
128
'timeout': str(wait_timeout)
129
}
@@ -195,7 +195,7 @@ async def execute_tool(
195
if not self._session:
196
await self.connect()
197
198
- url = urljoin(self.base_url, '/jupyter-mcp-tools/execute')
+ url = urljoin(self.base_url + '/', 'jupyter-mcp-tools/execute')
199
payload = {
200
'tool_id': tool_id,
201
'parameters': parameters or {}
0 commit comments