okta-mcp-server 1.1.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. okta_mcp_server-1.1.2/.gitignore +82 -0
  2. okta_mcp_server-1.1.2/CHANGELOG.md +34 -0
  3. okta_mcp_server-1.1.2/LICENSE +194 -0
  4. okta_mcp_server-1.1.2/NOTICE.md +303 -0
  5. okta_mcp_server-1.1.2/PKG-INFO +1029 -0
  6. okta_mcp_server-1.1.2/README.md +994 -0
  7. okta_mcp_server-1.1.2/SECURITY.md +4 -0
  8. okta_mcp_server-1.1.2/pyproject.toml +83 -0
  9. okta_mcp_server-1.1.2/src/okta_mcp_server/__init__.py +15 -0
  10. okta_mcp_server-1.1.2/src/okta_mcp_server/server.py +153 -0
  11. okta_mcp_server-1.1.2/src/okta_mcp_server/tools/__init__.py +6 -0
  12. okta_mcp_server-1.1.2/src/okta_mcp_server/tools/applications/__init__.py +6 -0
  13. okta_mcp_server-1.1.2/src/okta_mcp_server/tools/applications/applications.py +446 -0
  14. okta_mcp_server-1.1.2/src/okta_mcp_server/tools/customization/__init__.py +6 -0
  15. okta_mcp_server-1.1.2/src/okta_mcp_server/tools/customization/brands/__init__.py +6 -0
  16. okta_mcp_server-1.1.2/src/okta_mcp_server/tools/customization/brands/brands.py +516 -0
  17. okta_mcp_server-1.1.2/src/okta_mcp_server/tools/customization/custom_domains/__init__.py +6 -0
  18. okta_mcp_server-1.1.2/src/okta_mcp_server/tools/customization/custom_domains/custom_domains.py +528 -0
  19. okta_mcp_server-1.1.2/src/okta_mcp_server/tools/customization/custom_pages/__init__.py +6 -0
  20. okta_mcp_server-1.1.2/src/okta_mcp_server/tools/customization/custom_pages/custom_pages.py +1103 -0
  21. okta_mcp_server-1.1.2/src/okta_mcp_server/tools/customization/custom_templates/__init__.py +6 -0
  22. okta_mcp_server-1.1.2/src/okta_mcp_server/tools/customization/custom_templates/custom_templates.py +1023 -0
  23. okta_mcp_server-1.1.2/src/okta_mcp_server/tools/customization/email_domains/__init__.py +6 -0
  24. okta_mcp_server-1.1.2/src/okta_mcp_server/tools/customization/email_domains/email_domains.py +568 -0
  25. okta_mcp_server-1.1.2/src/okta_mcp_server/tools/customization/themes/__init__.py +6 -0
  26. okta_mcp_server-1.1.2/src/okta_mcp_server/tools/customization/themes/themes.py +650 -0
  27. okta_mcp_server-1.1.2/src/okta_mcp_server/tools/device_assurance/__init__.py +6 -0
  28. okta_mcp_server-1.1.2/src/okta_mcp_server/tools/device_assurance/device_assurance.py +886 -0
  29. okta_mcp_server-1.1.2/src/okta_mcp_server/tools/groups/__init__.py +6 -0
  30. okta_mcp_server-1.1.2/src/okta_mcp_server/tools/groups/groups.py +607 -0
  31. okta_mcp_server-1.1.2/src/okta_mcp_server/tools/policies/__init__.py +6 -0
  32. okta_mcp_server-1.1.2/src/okta_mcp_server/tools/policies/policies.py +662 -0
  33. okta_mcp_server-1.1.2/src/okta_mcp_server/tools/system_logs/__init__.py +6 -0
  34. okta_mcp_server-1.1.2/src/okta_mcp_server/tools/system_logs/login_failures.py +280 -0
  35. okta_mcp_server-1.1.2/src/okta_mcp_server/tools/system_logs/system_logs.py +326 -0
  36. okta_mcp_server-1.1.2/src/okta_mcp_server/tools/users/__init__.py +6 -0
  37. okta_mcp_server-1.1.2/src/okta_mcp_server/tools/users/users.py +654 -0
  38. okta_mcp_server-1.1.2/src/okta_mcp_server/utils/__init__.py +6 -0
  39. okta_mcp_server-1.1.2/src/okta_mcp_server/utils/auth/__init__.py +6 -0
  40. okta_mcp_server-1.1.2/src/okta_mcp_server/utils/auth/auth_manager.py +396 -0
  41. okta_mcp_server-1.1.2/src/okta_mcp_server/utils/client.py +29 -0
  42. okta_mcp_server-1.1.2/src/okta_mcp_server/utils/elicitation.py +191 -0
  43. okta_mcp_server-1.1.2/src/okta_mcp_server/utils/messages.py +168 -0
  44. okta_mcp_server-1.1.2/src/okta_mcp_server/utils/pagination.py +279 -0
  45. okta_mcp_server-1.1.2/src/okta_mcp_server/utils/scope_guard.py +272 -0
  46. okta_mcp_server-1.1.2/src/okta_mcp_server/utils/scope_registry.py +176 -0
  47. okta_mcp_server-1.1.2/src/okta_mcp_server/utils/scope_stubs.py +130 -0
  48. okta_mcp_server-1.1.2/src/okta_mcp_server/utils/validation.py +574 -0
@@ -0,0 +1,82 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # Distribution / packaging
7
+ .Python
8
+ build/
9
+ develop-eggs/
10
+ dist/
11
+ downloads/
12
+ eggs/
13
+ .eggs/
14
+ lib/
15
+ lib64/
16
+ parts/
17
+ sdist/
18
+ var/
19
+ wheels/
20
+ share/python-wheels/
21
+ *.egg-info/
22
+ .installed.cfg
23
+ *.egg
24
+ MANIFEST
25
+
26
+ # PyInstaller
27
+ # Usually these files are written by a python script from a template
28
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
29
+ *.manifest
30
+ *.spec
31
+
32
+ # Installer logs
33
+ pip-log.txt
34
+ pip-delete-this-directory.txt
35
+
36
+ # Unit test / coverage reports
37
+ htmlcov/
38
+ .tox/
39
+ .nox/
40
+ .coverage
41
+ .coverage.*
42
+ .cache
43
+ nosetests.xml
44
+ coverage.xml
45
+ *.cover
46
+ *.py,cover
47
+ .hypothesis/
48
+ .pytest_cache/
49
+ cover/
50
+
51
+ # Environments
52
+ .env
53
+ .venv
54
+ env/
55
+ venv/
56
+ ENV/
57
+ env.bak/
58
+ venv.bak/
59
+
60
+ # PyCharm
61
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
62
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
63
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
64
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
65
+ .idea/
66
+
67
+ # Visual Studio Code
68
+ # Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
69
+ # that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
70
+ # and can be added to the global gitignore or merged into this file. However, if you prefer,
71
+ # you could uncomment the following to ignore the entire vscode folder
72
+ .vscode/
73
+
74
+ # Ruff stuff:
75
+ .ruff_cache/
76
+
77
+ # Cursor
78
+ # Cursor is an AI-powered code editor. `.cursorignore` specifies files/directories to
79
+ # exclude from AI features like autocomplete and code analysis. Recommended for sensitive data
80
+ # refer to https://docs.cursor.com/context/ignore-files
81
+ .cursorignore
82
+ .cursorindexingignore
@@ -0,0 +1,34 @@
1
+ # Changelog
2
+ All notable changes to this project will be documented in this file.
3
+
4
+ ## v1.1.2
5
+
6
+ ### Features
7
+ - PyPI Release changes
8
+
9
+ ## v1.1.1
10
+
11
+ ### Features
12
+ - GA Release changes
13
+
14
+ ## v1.1.0
15
+
16
+ ### Features
17
+ - Added Device Assurance Policy tools (`list_device_assurance_policies`, `get_device_assurance_policy`, `create_device_assurance_policy`, `replace_device_assurance_policy`, `delete_device_assurance_policy`) with support for Android, iOS, macOS, Windows, and ChromeOS platforms.
18
+ - Upgraded Okta SDK dependency to v3.4.1.
19
+ - Added customization tools for brands, custom domains, custom pages, custom templates, email domains, and themes.
20
+ - Added scope-based tool loading — tools are now dynamically enabled based on the OAuth scopes available to the configured API token.
21
+ - Added `login_failures` system log tool for querying recent authentication failures.
22
+
23
+ ### Bug Fixes
24
+ - Fixed pagination bug introduced by Okta SDK v3 upgrade.
25
+ - Fixed `add_user_to_group` to be idempotent (no longer errors if user is already a member).
26
+ - Fixed `get_logs` to support filtering by `DENY` outcome.
27
+ - Added `fetch_all` support to `list_applications`.
28
+
29
+ ### Improvements
30
+ - Pagination improvements with better handling of large result sets.
31
+
32
+ ## v1.0.0
33
+
34
+ - Initial release of the self hosted okta-mcp-server.
@@ -0,0 +1,194 @@
1
+ Apache License
2
+ ==============
3
+
4
+ _Version 2.0, January 2004_
5
+ _&lt;<http://www.apache.org/licenses/>&gt;_
6
+
7
+ ### Terms and Conditions for use, reproduction, and distribution
8
+
9
+ #### 1. Definitions
10
+
11
+ “License” shall mean the terms and conditions for use, reproduction, and
12
+ distribution as defined by Sections 1 through 9 of this document.
13
+
14
+ “Licensor” shall mean the copyright owner or entity authorized by the copyright
15
+ owner that is granting the License.
16
+
17
+ “Legal Entity” shall mean the union of the acting entity and all other entities
18
+ that control, are controlled by, or are under common control with that entity.
19
+ For the purposes of this definition, “control” means **(i)** the power, direct or
20
+ indirect, to cause the direction or management of such entity, whether by
21
+ contract or otherwise, or **(ii)** ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or **(iii)** beneficial ownership of such entity.
23
+
24
+ “You” (or “Your”) shall mean an individual or Legal Entity exercising
25
+ permissions granted by this License.
26
+
27
+ “Source” form shall mean the preferred form for making modifications, including
28
+ but not limited to software source code, documentation source, and configuration
29
+ files.
30
+
31
+ “Object” form shall mean any form resulting from mechanical transformation or
32
+ translation of a Source form, including but not limited to compiled object code,
33
+ generated documentation, and conversions to other media types.
34
+
35
+ “Work” shall mean the work of authorship, whether in Source or Object form, made
36
+ available under the License, as indicated by a copyright notice that is included
37
+ in or attached to the work (an example is provided in the Appendix below).
38
+
39
+ “Derivative Works” shall mean any work, whether in Source or Object form, that
40
+ is based on (or derived from) the Work and for which the editorial revisions,
41
+ annotations, elaborations, or other modifications represent, as a whole, an
42
+ original work of authorship. For the purposes of this License, Derivative Works
43
+ shall not include works that remain separable from, or merely link (or bind by
44
+ name) to the interfaces of, the Work and Derivative Works thereof.
45
+
46
+ “Contribution” shall mean any work of authorship, including the original version
47
+ of the Work and any modifications or additions to that Work or Derivative Works
48
+ thereof, that is intentionally submitted to Licensor for inclusion in the Work
49
+ by the copyright owner or by an individual or Legal Entity authorized to submit
50
+ on behalf of the copyright owner. For the purposes of this definition,
51
+ “submitted” means any form of electronic, verbal, or written communication sent
52
+ to the Licensor or its representatives, including but not limited to
53
+ communication on electronic mailing lists, source code control systems, and
54
+ issue tracking systems that are managed by, or on behalf of, the Licensor for
55
+ the purpose of discussing and improving the Work, but excluding communication
56
+ that is conspicuously marked or otherwise designated in writing by the copyright
57
+ owner as “Not a Contribution.”
58
+
59
+ “Contributor” shall mean Licensor and any individual or Legal Entity on behalf
60
+ of whom a Contribution has been received by Licensor and subsequently
61
+ incorporated within the Work.
62
+
63
+ #### 2. Grant of Copyright License
64
+
65
+ Subject to the terms and conditions of this License, each Contributor hereby
66
+ grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,
67
+ irrevocable copyright license to reproduce, prepare Derivative Works of,
68
+ publicly display, publicly perform, sublicense, and distribute the Work and such
69
+ Derivative Works in Source or Object form.
70
+
71
+ #### 3. Grant of Patent License
72
+
73
+ Subject to the terms and conditions of this License, each Contributor hereby
74
+ grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,
75
+ irrevocable (except as stated in this section) patent license to make, have
76
+ made, use, offer to sell, sell, import, and otherwise transfer the Work, where
77
+ such license applies only to those patent claims licensable by such Contributor
78
+ that are necessarily infringed by their Contribution(s) alone or by combination
79
+ of their Contribution(s) with the Work to which such Contribution(s) was
80
+ submitted. If You institute patent litigation against any entity (including a
81
+ cross-claim or counterclaim in a lawsuit) alleging that the Work or a
82
+ Contribution incorporated within the Work constitutes direct or contributory
83
+ patent infringement, then any patent licenses granted to You under this License
84
+ for that Work shall terminate as of the date such litigation is filed.
85
+
86
+ #### 4. Redistribution
87
+
88
+ You may reproduce and distribute copies of the Work or Derivative Works thereof
89
+ in any medium, with or without modifications, and in Source or Object form,
90
+ provided that You meet the following conditions:
91
+
92
+ * **(a)** You must give any other recipients of the Work or Derivative Works a copy of
93
+ this License; and
94
+ * **(b)** You must cause any modified files to carry prominent notices stating that You
95
+ changed the files; and
96
+ * **(c)** You must retain, in the Source form of any Derivative Works that You distribute,
97
+ all copyright, patent, trademark, and attribution notices from the Source form
98
+ of the Work, excluding those notices that do not pertain to any part of the
99
+ Derivative Works; and
100
+ * **(d)** If the Work includes a “NOTICE” text file as part of its distribution, then any
101
+ Derivative Works that You distribute must include a readable copy of the
102
+ attribution notices contained within such NOTICE file, excluding those notices
103
+ that do not pertain to any part of the Derivative Works, in at least one of the
104
+ following places: within a NOTICE text file distributed as part of the
105
+ Derivative Works; within the Source form or documentation, if provided along
106
+ with the Derivative Works; or, within a display generated by the Derivative
107
+ Works, if and wherever such third-party notices normally appear. The contents of
108
+ the NOTICE file are for informational purposes only and do not modify the
109
+ License. You may add Your own attribution notices within Derivative Works that
110
+ You distribute, alongside or as an addendum to the NOTICE text from the Work,
111
+ provided that such additional attribution notices cannot be construed as
112
+ modifying the License.
113
+
114
+ You may add Your own copyright statement to Your modifications and may provide
115
+ additional or different license terms and conditions for use, reproduction, or
116
+ distribution of Your modifications, or for any such Derivative Works as a whole,
117
+ provided Your use, reproduction, and distribution of the Work otherwise complies
118
+ with the conditions stated in this License.
119
+
120
+ #### 5. Submission of Contributions
121
+
122
+ Unless You explicitly state otherwise, any Contribution intentionally submitted
123
+ for inclusion in the Work by You to the Licensor shall be under the terms and
124
+ conditions of this License, without any additional terms or conditions.
125
+ Notwithstanding the above, nothing herein shall supersede or modify the terms of
126
+ any separate license agreement you may have executed with Licensor regarding
127
+ such Contributions.
128
+
129
+ #### 6. Trademarks
130
+
131
+ This License does not grant permission to use the trade names, trademarks,
132
+ service marks, or product names of the Licensor, except as required for
133
+ reasonable and customary use in describing the origin of the Work and
134
+ reproducing the content of the NOTICE file.
135
+
136
+ #### 7. Disclaimer of Warranty
137
+
138
+ Unless required by applicable law or agreed to in writing, Licensor provides the
139
+ Work (and each Contributor provides its Contributions) on an “AS IS” BASIS,
140
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied,
141
+ including, without limitation, any warranties or conditions of TITLE,
142
+ NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are
143
+ solely responsible for determining the appropriateness of using or
144
+ redistributing the Work and assume any risks associated with Your exercise of
145
+ permissions under this License.
146
+
147
+ #### 8. Limitation of Liability
148
+
149
+ In no event and under no legal theory, whether in tort (including negligence),
150
+ contract, or otherwise, unless required by applicable law (such as deliberate
151
+ and grossly negligent acts) or agreed to in writing, shall any Contributor be
152
+ liable to You for damages, including any direct, indirect, special, incidental,
153
+ or consequential damages of any character arising as a result of this License or
154
+ out of the use or inability to use the Work (including but not limited to
155
+ damages for loss of goodwill, work stoppage, computer failure or malfunction, or
156
+ any and all other commercial damages or losses), even if such Contributor has
157
+ been advised of the possibility of such damages.
158
+
159
+ #### 9. Accepting Warranty or Additional Liability
160
+
161
+ While redistributing the Work or Derivative Works thereof, You may choose to
162
+ offer, and charge a fee for, acceptance of support, warranty, indemnity, or
163
+ other liability obligations and/or rights consistent with this License. However,
164
+ in accepting such obligations, You may act only on Your own behalf and on Your
165
+ sole responsibility, not on behalf of any other Contributor, and only if You
166
+ agree to indemnify, defend, and hold each Contributor harmless for any liability
167
+ incurred by, or claims asserted against, such Contributor by reason of your
168
+ accepting any such warranty or additional liability.
169
+
170
+ _END OF TERMS AND CONDITIONS_
171
+
172
+ ### APPENDIX: How to apply the Apache License to your work
173
+
174
+ To apply the Apache License to your work, attach the following boilerplate
175
+ notice, with the fields enclosed by brackets `[]` replaced with your own
176
+ identifying information. (Don't include the brackets!) The text should be
177
+ enclosed in the appropriate comment syntax for the file format. We also
178
+ recommend that a file or class name and description of purpose be included on
179
+ the same “printed page” as the copyright notice for easier identification within
180
+ third-party archives.
181
+
182
+ Copyright [yyyy]-Present Okta
183
+
184
+ Licensed under the Apache License, Version 2.0 (the "License");
185
+ you may not use this file except in compliance with the License.
186
+ You may obtain a copy of the License at
187
+
188
+ http://www.apache.org/licenses/LICENSE-2.0
189
+
190
+ Unless required by applicable law or agreed to in writing, software
191
+ distributed under the License is distributed on an "AS IS" BASIS,
192
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
193
+ See the License for the specific language governing permissions and
194
+ limitations under the License.
@@ -0,0 +1,303 @@
1
+ The Okta software accompanied by this notice is provided pursuant to the following terms:
2
+
3
+ Copyright © 2025-Present, Okta, Inc.
4
+
5
+ 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.
6
+
7
+ **APACHE LICENSE NOTICE :**
8
+ The following components have been licensed under the Apache 2.0 license and all adhere to the below NOTICE:
9
+
10
+ Apache License
11
+ Version 2.0, January 2004
12
+ http://www.apache.org/licenses/
13
+
14
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
15
+
16
+ 1. Definitions.
17
+
18
+ "License" shall mean the terms and conditions for use, reproduction,
19
+ and distribution as defined by Sections 1 through 9 of this document.
20
+
21
+ "Licensor" shall mean the copyright owner or entity authorized by
22
+ the copyright owner that is granting the License.
23
+
24
+ "Legal Entity" shall mean the union of the acting entity and all
25
+ other entities that control, are controlled by, or are under common
26
+ control with that entity. For the purposes of this definition,
27
+ "control" means (i) the power, direct or indirect, to cause the
28
+ direction or management of such entity, whether by contract or
29
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
30
+ outstanding shares, or (iii) beneficial ownership of such entity.
31
+
32
+ "You" (or "Your") shall mean an individual or Legal Entity
33
+ exercising permissions granted by this License.
34
+
35
+ "Source" form shall mean the preferred form for making modifications,
36
+ including but not limited to software source code, documentation
37
+ source, and configuration files.
38
+
39
+ "Object" form shall mean any form resulting from mechanical
40
+ transformation or translation of a Source form, including but
41
+ not limited to compiled object code, generated documentation,
42
+ and conversions to other media types.
43
+
44
+ "Work" shall mean the work of authorship, whether in Source or
45
+ Object form, made available under the License, as indicated by a
46
+ copyright notice that is included in or attached to the work
47
+ (an example is provided in the Appendix below).
48
+
49
+ "Derivative Works" shall mean any work, whether in Source or Object
50
+ form, that is based on (or derived from) the Work and for which the
51
+ editorial revisions, annotations, elaborations, or other modifications
52
+ represent, as a whole, an original work of authorship. For the purposes
53
+ of this License, Derivative Works shall not include works that remain
54
+ separable from, or merely link (or bind by name) to the interfaces of,
55
+ the Work and Derivative Works thereof.
56
+
57
+ "Contribution" shall mean any work of authorship, including
58
+ the original version of the Work and any modifications or additions
59
+ to that Work or Derivative Works thereof, that is intentionally
60
+ submitted to Licensor for inclusion in the Work by the copyright owner
61
+ or by an individual or Legal Entity authorized to submit. For the
62
+ purposes of this definition, "submitted" means any form of electronic,
63
+ verbal, or written communication sent to the Licensor or its
64
+ representatives, including but not limited to communication on electronic
65
+ mailing lists, source code control systems, and issue tracking systems
66
+ that are managed by, or on behalf of, the Licensor for the purpose of
67
+ discussing and improving the Work, but excluding communication that is
68
+ conspicuously marked or otherwise designated in writing by the copyright
69
+ owner as "Not a Contribution."
70
+
71
+ "Contributor" shall mean Licensor and any individual or Legal Entity
72
+ on behalf of whom a Contribution has been received by Licensor and
73
+ subsequently incorporated within the Work.
74
+
75
+ 2. Grant of Copyright License. Subject to the terms and conditions of
76
+ this License, each Contributor hereby grants to You a perpetual,
77
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
78
+ copyright license to reproduce, prepare Derivative Works of,
79
+ publicly display, publicly perform, sublicense, and distribute the
80
+ Work and such Derivative Works in Source or Object form.
81
+
82
+ 3. Grant of Patent License. Subject to the terms and conditions of
83
+ this License, each Contributor hereby grants to You a perpetual,
84
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
85
+ (except as stated in this section) patent license to make, have made,
86
+ use, offer to sell, sell, import, and otherwise transfer the Work,
87
+ where such license applies only to those patent claims licensable
88
+ by such Contributor that are necessarily infringed by their
89
+ Contribution(s) alone or by combination of their Contribution(s)
90
+ with the Work to which such Contribution(s) was submitted. If You
91
+ institute patent litigation against any entity (including a
92
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
93
+ or a Contribution incorporated within the Work constitutes direct
94
+ or contributory patent infringement, then any patent licenses
95
+ granted to You under this License for that Work shall terminate
96
+ as of the date such litigation is filed.
97
+
98
+ 4. Redistribution. You may reproduce and distribute copies of the
99
+ Work or Derivative Works thereof in any medium, with or without
100
+ modifications, and in Source or Object form, provided that You
101
+ meet the following conditions:
102
+
103
+ (a) You must give any other recipients of the Work or
104
+ Derivative Works a copy of this License; and
105
+
106
+ (b) You must cause any modified files to carry prominent notices
107
+ stating that You changed the files; and
108
+
109
+ (c) You must retain, in the Source form of any Derivative Works
110
+ that You distribute, all copyright, patent, trademark, and
111
+ attribution notices from the Source form of the Work,
112
+ excluding those notices that do not pertain to any part of
113
+ the Derivative Works; and
114
+
115
+ (d) If the Work includes a "NOTICE" text file as part of its
116
+ distribution, then any Derivative Works that You distribute must
117
+ include a readable copy of the attribution notices contained
118
+ within such NOTICE file, excluding those notices that do not
119
+ pertain to any part of the Derivative Works, in at least one
120
+ of the following places: within a NOTICE text file distributed
121
+ as part of the Derivative Works; within the Source form or
122
+ documentation, if provided along with the Derivative Works; or,
123
+ within a display generated by the Derivative Works, if and
124
+ wherever such third-party notices normally appear. The contents
125
+ of the NOTICE file are for informational purposes only and
126
+ do not modify the License. You may add Your own attribution
127
+ notices within Derivative Works that You distribute, alongside
128
+ or as an addendum to the NOTICE text from the Work, provided
129
+ that such additional attribution notices cannot be construed
130
+ as modifying the License.
131
+
132
+ You may add Your own copyright statement to Your modifications and
133
+ may provide additional or different license terms and conditions
134
+ for use, reproduction, or distribution of Your modifications, or
135
+ for any such Derivative Works as a whole, provided Your use,
136
+ reproduction, and distribution of the Work otherwise complies with
137
+ the conditions stated in this License.
138
+
139
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
140
+ any Contribution intentionally submitted for inclusion in the Work
141
+ by You to the Licensor shall be under the terms and conditions of
142
+ this License, without any additional terms or conditions.
143
+ Notwithstanding the above, nothing herein shall supersede or modify
144
+ the terms of any separate license agreement you may have executed
145
+ with Licensor regarding such Contributions.
146
+
147
+ 6. Trademarks. This License does not grant permission to use the trade
148
+ names, trademarks, service marks, or product names of the Licensor,
149
+ except as required for reasonable and customary use in describing the
150
+ origin of the Work and reproducing the content of the NOTICE file.
151
+
152
+ 7. Disclaimer of Warranty. Unless required by applicable law or
153
+ agreed to in writing, Licensor provides the Work (and each
154
+ Contributor provides its Contributions) on an "AS IS" BASIS,
155
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
156
+ implied, including, without limitation, any warranties or conditions
157
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
158
+ PARTICULAR PURPOSE. You are solely responsible for determining the
159
+ appropriateness of using or redistributing the Work and assume any
160
+ risks associated with Your exercise of permissions under this License.
161
+
162
+ 8. Limitation of Liability. In no event and under no legal theory,
163
+ whether in tort (including negligence), contract, or otherwise,
164
+ unless required by applicable law (such as deliberate and grossly
165
+ negligent acts) or agreed to in writing, shall any Contributor be
166
+ liable to You for damages, including any direct, indirect, special,
167
+ incidental, or consequential damages of any character arising as a
168
+ result of this License or out of the use or inability to use the
169
+ Work (including but not limited to damages for loss of goodwill,
170
+ work stoppage, computer failure or malfunction, or any and all
171
+ other commercial damages or losses), even if such Contributor
172
+ has been advised of the possibility of such damages.
173
+
174
+ 9. Accepting Warranty or Additional Liability. While redistributing
175
+ the Work or Derivative Works thereof, You may choose to offer,
176
+ and charge a fee for, acceptance of support, warranty, indemnity,
177
+ or other liability obligations and/or rights consistent with this
178
+ License. However, in accepting such obligations, You may act only
179
+ on Your own behalf and on Your sole responsibility, not on behalf
180
+ of any other Contributor, and only if You agree to indemnify,
181
+ defend, and hold each Contributor harmless for any liability
182
+ incurred by, or claims asserted against, such Contributor by reason
183
+ of your accepting any such warranty or additional liability.
184
+
185
+ **okta-sdk-python** - Apache 2.0 License
186
+ Copyright 2018 Okta, Inc.
187
+ GitHub: https://github.com/okta/okta-sdk-python
188
+ Latest Version: 2.9.1
189
+
190
+ **requests** - Apache 2.0 License
191
+ Copyright 2019 Kenneth Reitz
192
+ GitHub: https://github.com/psf/requests
193
+ Latest Version: 2.31.0
194
+
195
+ **MIT LICENSE NOTICE :**
196
+
197
+ The following components have been licensed under the MIT license and all adhere to the below NOTICE:
198
+ Permission is hereby granted, free of charge, to any person obtaining a copy
199
+ of this software and associated documentation files (the "Software"), to deal
200
+ in the Software without restriction, including without limitation the rights
201
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
202
+ copies of the Software, and to permit persons to whom the Software is
203
+ furnished to do so, subject to the following conditions:
204
+
205
+ The above copyright notice and this permission notice shall be included in all
206
+ copies or substantial portions of the Software.
207
+
208
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
209
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
210
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
211
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
212
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
213
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
214
+ SOFTWARE.
215
+
216
+ **FastAPI** - MIT License
217
+ Copyright (c) 2018 Sebastián Ramírez
218
+ GitHub: https://github.com/tiangolo/fastapi
219
+ Latest Version: 0.110.0
220
+
221
+ **Pydantic** - MIT License
222
+ Copyright (c) 2017 Samuel Colvin
223
+ GitHub: https://github.com/pydantic/pydantic
224
+ Latest Version: 2.5.3
225
+
226
+ **python-jose** - MIT License
227
+ Copyright (c) 2014-2015 Michael Davis
228
+ GitHub: https://github.com/mpdavis/python-jose
229
+ Latest Version: 3.3.0
230
+
231
+ **bcrypt** - MIT License
232
+ Copyright (c) 2013-2016, PyCA Authors
233
+ GitHub: https://github.com/pyca/bcrypt
234
+ Latest Version: 4.1.2
235
+
236
+ **PyJWT** - MIT License
237
+ Copyright (c) 2015-2022, Jose Padilla
238
+ GitHub: https://github.com/jpadilla/pyjwt
239
+ Latest Version: 2.8.0
240
+
241
+ **Gunicorn** - MIT License
242
+ Copyright (c) 2009-2019 Benoit Chesneau
243
+ GitHub: https://github.com/benoitc/gunicorn
244
+ Latest Version: 21.2.0
245
+
246
+ **loguru** - MIT License
247
+ Copyright (c) 2017-2024, Delgan
248
+ GitHub: https://github.com/Delgan/loguru
249
+ Latest Version: 0.7.2
250
+
251
+ **mcp** - MIT License
252
+ Copyright (c) 2023-2024, Christopher Hay
253
+ GitHub: https://github.com/chrishayuk/mcp-cli
254
+ Latest Version: 1.9.2
255
+
256
+ **ruff** - MIT License
257
+ Copyright (c) 2022 Charles Marsh
258
+ GitHub: https://github.com/astral-sh/ruff
259
+ Latest Version: 0.1.9
260
+
261
+ **keyring** - MIT License
262
+ Copyright (c) 2009-2023 Jason R. Coombs
263
+ GitHub: https://github.com/jaraco/keyring
264
+ Latest Version: 24.3.0
265
+
266
+ **BSD LICENSE NOTICE :**
267
+ The following components have been licensed under the BSD license and all adhere to the below NOTICE:
268
+ Redistribution and use in source and binary forms, with or without
269
+ modification, are permitted provided that the following conditions are met:
270
+
271
+ * Redistributions of source code must retain the above copyright notice, this
272
+ list of conditions and the following disclaimer.
273
+
274
+ * Redistributions in binary form must reproduce the above copyright notice,
275
+ this list of conditions and the following disclaimer in the documentation
276
+ and/or other materials provided with the distribution.
277
+
278
+ * Neither the name of the copyright holder nor the names of its
279
+ contributors may be used to endorse or promote products derived from
280
+ this software without specific prior written permission.
281
+
282
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
283
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
284
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
285
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
286
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
287
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
288
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
289
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
290
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
291
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
292
+
293
+ **Uvicorn** - BSD 3-Clause License
294
+ Copyright (c) 2017-present, Encode OSS Ltd. All rights reserved.
295
+ GitHub: https://github.com/encode/uvicorn
296
+ Latest Version: 0.23.2
297
+
298
+ **Passlib** - BSD 3-Clause License
299
+ Copyright (c) 2008-2014, Assurance Technologies, LLC. All rights reserved.
300
+ GitHub: https://github.com/bitprophet/passlib
301
+ Latest Version: 1.7.4
302
+
303
+