@@ -254,8 +254,8 @@ def add_component_tools(mcp: FastMCP) -> None:
254
254
"""Add tools to the MCP server."""
255
255
256
256
component_tools = [
257
- list_components ,
258
- list_component_configurations ,
257
+ retrieve_core_components ,
258
+ retrieve_component_configurations ,
259
259
get_component_configuration_details ,
260
260
get_core_component_details ,
261
261
list_all_component_configurations ,
@@ -319,15 +319,17 @@ async def list_all_component_configurations(
319
319
types = handle_component_types (types )
320
320
321
321
# retrieve all core components
322
- components = await list_components (ctx , types )
322
+ components = await retrieve_core_components (ctx , types )
323
323
logger .info (f"Found { len (components )} core components for given types { types } ." )
324
324
# iterate over all core components and retrieve their configurations
325
325
component_configs : List [ComponentConfigurationsList ] = []
326
326
for component in components :
327
327
# check if the component matches the types filter
328
328
if conform_types (component , types ):
329
329
# retrieve all configurations for the component
330
- cur_component_configs = await list_component_configurations (component .component_id , ctx )
330
+ cur_component_configs = await retrieve_component_configurations (
331
+ component .component_id , ctx
332
+ )
331
333
component_configs .append (
332
334
ComponentConfigurationsList (
333
335
component = component ,
@@ -337,7 +339,7 @@ async def list_all_component_configurations(
337
339
return sorted (component_configs , key = lambda x : x .component .component_type )
338
340
339
341
340
- async def list_components (
342
+ async def retrieve_core_components (
341
343
ctx : Context ,
342
344
types : Annotated [
343
345
List [ComponentType ],
@@ -380,18 +382,17 @@ async def list_components(
380
382
-> set types to ["all"] because we need to find all components from which we can derive postgresql configurations
381
383
-> returns all core components
382
384
"""
383
- client = ctx .session .state ["sapi_client" ]
384
- assert isinstance (client , KeboolaClient )
385
+ client = KeboolaClient .from_state (ctx .session .state )
385
386
386
387
types = handle_component_types (types )
387
388
388
- r_components = client .storage_client .components .list ()
389
- logger .info (f"Found { len (r_components )} components for given types { types } ." )
390
- components = [ComponentListItem .model_validate (r_comp ) for r_comp in r_components ]
389
+ raw_components = client .storage_client .components .list ()
390
+ logger .info (f"Found { len (raw_components )} components for given types { types } ." )
391
+ components = [ComponentListItem .model_validate (r_comp ) for r_comp in raw_components ]
391
392
return list (filter (lambda x : conform_types (x , types ), components ))
392
393
393
394
394
- async def list_component_configurations (
395
+ async def retrieve_component_configurations (
395
396
component_id : Annotated [
396
397
str ,
397
398
Field (
@@ -416,15 +417,17 @@ async def list_component_configurations(
416
417
client = KeboolaClient .from_state (ctx .session .state )
417
418
418
419
component = await get_core_component_details (component_id , ctx )
419
- r_configs = client .storage_client .configurations .list (component_id )
420
- logger .info (f"Found { len (r_configs )} component configurations for component { component_id } ." )
420
+ raw_configurations = client .storage_client .configurations .list (component_id )
421
+ logger .info (
422
+ f"Found { len (raw_configurations )} component configurations for component { component_id } ."
423
+ )
421
424
return ComponentConfigurationsList (
422
425
component = component .to_list_item (),
423
426
configurations = [
424
427
ComponentConfigurationListItem .model_validate (
425
- {** r_config , "component_id" : component_id }
428
+ {** raw_config , "component_id" : component_id }
426
429
)
427
- for r_config in r_configs
430
+ for raw_config in raw_configurations
428
431
],
429
432
)
430
433
@@ -450,10 +453,10 @@ async def get_core_component_details(
450
453
"""
451
454
client = KeboolaClient .from_state (ctx .session .state )
452
455
453
- endpoint = "branch/{}/components/{}" . format ( client . storage_client . _branch_id , component_id )
454
- r_component = await client .get (endpoint )
456
+ endpoint = f "branch/{ client . storage_client . _branch_id } /components/{ component_id } "
457
+ raw_component = await client .get (endpoint )
455
458
logger .info (f"Retrieved component details for component { component_id } ." )
456
- return ComponentDetail .model_validate (r_component )
459
+ return ComponentDetail .model_validate (raw_component )
457
460
458
461
459
462
async def get_component_configuration_details (
@@ -470,7 +473,7 @@ async def get_component_configuration_details(
470
473
ctx : Context ,
471
474
) -> ComponentConfigurationDetail :
472
475
"""
473
- Retrieve detailed information about a specific Keboola component configuration given component ID and configuration
476
+ Get detailed information about a specific Keboola component configuration given component ID and configuration
474
477
ID. Those IDs can be retrieved from fully_qualified_id of the component configuration which are seperated by `::`.
475
478
Use to get the configuration details, metadata and the core Keboola component.
476
479
PARAMETERS:
@@ -489,7 +492,7 @@ async def get_component_configuration_details(
489
492
client = KeboolaClient .from_state (ctx .session .state )
490
493
491
494
component = await get_core_component_details (component_id , ctx )
492
- r_config = client .storage_client .configurations .detail (component_id , configuration_id )
495
+ raw_configuration = client .storage_client .configurations .detail (component_id , configuration_id )
493
496
logger .info (
494
497
f"Retrieved configuration details for component configuration { component_id } ::{ configuration_id } ."
495
498
)
@@ -508,7 +511,7 @@ async def get_component_configuration_details(
508
511
)
509
512
510
513
return ComponentConfigurationDetail .model_validate (
511
- {** r_config , "component" : component , "component_id" : component_id , "metadata" : r_metadata }
514
+ {** raw_configuration , "component" : component , "component_id" : component_id , "metadata" : r_metadata }
512
515
)
513
516
514
517
0 commit comments