-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathapplications.py
More file actions
604 lines (473 loc) · 24.2 KB
/
Copy pathapplications.py
File metadata and controls
604 lines (473 loc) · 24.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
# The Okta software accompanied by this notice is provided pursuant to the following terms:
# Copyright © 2025-Present, Okta, Inc.
# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.
# You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0.
# Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and limitations under the License.
import json
from typing import Any, Dict, Optional
from urllib.parse import urlencode
import okta.models as okta_models
from loguru import logger
from mcp.server.fastmcp import Context
from okta_mcp_server.server import mcp
# Mapping of signOnMode -> Okta SDK model class for proper serialization
_SIGN_ON_MODE_MODEL_MAP: Dict[str, Any] = {
"BOOKMARK": okta_models.BookmarkApplication,
"AUTO_LOGIN": okta_models.AutoLoginApplication,
"BASIC_AUTH": okta_models.BasicAuthApplication,
"BROWSER_PLUGIN": okta_models.BrowserPluginApplication,
"OPENID_CONNECT": okta_models.OpenIdConnectApplication,
"SAML_1_1": okta_models.Saml11Application,
"SAML_2_0": okta_models.SamlApplication,
"SECURE_PASSWORD_STORE": okta_models.SecurePasswordStoreApplication,
"WS_FEDERATION": okta_models.WsFederationApplication,
}
def _build_application_model(app_config: Dict[str, Any]) -> Any:
"""Convert a plain dict to the appropriate Okta SDK Application model.
The SDK v3 requires typed model objects, not plain dicts. Without this,
subclass-specific fields like `name`, `settings`, and `visibility` are
silently dropped by the base Application model, causing API validation errors.
"""
sign_on_mode = app_config.get("signOnMode") or app_config.get("sign_on_mode", "")
model_cls = _SIGN_ON_MODE_MODEL_MAP.get(str(sign_on_mode).upper(), okta_models.Application)
logger.debug(f"Using model class '{model_cls.__name__}' for signOnMode '{sign_on_mode}'")
return model_cls(**app_config)
from okta_mcp_server.utils.client import get_okta_client
from okta_mcp_server.utils.elicitation import DeactivateConfirmation, DeleteConfirmation, elicit_or_fallback
from okta_mcp_server.utils.messages import DEACTIVATE_APPLICATION, DELETE_APPLICATION
from okta_mcp_server.utils.pagination import build_query_params, create_paginated_response, extract_after_cursor, paginate_all_results
from okta_mcp_server.utils.scope_guard import require_scopes
from okta_mcp_server.utils.validation import validate_ids
@mcp.tool()
@require_scopes("okta.apps.read", error_return_type="list")
async def list_applications(
ctx: Context,
q: Optional[str] = None,
after: Optional[str] = None,
limit: Optional[int] = None,
filter: Optional[str] = None,
expand: Optional[str] = None,
include_non_deleted: Optional[bool] = None,
fetch_all: bool = False,
) -> dict:
"""List all applications from the Okta organization.
Parameters:
q (str, optional): Searches for applications by label, property, or link
after (str, optional): Specifies the pagination cursor for the next page of results
limit (int, optional): Specifies the number of results per page (min 20, max 100)
filter (str, optional): Filters applications by status, user.id, group.id, or credentials.signing.kid
expand (str, optional): Expands the app user object to include the user's profile or expand the app group
object to include the group's profile
include_non_deleted (bool, optional): Include non-deleted applications in the results
fetch_all (bool, optional): If True, automatically fetch all pages of results. Default: False.
Examples:
For pagination:
- First call: list_applications()
- Next page: list_applications(after="cursor_value")
- All pages: list_applications(fetch_all=True)
Returns:
Dict containing:
- items: List of application objects
- total_fetched: Number of applications returned
- has_more: Boolean indicating if more results are available
- next_cursor: Cursor for the next page (if has_more is True)
- fetch_all_used: Boolean indicating if fetch_all was used
- pagination_info: Additional pagination metadata (when fetch_all=True)
"""
logger.info("Listing applications from Okta organization")
logger.debug(f"Query parameters: q='{q}', filter='{filter}', limit={limit}, fetch_all={fetch_all}")
# Validate limit parameter range
if limit is not None:
if limit < 20:
logger.warning(f"Limit {limit} is below minimum (20), setting to 20")
limit = 20
elif limit > 100:
logger.warning(f"Limit {limit} exceeds maximum (100), setting to 100")
limit = 100
manager = ctx.request_context.lifespan_context.okta_auth_manager
try:
client = await get_okta_client(manager)
query_params = build_query_params(
q=q, after=after, limit=limit, filter=filter, expand=expand,
include_non_deleted=include_non_deleted,
)
logger.debug("Calling Okta API to list applications")
apps, response, err = await client.list_applications(**query_params)
if err:
logger.error(f"Okta API error while listing applications: {err}")
return {"error": str(err)}
if not apps:
logger.info("No applications found")
return create_paginated_response([], response, fetch_all)
app_count = len(apps)
logger.debug(f"Retrieved {app_count} applications in first page")
_has_more = (hasattr(response, "has_next") and response.has_next()) or bool(extract_after_cursor(response))
if fetch_all and response and _has_more:
logger.info(f"fetch_all=True, auto-paginating from initial {app_count} applications")
async def _next_page(cursor):
p = dict(query_params)
p["after"] = cursor
return await client.list_applications(**p)
async def _on_page(pages, total):
await ctx.info(f"Fetching applications... {total} fetched so far ({pages} pages)")
all_apps, pagination_info = await paginate_all_results(
response, apps, next_page_fn=_next_page, on_page=_on_page
)
logger.info(
f"Successfully retrieved {len(all_apps)} applications across {pagination_info['pages_fetched']} pages"
)
return create_paginated_response(all_apps, response, fetch_all_used=True, pagination_info=pagination_info)
else:
logger.info(f"Successfully retrieved {app_count} applications")
return create_paginated_response(apps, response, fetch_all_used=fetch_all)
except Exception as e:
logger.error(f"Exception while listing applications: {type(e).__name__}: {e}")
return {"error": str(e)}
@mcp.tool()
@require_scopes("okta.apps.read")
@validate_ids("app_id", error_return_type="dict")
async def get_application(ctx: Context, app_id: str, expand: Optional[str] = None) -> Any:
"""Get an application by ID from the Okta organization.
Parameters:
app_id (str, required): The ID of the application to retrieve
expand (str, optional): Expands the app user object to include the user's profile or expand the
app group object
Returns:
Dictionary containing the application details or error information.
"""
logger.info(f"Getting application with ID: {app_id}")
manager = ctx.request_context.lifespan_context.okta_auth_manager
try:
client = await get_okta_client(manager)
query_params = {}
if expand:
query_params["expand"] = expand
app, _, err = await client.get_application(app_id, **query_params)
if err:
logger.error(f"Okta API error while getting application {app_id}: {err}")
return {"error": str(err)}
logger.info(f"Successfully retrieved application: {app_id}")
return app
except Exception as e:
logger.error(f"Exception while getting application {app_id}: {type(e).__name__}: {e}")
return {"error": str(e)}
@mcp.tool()
@require_scopes("okta.apps.manage")
async def create_application(ctx: Context, app_config: Dict[str, Any], activate: bool = True) -> Any:
"""Create a new application in the Okta organization.
Parameters:
app_config (dict, required): The application configuration including name, label, signOnMode, settings, etc.
activate (bool, optional): Execute activation lifecycle operation after creation. Defaults to True.
Returns:
Dictionary containing the created application details or error information.
"""
logger.info("Creating new application in Okta organization")
logger.debug(f"Application label: {app_config.get('label', 'N/A')}, name: {app_config.get('name', 'N/A')}")
manager = ctx.request_context.lifespan_context.okta_auth_manager
try:
client = await get_okta_client(manager)
application_model = _build_application_model(app_config)
logger.debug("Calling Okta API to create application")
app, _, err = await client.create_application(application_model, activate)
if err:
logger.error(f"Okta API error while creating application: {err}")
return {"error": str(err)}
logger.info(f"Successfully created application")
return app
except Exception as e:
logger.error(f"Exception while creating application: {type(e).__name__}: {e}")
return {"error": str(e)}
@mcp.tool()
@require_scopes("okta.apps.manage")
@validate_ids("app_id", error_return_type="dict")
async def update_application(ctx: Context, app_id: str, app_config: Dict[str, Any]) -> Any:
"""Update an application by ID in the Okta organization.
Parameters:
app_id (str, required): The ID of the application to update
app_config (dict, required): The updated application configuration
Returns:
Dictionary containing the updated application details or error information.
"""
logger.info(f"Updating application with ID: {app_id}")
manager = ctx.request_context.lifespan_context.okta_auth_manager
try:
client = await get_okta_client(manager)
application_model = _build_application_model(app_config)
logger.debug(f"Calling Okta API to update application {app_id}")
app, _, err = await client.replace_application(app_id, application_model)
if err:
logger.error(f"Okta API error while updating application {app_id}: {err}")
return {"error": str(err)}
logger.info(f"Successfully updated application: {app_id}")
return app
except Exception as e:
logger.error(f"Exception while updating application {app_id}: {type(e).__name__}: {e}")
return {"error": str(e)}
@mcp.tool()
@require_scopes("okta.apps.manage", error_return_type="list")
@validate_ids("app_id")
async def delete_application(ctx: Context, app_id: str) -> list:
"""Delete an application by ID from the Okta organization.
This tool deletes an application by its ID from the Okta organization.
The user will be asked for confirmation before the deletion proceeds.
Parameters:
app_id (str, required): The ID of the application to delete
Returns:
List containing the result of the deletion operation.
"""
logger.warning(f"Deletion requested for application {app_id}")
fallback_payload = {
"confirmation_required": True,
"message": (
f"To confirm deletion of application {app_id}, please call the "
f"'confirm_delete_application' tool with app_id='{app_id}' and "
f"confirmation='DELETE'."
),
"app_id": app_id,
"tool_to_use": "confirm_delete_application",
}
outcome = await elicit_or_fallback(
ctx,
message=DELETE_APPLICATION.format(app_id=app_id),
schema=DeleteConfirmation,
fallback_payload=fallback_payload,
)
if not outcome.used_elicitation:
logger.info(f"Elicitation unavailable for application {app_id} — returning fallback confirmation prompt")
return [outcome.fallback_response]
if not outcome.confirmed:
logger.info(f"Application deletion cancelled for {app_id}")
return [{"message": "Application deletion cancelled by user."}]
manager = ctx.request_context.lifespan_context.okta_auth_manager
try:
client = await get_okta_client(manager)
logger.debug(f"Calling Okta API to delete application {app_id}")
result = await client.delete_application(app_id)
err = result[-1]
if err:
logger.error(f"Okta API error while deleting application {app_id}: {err}")
return [{"error": f"Error: {err}"}]
logger.info(f"Successfully deleted application: {app_id}")
return [{"message": f"Application {app_id} deleted successfully"}]
except Exception as e:
logger.error(f"Exception while deleting application {app_id}: {type(e).__name__}: {e}")
return [{"error": f"Exception: {e}"}]
@mcp.tool()
@require_scopes("okta.apps.manage", error_return_type="list")
@validate_ids("app_id")
async def confirm_delete_application(ctx: Context, app_id: str, confirmation: str) -> list:
"""Confirm and execute application deletion after receiving confirmation.
.. deprecated::
This tool exists for backward compatibility with clients that do not
support MCP elicitation. New clients should rely on the built-in
elicitation prompt in ``delete_application`` instead.
This function MUST ONLY be called after the human user has explicitly typed 'DELETE' as confirmation.
NEVER call this function automatically after delete_application.
Parameters:
app_id (str, required): The ID of the application to delete
confirmation (str, required): Must be 'DELETE' to confirm deletion
Returns:
List containing the result of the deletion operation.
"""
logger.info(f"Processing deletion confirmation for application {app_id} (deprecated flow)")
if confirmation != "DELETE":
logger.warning(f"Application deletion cancelled for {app_id} - incorrect confirmation")
return ["Error: Deletion cancelled. Confirmation 'DELETE' was not provided correctly."]
manager = ctx.request_context.lifespan_context.okta_auth_manager
try:
client = await get_okta_client(manager)
logger.debug(f"Calling Okta API to delete application {app_id}")
result = await client.delete_application(app_id)
err = result[-1]
if err:
logger.error(f"Okta API error while deleting application {app_id}: {err}")
return [f"Error: {err}"]
logger.info(f"Successfully deleted application: {app_id}")
return [f"Application {app_id} deleted successfully"]
except Exception as e:
logger.error(f"Exception while deleting application {app_id}: {type(e).__name__}: {e}")
return [f"Exception: {e}"]
@mcp.tool()
@require_scopes("okta.apps.manage", error_return_type="list")
@validate_ids("app_id")
async def activate_application(ctx: Context, app_id: str) -> list:
"""Activate an application in the Okta organization.
Parameters:
app_id (str, required): The ID of the application to activate
Returns:
List containing the result of the activation operation.
"""
logger.info(f"Activating application: {app_id}")
manager = ctx.request_context.lifespan_context.okta_auth_manager
try:
client = await get_okta_client(manager)
logger.debug(f"Calling Okta API to activate application {app_id}")
result = await client.activate_application(app_id)
err = result[-1]
if err:
logger.error(f"Okta API error while activating application {app_id}: {err}")
return [f"Error: {err}"]
logger.info(f"Successfully activated application: {app_id}")
return [f"Application {app_id} activated successfully"]
except Exception as e:
logger.error(f"Exception while activating application {app_id}: {type(e).__name__}: {e}")
return [f"Exception: {e}"]
@mcp.tool()
@require_scopes("okta.apps.manage", error_return_type="list")
@validate_ids("app_id")
async def deactivate_application(ctx: Context, app_id: str) -> list:
"""Deactivate an application in the Okta organization.
Parameters:
app_id (str, required): The ID of the application to deactivate
Returns:
List containing the result of the deactivation operation.
"""
logger.info(f"Deactivation requested for application: {app_id}")
outcome = await elicit_or_fallback(
ctx,
message=DEACTIVATE_APPLICATION.format(app_id=app_id),
schema=DeactivateConfirmation,
auto_confirm_on_fallback=True,
)
if not outcome.confirmed:
logger.info(f"Application deactivation cancelled for {app_id}")
return [{"message": "Application deactivation cancelled by user."}]
manager = ctx.request_context.lifespan_context.okta_auth_manager
try:
client = await get_okta_client(manager)
logger.debug(f"Calling Okta API to deactivate application {app_id}")
result = await client.deactivate_application(app_id)
err = result[-1]
if err:
logger.error(f"Okta API error while deactivating application {app_id}: {err}")
return [f"Error: {err}"]
logger.info(f"Successfully deactivated application: {app_id}")
return [f"Application {app_id} deactivated successfully"]
except Exception as e:
logger.error(f"Exception while deactivating application {app_id}: {type(e).__name__}: {e}")
return [f"Exception: {e}"]
# ---------------------------------------------------------------------------
# OIN catalog & app installation
# ---------------------------------------------------------------------------
@mcp.tool()
@require_scopes("okta.apps.read")
async def list_catalog_apps(ctx: Context, q: Optional[str] = None, limit: Optional[int] = None) -> Any:
"""Browse the Okta Integration Network (OIN) app catalog.
Use this to discover an app's ``name`` (the catalog key) to pass to
install_oin_app. Apps that support outbound provisioning list a provisioning
capability in their ``features`` (e.g. a SCIM 2.0 test app). A plain custom
SAML/OIDC app created with create_application cannot do provisioning; you need
an installed instance of a provisioning-capable catalog app.
Parameters:
q (str, optional): Filters the catalog by app name/keyword (e.g. "scim")
limit (int, optional): Maximum number of catalog entries to return
Returns:
Dict with a ``catalog_apps`` list (each has ``name``, ``displayName``,
``features``, ``signOnModes``), or error information.
"""
logger.info(f"Browsing OIN catalog (q='{q}', limit={limit})")
manager = ctx.request_context.lifespan_context.okta_auth_manager
try:
client = await get_okta_client(manager)
params: Dict[str, Any] = {}
if q:
params["q"] = q
if limit:
params["limit"] = limit
query_string = urlencode(params)
url = "/api/v1/catalog/apps" + (f"?{query_string}" if query_string else "")
executor = client.get_request_executor()
request, err = await executor.create_request(method="GET", url=url, body={}, headers={}, oauth=False)
if err:
logger.error(f"Error building catalog request: {err}")
return {"error": str(err)}
_, response_body, err = await executor.execute(request)
if err:
logger.error(f"Okta API error while browsing catalog: {err}")
return {"error": str(err)}
logger.info("Successfully retrieved OIN catalog page")
return {"catalog_apps": json.loads(response_body) if response_body else []}
except Exception as e:
logger.error(f"Exception while browsing OIN catalog: {type(e).__name__}: {e}")
return {"error": str(e)}
@mcp.tool()
@require_scopes("okta.apps.read")
@validate_ids("app_name", error_return_type="dict")
async def get_catalog_app(ctx: Context, app_name: str) -> Any:
"""Get a single OIN catalog app definition (including its provisioning schema).
Parameters:
app_name (str, required): The catalog app key (from list_catalog_apps)
Returns:
Dict with the catalog app definition, or error information.
"""
logger.info(f"Getting OIN catalog app: {app_name}")
manager = ctx.request_context.lifespan_context.okta_auth_manager
try:
client = await get_okta_client(manager)
url = f"/api/v1/catalog/apps/{app_name}?expand=schema"
executor = client.get_request_executor()
request, err = await executor.create_request(method="GET", url=url, body={}, headers={}, oauth=False)
if err:
logger.error(f"Error building catalog-app request for {app_name}: {err}")
return {"error": str(err)}
_, response_body, err = await executor.execute(request)
if err:
logger.error(f"Okta API error while getting catalog app {app_name}: {err}")
return {"error": str(err)}
logger.info(f"Successfully retrieved OIN catalog app: {app_name}")
return json.loads(response_body) if response_body else {}
except Exception as e:
logger.error(f"Exception while getting catalog app {app_name}: {type(e).__name__}: {e}")
return {"error": str(e)}
@mcp.tool()
@require_scopes("okta.apps.manage")
async def install_oin_app(
ctx: Context,
name: str,
label: str,
sign_on_mode: str,
settings: Optional[Dict[str, Any]] = None,
activate: bool = True,
) -> Any:
"""Install an instance of an OIN catalog app (e.g. a provisioning-capable SCIM app).
Unlike create_application (which builds custom apps), this preserves the
catalog ``name`` key. The typed SDK create path strips ``name`` from the
request body, so a catalog/OIN app can't be installed through create_application;
this issues the request directly. Provisioning capability is determined by the
catalog app definition at install time — it cannot be added to a custom app
afterwards. Discover ``name`` and the allowed ``signOnMode`` values via
list_catalog_apps / get_catalog_app.
Parameters:
name (str, required): The OIN catalog app key (e.g. from list_catalog_apps)
label (str, required): Display label for the installed instance
sign_on_mode (str, required): A sign-on mode the catalog app supports
(e.g. SAML_2_0, OPENID_CONNECT, SECURE_PASSWORD_STORE, BOOKMARK)
settings (dict, optional): Additional app settings/profile some OIN apps require
activate (bool, optional): Activate the app on creation. Defaults to True.
Returns:
Dict with the installed application, or error information.
"""
logger.info(f"Installing OIN app '{name}' (label='{label}', signOnMode='{sign_on_mode}')")
manager = ctx.request_context.lifespan_context.okta_auth_manager
try:
client = await get_okta_client(manager)
app_body: Dict[str, Any] = {"name": name, "label": label, "signOnMode": sign_on_mode}
if settings:
app_body["settings"] = settings
query_string = urlencode({"activate": "true" if activate else "false"})
url = f"/api/v1/apps?{query_string}"
executor = client.get_request_executor()
request, err = await executor.create_request(method="POST", url=url, body=app_body, headers={}, oauth=False)
if err:
logger.error(f"Error building OIN install request for '{name}': {err}")
return {"error": str(err)}
_, response_body, err = await executor.execute(request)
if err:
logger.error(f"Okta API error while installing OIN app '{name}': {err}")
return {"error": str(err)}
logger.info(f"Successfully installed OIN app '{name}'")
return json.loads(response_body) if response_body else {}
except Exception as e:
logger.error(f"Exception while installing OIN app '{name}': {type(e).__name__}: {e}")
return {"error": str(e)}