Skip to content

Commit 494d22d

Browse files
committed
KAB-871 refactor(tools): use KeboolaClient.from_state with context in tools
1 parent 834201f commit 494d22d

File tree

2 files changed

+5
-11
lines changed

2 files changed

+5
-11
lines changed

src/keboola_mcp_server/component_tools.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,6 @@ async def list_component_configurations(
193193
) -> List[ComponentConfigurationListItem]:
194194
client = KeboolaClient.from_state(ctx.session.state)
195195

196-
197196
component = await get_component_details(component_id, ctx)
198197
r_configs = client.storage_client.configurations.list(component_id)
199198
logger.info(f"Found {len(r_configs)} configurations for component {component_id}.")
@@ -238,8 +237,7 @@ async def get_component_configuration_details(
238237
"""
239238
if isinstance(config_id, int):
240239
config_id = str(config_id)
241-
client = ctx.session.state["sapi_client"]
242-
assert isinstance(client, KeboolaClient)
240+
client = KeboolaClient.from_state(ctx.session.state)
243241

244242
component = await get_component_details(component_id, ctx)
245243
r_config = client.storage_client.configurations.detail(component_id, config_id)

src/keboola_mcp_server/jobs_tools.py

+4-8
Original file line numberDiff line numberDiff line change
@@ -193,8 +193,7 @@ async def list_jobs(
193193
ascending order.
194194
:return: A list of job list items, if empty then no jobs were found.
195195
"""
196-
client = ctx.session.state["sapi_client"]
197-
assert isinstance(client, KeboolaClient)
196+
client = KeboolaClient.from_state(ctx.session.state)
198197

199198
status = handle_status_param(status=status)
200199

@@ -218,8 +217,7 @@ async def get_job_details(
218217
:param job_id: The unique identifier of the job whose details should be retrieved.
219218
:return: A job detail object
220219
"""
221-
client = ctx.session.state["sapi_client"]
222-
assert isinstance(client, KeboolaClient)
220+
client = KeboolaClient.from_state(ctx.session.state)
223221

224222
r_job = client.jobs_queue.detail(job_id)
225223
logger.info(f"Found job details for {job_id}." if r_job else f"Job {job_id} not found.")
@@ -274,8 +272,7 @@ async def list_component_config_jobs(
274272
ascending order.
275273
:return: A list of job list items.
276274
"""
277-
client = ctx.session.state["sapi_client"]
278-
assert isinstance(client, KeboolaClient)
275+
client = KeboolaClient.from_state(ctx.session.state)
279276

280277
status = handle_status_param(status=status)
281278
params = {
@@ -336,8 +333,7 @@ async def list_component_jobs(
336333
order.
337334
:return: A list of job list items.
338335
"""
339-
client = ctx.session.state["sapi_client"]
340-
assert isinstance(client, KeboolaClient)
336+
client = KeboolaClient.from_state(ctx.session.state)
341337

342338
status = handle_status_param(status=status)
343339
params = {

0 commit comments

Comments
 (0)