File tree Expand file tree Collapse file tree 4 files changed +6
-4
lines changed Expand file tree Collapse file tree 4 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -132,7 +132,9 @@ async def get_tools(
132132 params ['query' ] = query
133133 if enabled_only :
134134 params ['enabled_only' ] = 'true'
135-
135+ else :
136+ params ['enabled_only' ] = 'false'
137+
136138 try :
137139 async with self ._session .get (url , params = params ) as response :
138140 if response .status == 200 :
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ async def get(self):
7474 for term in query_terms
7575 )
7676 ]
77-
77+
7878 if enabled_only :
7979 tools = [tool for tool in tools if tool .get ('isEnabled' , False )]
8080
Original file line number Diff line number Diff line change 11{
22 "name" : " @datalayer/jupyter-mcp-tools" ,
3- "version" : " 0.1.2 " ,
3+ "version" : " 0.1.3 " ,
44 "description" : " Jupyter MCP Tools." ,
55 "keywords" : [
66 " ai" ,
Original file line number Diff line number Diff line change 33 * Distributed under the terms of the Modified BSD License.
44 */
55
6+ import React from 'react' ;
67import { ReactWidget } from '@jupyterlab/apputils' ;
78import { LabIcon } from '@jupyterlab/ui-components' ;
8- import React from 'react' ;
99import { MCPToolsPanel } from './MCPToolsPanel' ;
1010
1111/**
You can’t perform that action at this time.
0 commit comments