loopix-sdk 2.30.0__py3-none-any.whl

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 (238) hide show
  1. loopix/__init__.py +260 -0
  2. loopix/api/__init__.py +287 -0
  3. loopix/api/client/__init__.py +8 -0
  4. loopix/api/client/api/__init__.py +1 -0
  5. loopix/api/client/api/sandboxes/__init__.py +1 -0
  6. loopix/api/client/api/sandboxes/delete_sandboxes_sandbox_id.py +161 -0
  7. loopix/api/client/api/sandboxes/get_sandboxes.py +176 -0
  8. loopix/api/client/api/sandboxes/get_sandboxes_metrics.py +173 -0
  9. loopix/api/client/api/sandboxes/get_sandboxes_sandbox_id.py +163 -0
  10. loopix/api/client/api/sandboxes/get_sandboxes_sandbox_id_logs.py +199 -0
  11. loopix/api/client/api/sandboxes/get_sandboxes_sandbox_id_metrics.py +212 -0
  12. loopix/api/client/api/sandboxes/get_v2_sandboxes.py +230 -0
  13. loopix/api/client/api/sandboxes/get_v_2_sandboxes_sandbox_id_logs.py +254 -0
  14. loopix/api/client/api/sandboxes/post_sandboxes.py +172 -0
  15. loopix/api/client/api/sandboxes/post_sandboxes_sandbox_id_connect.py +193 -0
  16. loopix/api/client/api/sandboxes/post_sandboxes_sandbox_id_pause.py +187 -0
  17. loopix/api/client/api/sandboxes/post_sandboxes_sandbox_id_refreshes.py +181 -0
  18. loopix/api/client/api/sandboxes/post_sandboxes_sandbox_id_resume.py +189 -0
  19. loopix/api/client/api/sandboxes/post_sandboxes_sandbox_id_snapshots.py +195 -0
  20. loopix/api/client/api/sandboxes/post_sandboxes_sandbox_id_timeout.py +193 -0
  21. loopix/api/client/api/sandboxes/put_sandboxes_sandbox_id_network.py +199 -0
  22. loopix/api/client/api/snapshots/__init__.py +1 -0
  23. loopix/api/client/api/snapshots/get_snapshots.py +202 -0
  24. loopix/api/client/api/tags/__init__.py +1 -0
  25. loopix/api/client/api/tags/delete_templates_tags.py +174 -0
  26. loopix/api/client/api/tags/get_templates_template_id_tags.py +172 -0
  27. loopix/api/client/api/tags/post_templates_tags.py +176 -0
  28. loopix/api/client/api/templates/__init__.py +1 -0
  29. loopix/api/client/api/templates/delete_templates_template_id.py +157 -0
  30. loopix/api/client/api/templates/get_templates.py +172 -0
  31. loopix/api/client/api/templates/get_templates_aliases_alias.py +167 -0
  32. loopix/api/client/api/templates/get_templates_template_id.py +195 -0
  33. loopix/api/client/api/templates/get_templates_template_id_builds_build_id_logs.py +272 -0
  34. loopix/api/client/api/templates/get_templates_template_id_builds_build_id_status.py +232 -0
  35. loopix/api/client/api/templates/get_templates_template_id_files_hash.py +180 -0
  36. loopix/api/client/api/templates/patch_templates_template_id.py +183 -0
  37. loopix/api/client/api/templates/patch_v_2_templates_template_id.py +185 -0
  38. loopix/api/client/api/templates/post_templates.py +172 -0
  39. loopix/api/client/api/templates/post_templates_template_id.py +181 -0
  40. loopix/api/client/api/templates/post_templates_template_id_builds_build_id.py +170 -0
  41. loopix/api/client/api/templates/post_v2_templates.py +172 -0
  42. loopix/api/client/api/templates/post_v3_templates.py +176 -0
  43. loopix/api/client/api/templates/post_v_2_templates_template_id_builds_build_id.py +192 -0
  44. loopix/api/client/api/volumes/__init__.py +1 -0
  45. loopix/api/client/api/volumes/delete_volumes_volume_id.py +161 -0
  46. loopix/api/client/api/volumes/get_volumes.py +140 -0
  47. loopix/api/client/api/volumes/get_volumes_volume_id.py +163 -0
  48. loopix/api/client/api/volumes/post_volumes.py +172 -0
  49. loopix/api/client/client.py +286 -0
  50. loopix/api/client/errors.py +16 -0
  51. loopix/api/client/models/__init__.py +185 -0
  52. loopix/api/client/models/admin_build_cancel_result.py +67 -0
  53. loopix/api/client/models/admin_sandbox_kill_result.py +67 -0
  54. loopix/api/client/models/assign_template_tags_request.py +67 -0
  55. loopix/api/client/models/assigned_template_tags.py +68 -0
  56. loopix/api/client/models/aws_registry.py +85 -0
  57. loopix/api/client/models/aws_registry_type.py +8 -0
  58. loopix/api/client/models/build_log_entry.py +89 -0
  59. loopix/api/client/models/build_status_reason.py +95 -0
  60. loopix/api/client/models/connect_sandbox.py +59 -0
  61. loopix/api/client/models/created_access_token.py +100 -0
  62. loopix/api/client/models/created_team_api_key.py +166 -0
  63. loopix/api/client/models/delete_template_tags_request.py +67 -0
  64. loopix/api/client/models/disk_metrics.py +91 -0
  65. loopix/api/client/models/error.py +67 -0
  66. loopix/api/client/models/gcp_registry.py +69 -0
  67. loopix/api/client/models/gcp_registry_type.py +8 -0
  68. loopix/api/client/models/general_registry.py +77 -0
  69. loopix/api/client/models/general_registry_type.py +8 -0
  70. loopix/api/client/models/identifier_masking_details.py +83 -0
  71. loopix/api/client/models/listed_sandbox.py +179 -0
  72. loopix/api/client/models/log_level.py +11 -0
  73. loopix/api/client/models/logs_direction.py +9 -0
  74. loopix/api/client/models/logs_source.py +9 -0
  75. loopix/api/client/models/machine_info.py +83 -0
  76. loopix/api/client/models/max_team_metric.py +78 -0
  77. loopix/api/client/models/mcp_type_0.py +44 -0
  78. loopix/api/client/models/new_access_token.py +59 -0
  79. loopix/api/client/models/new_sandbox.py +224 -0
  80. loopix/api/client/models/new_team_api_key.py +59 -0
  81. loopix/api/client/models/new_volume.py +59 -0
  82. loopix/api/client/models/node.py +160 -0
  83. loopix/api/client/models/node_detail.py +160 -0
  84. loopix/api/client/models/node_metrics.py +122 -0
  85. loopix/api/client/models/node_status.py +12 -0
  86. loopix/api/client/models/node_status_change.py +82 -0
  87. loopix/api/client/models/post_sandboxes_sandbox_id_refreshes_body.py +59 -0
  88. loopix/api/client/models/post_sandboxes_sandbox_id_snapshots_body.py +60 -0
  89. loopix/api/client/models/post_sandboxes_sandbox_id_timeout_body.py +59 -0
  90. loopix/api/client/models/resumed_sandbox.py +68 -0
  91. loopix/api/client/models/sandbox.py +145 -0
  92. loopix/api/client/models/sandbox_auto_resume_config.py +60 -0
  93. loopix/api/client/models/sandbox_detail.py +267 -0
  94. loopix/api/client/models/sandbox_lifecycle.py +70 -0
  95. loopix/api/client/models/sandbox_log.py +70 -0
  96. loopix/api/client/models/sandbox_log_entry.py +93 -0
  97. loopix/api/client/models/sandbox_log_entry_fields.py +44 -0
  98. loopix/api/client/models/sandbox_logs.py +91 -0
  99. loopix/api/client/models/sandbox_logs_v2_response.py +73 -0
  100. loopix/api/client/models/sandbox_metric.py +126 -0
  101. loopix/api/client/models/sandbox_network_config.py +118 -0
  102. loopix/api/client/models/sandbox_network_config_rules.py +72 -0
  103. loopix/api/client/models/sandbox_network_rule.py +74 -0
  104. loopix/api/client/models/sandbox_network_transform.py +79 -0
  105. loopix/api/client/models/sandbox_network_transform_headers.py +47 -0
  106. loopix/api/client/models/sandbox_network_update_config.py +114 -0
  107. loopix/api/client/models/sandbox_network_update_config_rules.py +71 -0
  108. loopix/api/client/models/sandbox_on_timeout.py +9 -0
  109. loopix/api/client/models/sandbox_pause_request.py +62 -0
  110. loopix/api/client/models/sandbox_state.py +9 -0
  111. loopix/api/client/models/sandbox_volume_mount.py +67 -0
  112. loopix/api/client/models/sandboxes_with_metrics.py +59 -0
  113. loopix/api/client/models/snapshot_info.py +70 -0
  114. loopix/api/client/models/team.py +83 -0
  115. loopix/api/client/models/team_api_key.py +158 -0
  116. loopix/api/client/models/team_metric.py +86 -0
  117. loopix/api/client/models/team_user.py +75 -0
  118. loopix/api/client/models/template.py +225 -0
  119. loopix/api/client/models/template_alias_response.py +67 -0
  120. loopix/api/client/models/template_build.py +139 -0
  121. loopix/api/client/models/template_build_file_upload.py +70 -0
  122. loopix/api/client/models/template_build_info.py +126 -0
  123. loopix/api/client/models/template_build_logs_response.py +73 -0
  124. loopix/api/client/models/template_build_request.py +115 -0
  125. loopix/api/client/models/template_build_request_v2.py +88 -0
  126. loopix/api/client/models/template_build_request_v3.py +107 -0
  127. loopix/api/client/models/template_build_start_v2.py +184 -0
  128. loopix/api/client/models/template_build_status.py +11 -0
  129. loopix/api/client/models/template_legacy.py +207 -0
  130. loopix/api/client/models/template_request_response_v3.py +99 -0
  131. loopix/api/client/models/template_step.py +91 -0
  132. loopix/api/client/models/template_tag.py +78 -0
  133. loopix/api/client/models/template_update_request.py +59 -0
  134. loopix/api/client/models/template_update_response.py +59 -0
  135. loopix/api/client/models/template_with_builds.py +156 -0
  136. loopix/api/client/models/update_team_api_key.py +59 -0
  137. loopix/api/client/models/volume.py +67 -0
  138. loopix/api/client/models/volume_and_token.py +75 -0
  139. loopix/api/client/models/volume_token.py +59 -0
  140. loopix/api/client/py.typed +1 -0
  141. loopix/api/client/types.py +54 -0
  142. loopix/api/client_async/__init__.py +74 -0
  143. loopix/api/client_sync/__init__.py +73 -0
  144. loopix/api/metadata.py +14 -0
  145. loopix/connection_config.py +309 -0
  146. loopix/envd/api.py +170 -0
  147. loopix/envd/filesystem/filesystem_connect.py +193 -0
  148. loopix/envd/filesystem/filesystem_pb2.py +80 -0
  149. loopix/envd/filesystem/filesystem_pb2.pyi +272 -0
  150. loopix/envd/process/process_connect.py +174 -0
  151. loopix/envd/process/process_pb2.py +96 -0
  152. loopix/envd/process/process_pb2.pyi +316 -0
  153. loopix/envd/rpc.py +139 -0
  154. loopix/envd/versions.py +11 -0
  155. loopix/exceptions.py +133 -0
  156. loopix/io_utils.py +57 -0
  157. loopix/paginator.py +52 -0
  158. loopix/py.typed +0 -0
  159. loopix/sandbox/_git/__init__.py +85 -0
  160. loopix/sandbox/_git/args.py +363 -0
  161. loopix/sandbox/_git/auth.py +132 -0
  162. loopix/sandbox/_git/config.py +32 -0
  163. loopix/sandbox/_git/parse.py +222 -0
  164. loopix/sandbox/_git/types.py +149 -0
  165. loopix/sandbox/commands/command_handle.py +69 -0
  166. loopix/sandbox/commands/main.py +39 -0
  167. loopix/sandbox/filesystem/filesystem.py +337 -0
  168. loopix/sandbox/filesystem/watch_handle.py +70 -0
  169. loopix/sandbox/main.py +227 -0
  170. loopix/sandbox/mcp.py +1949 -0
  171. loopix/sandbox/network.py +8 -0
  172. loopix/sandbox/sandbox_api.py +624 -0
  173. loopix/sandbox/signature.py +47 -0
  174. loopix/sandbox/utils.py +34 -0
  175. loopix/sandbox_async/commands/command.py +396 -0
  176. loopix/sandbox_async/commands/command_handle.py +298 -0
  177. loopix/sandbox_async/commands/pty.py +257 -0
  178. loopix/sandbox_async/filesystem/filesystem.py +720 -0
  179. loopix/sandbox_async/filesystem/watch_handle.py +97 -0
  180. loopix/sandbox_async/git.py +1100 -0
  181. loopix/sandbox_async/main.py +987 -0
  182. loopix/sandbox_async/paginator.py +140 -0
  183. loopix/sandbox_async/sandbox_api.py +504 -0
  184. loopix/sandbox_async/utils.py +7 -0
  185. loopix/sandbox_domains.py +5 -0
  186. loopix/sandbox_sync/commands/command.py +420 -0
  187. loopix/sandbox_sync/commands/command_handle.py +239 -0
  188. loopix/sandbox_sync/commands/pty.py +279 -0
  189. loopix/sandbox_sync/filesystem/filesystem.py +710 -0
  190. loopix/sandbox_sync/filesystem/watch_handle.py +102 -0
  191. loopix/sandbox_sync/git.py +1077 -0
  192. loopix/sandbox_sync/main.py +975 -0
  193. loopix/sandbox_sync/paginator.py +140 -0
  194. loopix/sandbox_sync/sandbox_api.py +491 -0
  195. loopix/template/consts.py +45 -0
  196. loopix/template/dockerfile_parser.py +286 -0
  197. loopix/template/logger.py +232 -0
  198. loopix/template/main.py +1368 -0
  199. loopix/template/readycmd.py +144 -0
  200. loopix/template/types.py +194 -0
  201. loopix/template/utils.py +426 -0
  202. loopix/template_async/build_api.py +419 -0
  203. loopix/template_async/main.py +528 -0
  204. loopix/template_sync/build_api.py +409 -0
  205. loopix/template_sync/main.py +529 -0
  206. loopix/volume/client/__init__.py +8 -0
  207. loopix/volume/client/api/__init__.py +1 -0
  208. loopix/volume/client/api/volumes/__init__.py +1 -0
  209. loopix/volume/client/api/volumes/delete_volumecontent_volume_id_path.py +174 -0
  210. loopix/volume/client/api/volumes/get_volumecontent_volume_id_dir.py +204 -0
  211. loopix/volume/client/api/volumes/get_volumecontent_volume_id_file.py +179 -0
  212. loopix/volume/client/api/volumes/get_volumecontent_volume_id_path.py +176 -0
  213. loopix/volume/client/api/volumes/patch_volumecontent_volume_id_path.py +203 -0
  214. loopix/volume/client/api/volumes/post_volumecontent_volume_id_dir.py +239 -0
  215. loopix/volume/client/api/volumes/put_volumecontent_volume_id_file.py +259 -0
  216. loopix/volume/client/client.py +286 -0
  217. loopix/volume/client/errors.py +16 -0
  218. loopix/volume/client/models/__init__.py +13 -0
  219. loopix/volume/client/models/error.py +67 -0
  220. loopix/volume/client/models/patch_volumecontent_volume_id_path_body.py +77 -0
  221. loopix/volume/client/models/volume_entry_stat.py +145 -0
  222. loopix/volume/client/models/volume_entry_stat_type.py +11 -0
  223. loopix/volume/client/py.typed +1 -0
  224. loopix/volume/client/types.py +54 -0
  225. loopix/volume/client_async/__init__.py +88 -0
  226. loopix/volume/client_sync/__init__.py +80 -0
  227. loopix/volume/connection_config.py +145 -0
  228. loopix/volume/types.py +62 -0
  229. loopix/volume/utils.py +52 -0
  230. loopix/volume/volume_async.py +639 -0
  231. loopix/volume/volume_sync.py +639 -0
  232. loopix_connect/__init__.py +1 -0
  233. loopix_connect/client.py +534 -0
  234. loopix_connect/py.typed +0 -0
  235. loopix_sdk-2.30.0.dist-info/METADATA +98 -0
  236. loopix_sdk-2.30.0.dist-info/RECORD +238 -0
  237. loopix_sdk-2.30.0.dist-info/WHEEL +4 -0
  238. loopix_sdk-2.30.0.dist-info/licenses/LICENSE +9 -0
loopix/sandbox/mcp.py ADDED
@@ -0,0 +1,1949 @@
1
+ # generated by datamodel-codegen:
2
+ # filename: mcp-server.json
3
+
4
+ from __future__ import annotations
5
+
6
+ from typing import Any, Dict, List, TypedDict
7
+
8
+ from typing_extensions import NotRequired
9
+
10
+
11
+ class Airtable(TypedDict):
12
+ airtableApiKey: str
13
+ nodeenv: str
14
+
15
+
16
+ class Aks(TypedDict):
17
+ accessLevel: str
18
+ """
19
+ Access level for the MCP server, One of [ readonly, readwrite, admin ]
20
+ """
21
+ additionalTools: NotRequired[str]
22
+ """
23
+ Comma-separated list of additional tools, One of [ helm, cilium ]
24
+ """
25
+ allowNamespaces: NotRequired[str]
26
+ """
27
+ Comma-separated list of namespaces to allow access to. If not specified, all namespaces are allowed.
28
+ """
29
+ azureDir: str
30
+ """
31
+ Path to the Azure configuration directory (e.g. /home/azureuser/.azure). Used for Azure CLI authentication, you should be logged in (e.g. run `az login`) on the host before starting the MCP server.
32
+ """
33
+ containerUser: NotRequired[str]
34
+ """
35
+ Username or UID of the container user (format <name|uid>[:<group|gid>] e.g. 10000), ensuring correct permissions to access the Azure and kubeconfig files. Leave empty to use default user in the container.
36
+ """
37
+ kubeconfig: str
38
+ """
39
+ Path to the kubeconfig file for the AKS cluster (e.g. /home/azureuser/.kube/config). Used to connect to the AKS cluster.
40
+ """
41
+
42
+
43
+ class ApiGateway(TypedDict):
44
+ api1HeaderAuthorization: str
45
+ api1Name: str
46
+ api1SwaggerUrl: str
47
+
48
+
49
+ class Apify(TypedDict):
50
+ apifyToken: str
51
+ tools: str
52
+ """
53
+ Comma-separated list of tools to enable. Can be either a tool category, a specific tool, or an Apify Actor. For example: "actors,docs,apify/rag-web-browser". For more details visit https://mcp.apify.com.
54
+ """
55
+
56
+
57
+ class Arxiv(TypedDict):
58
+ storagePath: str
59
+ """
60
+ Directory path where downloaded papers will be stored
61
+ """
62
+
63
+
64
+ class AstGrep(TypedDict):
65
+ path: str
66
+
67
+
68
+ class AstraDb(TypedDict):
69
+ astraDbApplicationToken: str
70
+ endpoint: str
71
+
72
+
73
+ class Atlan(TypedDict):
74
+ apiKey: str
75
+ baseUrl: str
76
+
77
+
78
+ class AtlasDocs(TypedDict):
79
+ apiUrl: str
80
+
81
+
82
+ class Atlassian(TypedDict):
83
+ confluenceApiToken: NotRequired[str]
84
+ confluencePersonalToken: NotRequired[str]
85
+ confluenceUrl: str
86
+ confluenceUsername: NotRequired[str]
87
+ jiraApiToken: NotRequired[str]
88
+ jiraPersonalToken: NotRequired[str]
89
+ jiraUrl: str
90
+ jiraUsername: NotRequired[str]
91
+
92
+
93
+ class AudienseInsights(TypedDict):
94
+ audienseClientSecret: NotRequired[str]
95
+ clientId: str
96
+ twitterBearerToken: NotRequired[str]
97
+
98
+
99
+ class AwsKbRetrievalServer(TypedDict):
100
+ accessKeyId: str
101
+ awsSecretAccessKey: NotRequired[str]
102
+
103
+
104
+ class BeagleSecurity(TypedDict):
105
+ beagleSecurityApiToken: str
106
+
107
+
108
+ class Bitrefill(TypedDict):
109
+ apiId: str
110
+ apiSecret: NotRequired[str]
111
+
112
+
113
+ class Box(TypedDict):
114
+ clientId: str
115
+ clientSecret: NotRequired[str]
116
+
117
+
118
+ class Brave(TypedDict):
119
+ apiKey: str
120
+
121
+
122
+ class Browserbase(TypedDict):
123
+ apiKey: str
124
+ geminiApiKey: str
125
+ projectId: str
126
+
127
+
128
+ class Buildkite(TypedDict):
129
+ apiToken: str
130
+
131
+
132
+ class Camunda(TypedDict):
133
+ camundahost: str
134
+
135
+
136
+ class CdataConnectcloud(TypedDict):
137
+ cdataPat: NotRequired[str]
138
+ username: str
139
+
140
+
141
+ class Charmhealth(TypedDict):
142
+ charmhealthApiKey: str
143
+ charmhealthBaseUrl: str
144
+ charmhealthClientId: str
145
+ charmhealthClientSecret: str
146
+ charmhealthRedirectUri: str
147
+ charmhealthRefreshToken: str
148
+ charmhealthTokenUrl: str
149
+
150
+
151
+ class Chroma(TypedDict):
152
+ apiKey: str
153
+
154
+
155
+ class Circleci(TypedDict):
156
+ token: str
157
+ url: str
158
+
159
+
160
+ class Clickhouse(TypedDict):
161
+ connectTimeout: str
162
+ host: str
163
+ password: str
164
+ port: str
165
+ secure: str
166
+ sendReceiveTimeout: str
167
+ user: str
168
+ verify: str
169
+
170
+
171
+ class Close(TypedDict):
172
+ apiKey: str
173
+
174
+
175
+ class CloudRun(TypedDict):
176
+ credentialsPath: str
177
+ """
178
+ path to application-default credentials (eg $HOME/.config/gcloud/application_default_credentials.json )
179
+ """
180
+
181
+
182
+ class Cockroachdb(TypedDict):
183
+ caPath: str
184
+ crdbPwd: str
185
+ database: str
186
+ host: str
187
+ port: int
188
+ sslCertfile: str
189
+ sslKeyfile: str
190
+ sslMode: str
191
+ username: str
192
+
193
+
194
+ class Couchbase(TypedDict):
195
+ cbBucketName: str
196
+ """
197
+ Bucket in the Couchbase cluster to use for the MCP server.
198
+ """
199
+ cbConnectionString: str
200
+ """
201
+ Connection string for the Couchbase cluster.
202
+ """
203
+ cbMcpReadOnlyQueryMode: str
204
+ """
205
+ Setting to "true" (default) enables read-only query mode while running SQL++ queries.
206
+ """
207
+ cbPassword: str
208
+ cbUsername: str
209
+ """
210
+ Username for the Couchbase cluster with access to the bucket.
211
+ """
212
+
213
+
214
+ class Cylera(TypedDict):
215
+ cyleraBaseUrl: str
216
+ cyleraPassword: str
217
+ cyleraUsername: str
218
+
219
+
220
+ class CyreslabAiShodan(TypedDict):
221
+ shodanApiKey: str
222
+
223
+
224
+ class Dappier(TypedDict):
225
+ apiKey: str
226
+
227
+
228
+ class DappierRemote(TypedDict):
229
+ dappierRemoteApiKey: str
230
+
231
+
232
+ class Dart(TypedDict):
233
+ host: str
234
+ token: str
235
+
236
+
237
+ class DatabaseServer(TypedDict):
238
+ databaseUrl: str
239
+ """
240
+ Connection string for your database. Examples: SQLite: sqlite+aiosqlite:///data/mydb.db, PostgreSQL: postgresql+asyncpg://user:password@localhost:5432/mydb, MySQL: mysql+aiomysql://user:password@localhost:3306/mydb
241
+ """
242
+
243
+
244
+ class Descope(TypedDict):
245
+ managementKey: NotRequired[str]
246
+ projectId: str
247
+
248
+
249
+ class DesktopCommander(TypedDict):
250
+ paths: List[str]
251
+ """
252
+ List of directories that Desktop Commander can access
253
+ """
254
+
255
+
256
+ class DevhubCms(TypedDict):
257
+ devhubApiKey: NotRequired[str]
258
+ devhubApiSecret: NotRequired[str]
259
+ url: str
260
+
261
+
262
+ class Discord(TypedDict):
263
+ discordToken: str
264
+
265
+
266
+ class Dockerhub(TypedDict):
267
+ hubPatToken: str
268
+ username: str
269
+
270
+
271
+ class DodoPayments(TypedDict):
272
+ dodoPaymentsApiKey: str
273
+
274
+
275
+ class Dreamfactory(TypedDict):
276
+ dreamfactoryapikey: str
277
+ dreamfactoryurl: str
278
+
279
+
280
+ class Dynatrace(TypedDict):
281
+ oauthClientId: str
282
+ oauthClientSecret: str
283
+ url: str
284
+
285
+
286
+ class Lpx(TypedDict):
287
+ apiKey: str
288
+
289
+
290
+ class Edubase(TypedDict):
291
+ apiKey: NotRequired[str]
292
+ app: str
293
+ url: str
294
+
295
+
296
+ class Elasticsearch(TypedDict):
297
+ esApiKey: NotRequired[str]
298
+ url: str
299
+
300
+
301
+ class Elevenlabs(TypedDict):
302
+ apiKey: NotRequired[str]
303
+ data: str
304
+
305
+
306
+ class Everart(TypedDict):
307
+ apiKey: str
308
+
309
+
310
+ class Exa(TypedDict):
311
+ apiKey: str
312
+
313
+
314
+ class Explorium(TypedDict):
315
+ apiAccessToken: str
316
+
317
+
318
+ class Fibery(TypedDict):
319
+ apiToken: str
320
+ host: str
321
+
322
+
323
+ class Filesystem(TypedDict):
324
+ paths: List[str]
325
+
326
+
327
+ class Firecrawl(TypedDict):
328
+ apiKey: str
329
+ creditCriticalThreshold: int
330
+ creditWarningThreshold: int
331
+ retryBackoffFactor: int
332
+ retryDelay: int
333
+ retryMax: int
334
+ retryMaxDelay: int
335
+ url: str
336
+
337
+
338
+ class Firewalla(TypedDict):
339
+ boxId: str
340
+ """
341
+ Your Firewalla Box Global ID
342
+ """
343
+ firewallaMspToken: str
344
+ mspId: str
345
+ """
346
+ Your Firewalla MSP domain (e.g., yourdomain.firewalla.net)
347
+ """
348
+
349
+
350
+ class Flexprice(TypedDict):
351
+ apiKey: str
352
+ baseUrl: str
353
+
354
+
355
+ class Git(TypedDict):
356
+ paths: List[str]
357
+
358
+
359
+ class Github(TypedDict):
360
+ personalAccessToken: str
361
+
362
+
363
+ class GithubChat(TypedDict):
364
+ githubApiKey: str
365
+
366
+
367
+ class GithubOfficial(TypedDict):
368
+ githubPersonalAccessToken: str
369
+
370
+
371
+ class Gitlab(TypedDict):
372
+ personalAccessToken: str
373
+ url: str
374
+ """
375
+ api url - optional for self-hosted instances
376
+ """
377
+
378
+
379
+ class Glif(TypedDict):
380
+ apiToken: str
381
+ ids: str
382
+ ignoredSaved: bool
383
+
384
+
385
+ class Gmail(TypedDict):
386
+ emailAddress: str
387
+ """
388
+ Your Gmail email address
389
+ """
390
+ emailPassword: NotRequired[str]
391
+
392
+
393
+ class GoogleMaps(TypedDict):
394
+ googleMapsApiKey: str
395
+
396
+
397
+ class GoogleMapsComprehensive(TypedDict):
398
+ googleMapsApiKey: str
399
+
400
+
401
+ class Grafana(TypedDict):
402
+ apiKey: str
403
+ url: str
404
+
405
+
406
+ class Gyazo(TypedDict):
407
+ accessToken: str
408
+
409
+
410
+ class Hackle(TypedDict):
411
+ apiKey: str
412
+
413
+
414
+ class HandwritingOcr(TypedDict):
415
+ apiToken: str
416
+
417
+
418
+ class Hdx(TypedDict):
419
+ appIdentifier: str
420
+
421
+
422
+ class Heroku(TypedDict):
423
+ apiKey: str
424
+
425
+
426
+ class Hostinger(TypedDict):
427
+ apitoken: str
428
+
429
+
430
+ class Hoverfly(TypedDict):
431
+ data: str
432
+
433
+
434
+ class Hubspot(TypedDict):
435
+ apiKey: str
436
+
437
+
438
+ class Hummingbot(TypedDict):
439
+ apiUrl: str
440
+ hummingbotApiPassword: NotRequired[str]
441
+ hummingbotApiUsername: NotRequired[str]
442
+
443
+
444
+ class HusqvarnaAutomower(TypedDict):
445
+ clientId: str
446
+ husqvarnaClientSecret: str
447
+
448
+
449
+ class Hyperbrowser(TypedDict):
450
+ apiKey: str
451
+
452
+
453
+ class Hyperspell(TypedDict):
454
+ collection: str
455
+ token: str
456
+ useResources: bool
457
+
458
+
459
+ class Iaptic(TypedDict):
460
+ apiKey: NotRequired[str]
461
+ appName: str
462
+
463
+
464
+ class InspektorGadget(TypedDict):
465
+ gadgetImages: NotRequired[str]
466
+ """
467
+ Comma-separated list of gadget images (trace_dns, trace_tcp, etc) to use, allowing control over which gadgets are available as MCP tools
468
+ """
469
+ kubeconfig: str
470
+ """
471
+ Path to the kubeconfig file for accessing Kubernetes clusters
472
+ """
473
+
474
+
475
+ class Jetbrains(TypedDict):
476
+ port: int
477
+
478
+
479
+ class KafkaSchemaReg(TypedDict):
480
+ registryUrl: str
481
+ """
482
+ Schema Registry URL
483
+ """
484
+ schemaRegistryPassword: NotRequired[str]
485
+ schemaRegistryUser: NotRequired[str]
486
+ slimMode: NotRequired[str]
487
+ """
488
+ Enable SLIM_MODE for better performance
489
+ """
490
+ viewonly: NotRequired[str]
491
+ """
492
+ Enable read-only mode
493
+ """
494
+
495
+
496
+ class Kagisearch(TypedDict):
497
+ engine: str
498
+ kagiApiKey: str
499
+
500
+
501
+ class Keboola(TypedDict):
502
+ kbcStorageToken: str
503
+ kbcWorkspaceSchema: str
504
+
505
+
506
+ class Kong(TypedDict):
507
+ konnectAccessToken: str
508
+ region: str
509
+
510
+
511
+ class Kubectl(TypedDict):
512
+ kubeconfig: str
513
+
514
+
515
+ class Kubernetes(TypedDict):
516
+ configPath: str
517
+ """
518
+ the path to the host .kube/config
519
+ """
520
+
521
+
522
+ class Lara(TypedDict):
523
+ accessKeySecret: NotRequired[str]
524
+ keyId: str
525
+
526
+
527
+ class Line(TypedDict):
528
+ channelAccessToken: NotRequired[str]
529
+ userId: str
530
+
531
+
532
+ class Linkedin(TypedDict):
533
+ linkedinCookie: str
534
+ userAgent: str
535
+ """
536
+ Custom user agent string (optional, helps avoid detection and cookie login issues)
537
+ """
538
+
539
+
540
+ class Maestro(TypedDict):
541
+ apiKeyApiKey: str
542
+
543
+
544
+ class Mapbox(TypedDict):
545
+ accessToken: str
546
+
547
+
548
+ class MapboxDevkit(TypedDict):
549
+ mapboxAccessToken: str
550
+
551
+
552
+ class Markdownify(TypedDict):
553
+ paths: List[str]
554
+
555
+
556
+ class Markitdown(TypedDict):
557
+ paths: List[str]
558
+
559
+
560
+ class MercadoLibre(TypedDict):
561
+ mercadoLibreApiKey: str
562
+
563
+
564
+ class MercadoPago(TypedDict):
565
+ mercadoPagoApiKey: str
566
+
567
+
568
+ class Metabase(TypedDict):
569
+ apiKey: str
570
+ metabaseurl: str
571
+ metabaseusername: str
572
+ password: str
573
+
574
+
575
+ class Mongodb(TypedDict):
576
+ mdbMcpConnectionString: str
577
+
578
+
579
+ class MultiversxMx(TypedDict):
580
+ network: str
581
+ wallet: str
582
+
583
+
584
+ class NasdaqDataLink(TypedDict):
585
+ nasdaqDataLinkApiKey: str
586
+
587
+
588
+ class Needle(TypedDict):
589
+ needleApiKey: str
590
+
591
+
592
+ class Neo4jCloudAuraApi(TypedDict):
593
+ clientId: str
594
+ neo4jAuraClientSecret: NotRequired[str]
595
+ serverAllowOrigins: NotRequired[str]
596
+ serverAllowedHosts: NotRequired[str]
597
+ serverHost: NotRequired[str]
598
+ serverPath: NotRequired[str]
599
+ serverPort: NotRequired[str]
600
+ transport: NotRequired[str]
601
+
602
+
603
+ class Neo4jCypher(TypedDict):
604
+ database: NotRequired[str]
605
+ namespace: NotRequired[str]
606
+ neo4jPassword: NotRequired[str]
607
+ readOnly: NotRequired[bool]
608
+ readTimeout: NotRequired[str]
609
+ responseTokenLimit: NotRequired[str]
610
+ serverAllowOrigins: NotRequired[str]
611
+ serverAllowedHosts: NotRequired[str]
612
+ serverHost: NotRequired[str]
613
+ serverPath: NotRequired[str]
614
+ serverPort: NotRequired[str]
615
+ transport: NotRequired[str]
616
+ url: str
617
+ username: str
618
+
619
+
620
+ class Neo4jDataModeling(TypedDict):
621
+ serverAllowOrigins: str
622
+ serverAllowedHosts: str
623
+ serverHost: str
624
+ serverPath: str
625
+ serverPort: str
626
+ transport: str
627
+
628
+
629
+ class Neo4jMemory(TypedDict):
630
+ database: NotRequired[str]
631
+ neo4jPassword: NotRequired[str]
632
+ serverAllowOrigins: NotRequired[str]
633
+ serverAllowedHosts: NotRequired[str]
634
+ serverHost: NotRequired[str]
635
+ serverPath: NotRequired[str]
636
+ serverPort: NotRequired[str]
637
+ transport: NotRequired[str]
638
+ url: str
639
+ username: str
640
+
641
+
642
+ class Neon(TypedDict):
643
+ apiKey: str
644
+
645
+
646
+ class Notion(TypedDict):
647
+ internalIntegrationToken: str
648
+
649
+
650
+ class Obsidian(TypedDict):
651
+ apiKey: str
652
+
653
+
654
+ class OktaMcpFctr(TypedDict):
655
+ clientOrgurl: str
656
+ """
657
+ Okta organization URL (e.g., https://dev-123456.okta.com)
658
+ """
659
+ concurrentLimit: NotRequired[str]
660
+ """
661
+ Maximum concurrent requests to Okta API
662
+ """
663
+ logLevel: NotRequired[str]
664
+ """
665
+ Logging level for server output
666
+ """
667
+ oktaApiToken: NotRequired[str]
668
+
669
+
670
+ class Omi(TypedDict):
671
+ apiKey: str
672
+
673
+
674
+ class OnlyofficeDocspace(TypedDict):
675
+ baseUrl: str
676
+ docspaceApiKey: str
677
+ docspaceAuthToken: str
678
+ docspacePassword: str
679
+ docspaceUsername: str
680
+ dynamic: bool
681
+ origin: str
682
+ toolsets: str
683
+ userAgent: str
684
+
685
+
686
+ class Openapi(TypedDict):
687
+ mode: str
688
+
689
+
690
+ class OpenapiSchema(TypedDict):
691
+ SchemaPath: str
692
+
693
+
694
+ class Openweather(TypedDict):
695
+ owmApiKey: str
696
+
697
+
698
+ class Opik(TypedDict):
699
+ apiBaseUrl: str
700
+ apiKey: str
701
+ workspaceName: str
702
+
703
+
704
+ class Opine(TypedDict):
705
+ opineApiKey: str
706
+
707
+
708
+ class Oracle(TypedDict):
709
+ oracleConnectionString: str
710
+ oracleUser: str
711
+ password: str
712
+
713
+
714
+ class Oxylabs(TypedDict):
715
+ password: NotRequired[str]
716
+ username: str
717
+
718
+
719
+ class PerplexityAsk(TypedDict):
720
+ perplexityApiKey: str
721
+
722
+
723
+ class Pia(TypedDict):
724
+ apiKey: str
725
+
726
+
727
+ class Pinecone(TypedDict):
728
+ apiKey: str
729
+ assistantHost: str
730
+
731
+
732
+ class Playwright(TypedDict):
733
+ data: str
734
+
735
+
736
+ class PluggedinMcpProxy(TypedDict):
737
+ pluggedinApiBaseUrl: str
738
+ """
739
+ Base URL for the Plugged.in API (optional, defaults to https://plugged.in for cloud or http://localhost:12005 for self-hosted)
740
+ """
741
+ pluggedinApiKey: str
742
+
743
+
744
+ class PolarSignals(TypedDict):
745
+ polarSignalsApiKey: str
746
+
747
+
748
+ class Pomodash(TypedDict):
749
+ apiKey: str
750
+
751
+
752
+ class Postgres(TypedDict):
753
+ url: str
754
+
755
+
756
+ class Postman(TypedDict):
757
+ apiKey: str
758
+
759
+
760
+ class Prometheus(TypedDict):
761
+ prometheusUrl: str
762
+ """
763
+ The URL of your Prometheus server
764
+ """
765
+
766
+
767
+ class Quantconnect(TypedDict):
768
+ agentname: str
769
+ quantconnectapitoken: str
770
+ quantconnectuserid: str
771
+
772
+
773
+ class Razorpay(TypedDict):
774
+ keyId: str
775
+ keySecret: NotRequired[str]
776
+
777
+
778
+ class Reddit(TypedDict):
779
+ redditClientId: str
780
+ redditClientSecret: str
781
+ redditPassword: str
782
+ username: str
783
+
784
+
785
+ class Redis(TypedDict):
786
+ caCerts: str
787
+ caPath: str
788
+ certReqs: str
789
+ clusterMode: bool
790
+ host: str
791
+ port: int
792
+ pwd: str
793
+ ssl: bool
794
+ sslCertfile: str
795
+ sslKeyfile: str
796
+ username: str
797
+
798
+
799
+ class RedisCloud(TypedDict):
800
+ apiKey: str
801
+ secretKey: NotRequired[str]
802
+
803
+
804
+ class Ref(TypedDict):
805
+ apiKey: str
806
+
807
+
808
+ class Render(TypedDict):
809
+ apiKey: str
810
+
811
+
812
+ class Resend(TypedDict):
813
+ apiKey: NotRequired[str]
814
+ replyTo: str
815
+ """
816
+ comma separated list of reply to email addresses
817
+ """
818
+ sender: str
819
+ """
820
+ sender email address
821
+ """
822
+
823
+
824
+ class Risken(TypedDict):
825
+ accessToken: str
826
+ url: str
827
+
828
+
829
+ class Root(TypedDict):
830
+ apiAccessToken: str
831
+
832
+
833
+ class Rube(TypedDict):
834
+ apiKey: str
835
+
836
+
837
+ class RustMcpFilesystem(TypedDict):
838
+ allowWrite: bool
839
+ """
840
+ Enable read/write mode. If false, the app operates in read-only mode.
841
+ """
842
+ allowedDirectories: List[str]
843
+ """
844
+ List of directories that rust-mcp-filesystem can access.
845
+ """
846
+ enableRoots: bool
847
+ """
848
+ Enable dynamic directory access control via MCP client-side Roots.
849
+ """
850
+
851
+
852
+ class SchemacrawlerAi(TypedDict):
853
+ generalInfoLevel: str
854
+ """
855
+ --info-level How much database metadata to retrieve
856
+ """
857
+ generalLogLevel: NotRequired[str]
858
+ schcrwlrDatabasePassword: NotRequired[str]
859
+ schcrwlrDatabaseUser: NotRequired[str]
860
+ serverConnectionDatabase: NotRequired[str]
861
+ """
862
+ --database Database to connect to (optional)
863
+ """
864
+ serverConnectionHost: NotRequired[str]
865
+ """
866
+ --host Database host (optional)
867
+ """
868
+ serverConnectionPort: NotRequired[int]
869
+ """
870
+ --port Database port (optional)
871
+ """
872
+ serverConnectionServer: str
873
+ """
874
+ --server SchemaCrawler database plugin
875
+ """
876
+ urlConnectionJdbcUrl: str
877
+ """
878
+ --url JDBC URL for database connection
879
+ """
880
+ volumeHostShare: str
881
+ """
882
+ Host volume to map within the Docker container
883
+ """
884
+
885
+
886
+ class Scrapegraph(TypedDict):
887
+ sgaiApiKey: str
888
+
889
+
890
+ class Scrapezy(TypedDict):
891
+ apiKey: str
892
+
893
+
894
+ class Sentry(TypedDict):
895
+ authToken: str
896
+
897
+
898
+ class Sequa(TypedDict):
899
+ apiKey: str
900
+ mcpServerUrl: str
901
+
902
+
903
+ class ShortIo(TypedDict):
904
+ shortIoApiKey: str
905
+
906
+
907
+ class Singlestore(TypedDict):
908
+ mcpApiKey: str
909
+
910
+
911
+ class Slack(TypedDict):
912
+ botToken: NotRequired[str]
913
+ channelIds: NotRequired[str]
914
+ teamId: str
915
+
916
+
917
+ class Smartbear(TypedDict):
918
+ apiHubApiKey: str
919
+ bugsnagApiKey: str
920
+ bugsnagAuthToken: str
921
+ bugsnagEndpoint: str
922
+ pactBrokerBaseUrl: str
923
+ pactBrokerPassword: str
924
+ pactBrokerToken: str
925
+ pactBrokerUsername: str
926
+ reflectApiToken: str
927
+
928
+
929
+ class Sonarqube(TypedDict):
930
+ org: str
931
+ """
932
+ Organization key for SonarQube Cloud, not required for SonarQube Server or Community Build
933
+ """
934
+ token: str
935
+ url: str
936
+ """
937
+ URL of the SonarQube instance, to provide only for SonarQube Server or Community Build
938
+ """
939
+
940
+
941
+ class Stackgen(TypedDict):
942
+ token: NotRequired[str]
943
+ url: str
944
+ """
945
+ URL of your StackGen instance
946
+ """
947
+
948
+
949
+ class Stackhawk(TypedDict):
950
+ apiKey: str
951
+
952
+
953
+ class Stripe(TypedDict):
954
+ secretKey: str
955
+
956
+
957
+ class Supadata(TypedDict):
958
+ apiKey: str
959
+
960
+
961
+ class Suzieq(TypedDict):
962
+ apiEndpoint: str
963
+ apiKey: str
964
+
965
+
966
+ class Tavily(TypedDict):
967
+ apiKey: str
968
+
969
+
970
+ class Teamwork(TypedDict):
971
+ twMcpBearerToken: str
972
+
973
+
974
+ class Telnyx(TypedDict):
975
+ apiKey: str
976
+
977
+
978
+ class Tembo(TypedDict):
979
+ apiKey: str
980
+
981
+
982
+ class TextToGraphql(TypedDict):
983
+ graphqlApiKey: str
984
+ graphqlAuthType: str
985
+ """
986
+ Authentication method for GraphQL API
987
+ """
988
+ graphqlEndpoint: str
989
+ modelName: str
990
+ """
991
+ OpenAI model to use
992
+ """
993
+ modelTemperature: float
994
+ """
995
+ Model temperature for responses
996
+ """
997
+ openaiApiKey: str
998
+
999
+
1000
+ class Tigris(TypedDict):
1001
+ awsAccessKeyId: str
1002
+ awsEndpointUrlS3: str
1003
+ awsSecretAccessKey: NotRequired[str]
1004
+
1005
+
1006
+ class Triplewhale(TypedDict):
1007
+ apiKey: str
1008
+
1009
+
1010
+ class UnrealEngine(TypedDict):
1011
+ logLevel: NotRequired[str]
1012
+ """
1013
+ Logging level
1014
+ """
1015
+ ueHost: str
1016
+ """
1017
+ Unreal Engine host address. Use: host.docker.internal for local UE on Windows/Mac Docker, 127.0.0.1 for Linux without Docker, or actual IP address (e.g., 192.168.1.100) for remote UE
1018
+ """
1019
+ ueRcHttpPort: str
1020
+ """
1021
+ Remote Control HTTP port
1022
+ """
1023
+ ueRcWsPort: str
1024
+ """
1025
+ Remote Control WebSocket port
1026
+ """
1027
+
1028
+
1029
+ class Veyrax(TypedDict):
1030
+ apiKey: str
1031
+
1032
+
1033
+ class Wayfound(TypedDict):
1034
+ mcpApiKey: str
1035
+
1036
+
1037
+ class Webflow(TypedDict):
1038
+ token: str
1039
+
1040
+
1041
+ class WolframAlpha(TypedDict):
1042
+ wolframApiKey: str
1043
+
1044
+
1045
+ class ZerodhaKite(TypedDict):
1046
+ kiteAccessToken: NotRequired[str]
1047
+ """
1048
+ Access token obtained after OAuth authentication (optional - can be generated at runtime)
1049
+ """
1050
+ kiteApiKey: str
1051
+ """
1052
+ Your Kite Connect API key from the developer console
1053
+ """
1054
+ kiteApiSecret: NotRequired[str]
1055
+ kiteRedirectUrl: NotRequired[str]
1056
+ """
1057
+ OAuth redirect URL configured in your Kite Connect app
1058
+ """
1059
+
1060
+
1061
+ class McpServer(TypedDict):
1062
+ airtable: NotRequired[Airtable]
1063
+ """
1064
+ Provides AI assistants with direct access to Airtable bases, allowing them to read schemas, query records, and interact with your Airtable data. Supports listing bases, retrieving table structures, and searching through records to help automate workflows and answer questions about your organized data.
1065
+ """
1066
+ aks: NotRequired[Aks]
1067
+ """
1068
+ Azure Kubernetes Service (AKS) official MCP server.
1069
+ """
1070
+ apiGateway: NotRequired[ApiGateway]
1071
+ """
1072
+ A universal MCP (Model Context Protocol) server to integrate any API with Claude Desktop using only Docker configurations.
1073
+ """
1074
+ apify: NotRequired[Apify]
1075
+ """
1076
+ Apify is the world's largest marketplace of tools for web scraping, data extraction, and web automation. You can extract structured data from social media, e-commerce, search engines, maps, travel sites, or any other website.
1077
+ """
1078
+ arxiv: NotRequired[Arxiv]
1079
+ """
1080
+ The ArXiv MCP Server provides a comprehensive bridge between AI assistants and arXiv's research repository through the Model Context Protocol (MCP). Features: • Search arXiv papers with advanced filtering • Download and store papers locally as markdown • Read and analyze paper content • Deep research analysis prompts • Local paper management and storage • Enhanced tool descriptions optimized for local AI models • Docker MCP Gateway compatible with detailed context Perfect for researchers, academics, and AI assistants conducting literature reviews and research analysis. **Recent Update**: Enhanced tool descriptions specifically designed to resolve local AI model confusion and improve Docker MCP Gateway compatibility.
1081
+ """
1082
+ astGrep: NotRequired[AstGrep]
1083
+ """
1084
+ ast-grep is a fast and polyglot tool for code structural search, lint, rewriting at large scale.
1085
+ """
1086
+ astraDb: NotRequired[AstraDb]
1087
+ """
1088
+ An MCP server for Astra DB workloads.
1089
+ """
1090
+ astroDocs: NotRequired[Dict[str, Any]]
1091
+ """
1092
+ Access the latest Astro web framework documentation, guides, and API references.
1093
+ """
1094
+ atlan: NotRequired[Atlan]
1095
+ """
1096
+ MCP server for interacting with Atlan services including asset search, updates, and lineage traversal for comprehensive data governance and discovery.
1097
+ """
1098
+ atlasDocs: NotRequired[AtlasDocs]
1099
+ """
1100
+ Provide LLMs hosted, clean markdown documentation of libraries and frameworks.
1101
+ """
1102
+ atlassian: NotRequired[Atlassian]
1103
+ """
1104
+ Tools for Atlassian products (Confluence and Jira). This integration supports both Atlassian Cloud and Jira Server/Data Center deployments.
1105
+ """
1106
+ audienseInsights: NotRequired[AudienseInsights]
1107
+ """
1108
+ Audiense Insights MCP Server is a server based on the Model Context Protocol (MCP) that allows Claude and other MCP-compatible clients to interact with your Audiense Insights account.
1109
+ """
1110
+ awsCdk: NotRequired[Dict[str, Any]]
1111
+ """
1112
+ AWS Cloud Development Kit (CDK) best practices, infrastructure as code patterns, and security compliance with CDK Nag.
1113
+ """
1114
+ awsCore: NotRequired[Dict[str, Any]]
1115
+ """
1116
+ Starting point for using the awslabs MCP servers.
1117
+ """
1118
+ awsDiagram: NotRequired[Dict[str, Any]]
1119
+ """
1120
+ Seamlessly create diagrams using the Python diagrams package DSL. This server allows you to generate AWS diagrams, sequence diagrams, flow diagrams, and class diagrams using Python code.
1121
+ """
1122
+ awsDocumentation: NotRequired[Dict[str, Any]]
1123
+ """
1124
+ Tools to access AWS documentation, search for content, and get recommendations.
1125
+ """
1126
+ awsKbRetrievalServer: NotRequired[AwsKbRetrievalServer]
1127
+ """
1128
+ An MCP server implementation for retrieving information from the AWS Knowledge Base using the Bedrock Agent Runtime.
1129
+ """
1130
+ awsTerraform: NotRequired[Dict[str, Any]]
1131
+ """
1132
+ Terraform on AWS best practices, infrastructure as code patterns, and security compliance with Checkov.
1133
+ """
1134
+ azure: NotRequired[Dict[str, Any]]
1135
+ """
1136
+ The Azure MCP Server, bringing the power of Azure to your agents.
1137
+ """
1138
+ beagleSecurity: NotRequired[BeagleSecurity]
1139
+ """
1140
+ Connects with the Beagle Security backend using a user token to manage applications, run automated security tests, track vulnerabilities across environments, and gain intelligence from Application and API vulnerability data.
1141
+ """
1142
+ bitrefill: NotRequired[Bitrefill]
1143
+ """
1144
+ A Model Context Protocol Server connector for Bitrefill public API, to enable AI agents to search and shop on Bitrefill.
1145
+ """
1146
+ box: NotRequired[Box]
1147
+ """
1148
+ An MCP server capable of interacting with the Box API.
1149
+ """
1150
+ brave: NotRequired[Brave]
1151
+ """
1152
+ Search the Web for pages, images, news, videos, and more using the Brave Search API.
1153
+ """
1154
+ browserbase: NotRequired[Browserbase]
1155
+ """
1156
+ Allow LLMs to control a browser with Browserbase and Stagehand for AI-powered web automation, intelligent data extraction, and screenshot capture.
1157
+ """
1158
+ buildkite: NotRequired[Buildkite]
1159
+ """
1160
+ Buildkite MCP lets agents interact with Buildkite Builds, Jobs, Logs, Packages and Test Suites.
1161
+ """
1162
+ camunda: NotRequired[Camunda]
1163
+ """
1164
+ Tools to interact with the Camunda 7 Community Edition Engine using the Model Context Protocol (MCP). Whether you're automating workflows, querying process instances, or integrating with external systems, Camunda MCP Server is your agentic solution for seamless interaction with Camunda.
1165
+ """
1166
+ cdataConnectcloud: NotRequired[CdataConnectcloud]
1167
+ """
1168
+ This fully functional MCP Server allows you to connect to any data source in Connect Cloud from Claude Desktop.
1169
+ """
1170
+ charmhealth: NotRequired[Charmhealth]
1171
+ """
1172
+ An MCP server for CharmHealth EHR that allows LLMs and MCP clients to interact with patient records, encounters, and practice information.
1173
+ """
1174
+ chroma: NotRequired[Chroma]
1175
+ """
1176
+ A Model Context Protocol (MCP) server implementation that provides database capabilities for Chroma.
1177
+ """
1178
+ circleci: NotRequired[Circleci]
1179
+ """
1180
+ A specialized server implementation for the Model Context Protocol (MCP) designed to integrate with CircleCI's development workflow. This project serves as a bridge between CircleCI's infrastructure and the Model Context Protocol, enabling enhanced AI-powered development experiences.
1181
+ """
1182
+ clickhouse: NotRequired[Clickhouse]
1183
+ """
1184
+ Official ClickHouse MCP Server.
1185
+ """
1186
+ close: NotRequired[Close]
1187
+ """
1188
+ Streamline sales processes with integrated calling, email, SMS, and automated workflows for small and scaling businesses.
1189
+ """
1190
+ cloudRun: NotRequired[CloudRun]
1191
+ """
1192
+ MCP server to deploy apps to Cloud Run.
1193
+ """
1194
+ cloudflareDocs: NotRequired[Dict[str, Any]]
1195
+ """
1196
+ Access the latest documentation on Cloudflare products such as Workers, Pages, R2, D1, KV.
1197
+ """
1198
+ cockroachdb: NotRequired[Cockroachdb]
1199
+ """
1200
+ Enable AI agents to manage, monitor, and query CockroachDB using natural language. Perform complex database operations, cluster management, and query execution seamlessly through AI-driven workflows. Integrate effortlessly with MCP clients for scalable and high-performance data operations.
1201
+ """
1202
+ codeInterpreter: NotRequired[Dict[str, Any]]
1203
+ """
1204
+ A Python-based execution tool that mimics a Jupyter notebook environment. It accepts code snippets, executes them, and maintains state across sessions — preserving variables, imports, and past results. Ideal for iterative development, debugging, or code execution.
1205
+ """
1206
+ context7: NotRequired[Dict[str, Any]]
1207
+ """
1208
+ Context7 MCP Server -- Up-to-date code documentation for LLMs and AI code editors.
1209
+ """
1210
+ couchbase: NotRequired[Couchbase]
1211
+ """
1212
+ Couchbase is a distributed document database with a powerful search engine and in-built operational and analytical capabilities.
1213
+ """
1214
+ cylera: NotRequired[Cylera]
1215
+ """
1216
+ Brings context about device inventory, threats, risks and utilization powered by the Cylera Partner API into an LLM.
1217
+ """
1218
+ cyreslabAiShodan: NotRequired[CyreslabAiShodan]
1219
+ """
1220
+ A Model Context Protocol server that provides access to Shodan API functionality.
1221
+ """
1222
+ dappier: NotRequired[Dappier]
1223
+ """
1224
+ Enable fast, free real-time web search and access premium data from trusted media brands—news, financial markets, sports, entertainment, weather, and more. Build powerful AI agents with Dappier.
1225
+ """
1226
+ dappierRemote: NotRequired[DappierRemote]
1227
+ """
1228
+ Enable fast, free real-time web search and access premium data from trusted media brands—news, financial markets, sports, entertainment, weather, and more. Build powerful AI agents with Dappier.
1229
+ """
1230
+ dart: NotRequired[Dart]
1231
+ """
1232
+ Dart AI Model Context Protocol (MCP) server.
1233
+ """
1234
+ databaseServer: NotRequired[DatabaseServer]
1235
+ """
1236
+ Comprehensive database server supporting PostgreSQL, MySQL, and SQLite with natural language SQL query capabilities. Enables AI agents to interact with databases through both direct SQL and natural language queries.
1237
+ """
1238
+ databutton: NotRequired[Dict[str, Any]]
1239
+ """
1240
+ Databutton MCP Server.
1241
+ """
1242
+ deepwiki: NotRequired[Dict[str, Any]]
1243
+ """
1244
+ Tools for fetching and asking questions about GitHub repositories.
1245
+ """
1246
+ descope: NotRequired[Descope]
1247
+ """
1248
+ The Descope Model Context Protocol (MCP) server provides an interface to interact with Descope's Management APIs, enabling the search and retrieval of project-related information.
1249
+ """
1250
+ desktopCommander: NotRequired[DesktopCommander]
1251
+ """
1252
+ Search, update, manage files and run terminal commands with AI.
1253
+ """
1254
+ devhubCms: NotRequired[DevhubCms]
1255
+ """
1256
+ DevHub CMS LLM integration through the Model Context Protocol.
1257
+ """
1258
+ discord: NotRequired[Discord]
1259
+ """
1260
+ Interact with the Discord platform.
1261
+ """
1262
+ dockerhub: NotRequired[Dockerhub]
1263
+ """
1264
+ Docker Hub official MCP server.
1265
+ """
1266
+ dodoPayments: NotRequired[DodoPayments]
1267
+ """
1268
+ Tools for cross-border payments, taxes, and compliance.
1269
+ """
1270
+ dreamfactory: NotRequired[Dreamfactory]
1271
+ """
1272
+ DreamFactory is a REST API generation platform with support for hundreds of data sources, including Microsoft SQL Server, MySQL, PostgreSQL, and MongoDB. The DreamFactory MCP Server makes it easy for users to securely interact with their data sources via an MCP client.
1273
+ """
1274
+ duckduckgo: NotRequired[Dict[str, Any]]
1275
+ """
1276
+ A Model Context Protocol (MCP) server that provides web search capabilities through DuckDuckGo, with additional features for content fetching and parsing.
1277
+ """
1278
+ dynatrace: NotRequired[Dynatrace]
1279
+ """
1280
+ This MCP Server allows interaction with the Dynatrace observability platform, brining real-time observability data directly into your development workflow.
1281
+ """
1282
+ loopix: NotRequired[Lpx]
1283
+ """
1284
+ Giving Claude ability to run code with Loopix via MCP (Model Context Protocol).
1285
+ """
1286
+ edubase: NotRequired[Edubase]
1287
+ """
1288
+ The EduBase MCP server enables Claude and other LLMs to interact with EduBase's comprehensive e-learning platform through the Model Context Protocol (MCP).
1289
+ """
1290
+ effect: NotRequired[Dict[str, Any]]
1291
+ """
1292
+ Tools and resources for writing Effect code in Typescript.
1293
+ """
1294
+ elasticsearch: NotRequired[Elasticsearch]
1295
+ """
1296
+ Interact with your Elasticsearch indices through natural language conversations.
1297
+ """
1298
+ elevenlabs: NotRequired[Elevenlabs]
1299
+ """
1300
+ Official ElevenLabs Model Context Protocol (MCP) server that enables interaction with powerful Text to Speech and audio processing APIs.
1301
+ """
1302
+ everart: NotRequired[Everart]
1303
+ """
1304
+ Image generation server using EverArt's API.
1305
+ """
1306
+ exa: NotRequired[Exa]
1307
+ """
1308
+ Exa MCP for web search and web crawling!.
1309
+ """
1310
+ explorium: NotRequired[Explorium]
1311
+ """
1312
+ Discover companies, contacts, and business insights—powered by dozens of trusted external data sources.
1313
+ """
1314
+ fetch: NotRequired[Dict[str, Any]]
1315
+ """
1316
+ Fetches a URL from the internet and extracts its contents as markdown.
1317
+ """
1318
+ fibery: NotRequired[Fibery]
1319
+ """
1320
+ Interact with your Fibery workspace.
1321
+ """
1322
+ filesystem: NotRequired[Filesystem]
1323
+ """
1324
+ Local filesystem access with configurable allowed paths.
1325
+ """
1326
+ findADomain: NotRequired[Dict[str, Any]]
1327
+ """
1328
+ Tools for finding domain names.
1329
+ """
1330
+ firecrawl: NotRequired[Firecrawl]
1331
+ """
1332
+ 🔥 Official Firecrawl MCP Server - Adds powerful web scraping and search to Cursor, Claude and any other LLM clients.
1333
+ """
1334
+ firewalla: NotRequired[Firewalla]
1335
+ """
1336
+ Real-time network monitoring, security analysis, and firewall management through 28 specialized tools. Access security alerts, network flows, device status, and firewall rules directly from your Firewalla device.
1337
+ """
1338
+ flexprice: NotRequired[Flexprice]
1339
+ """
1340
+ Official flexprice MCP Server.
1341
+ """
1342
+ git: NotRequired[Git]
1343
+ """
1344
+ Git repository interaction and automation.
1345
+ """
1346
+ github: NotRequired[Github]
1347
+ """
1348
+ Tools for interacting with the GitHub API, enabling file operations, repository management, search functionality, and more.
1349
+ """
1350
+ githubChat: NotRequired[GithubChat]
1351
+ """
1352
+ A Model Context Protocol (MCP) for analyzing and querying GitHub repositories using the GitHub Chat API.
1353
+ """
1354
+ githubOfficial: NotRequired[GithubOfficial]
1355
+ """
1356
+ Official GitHub MCP Server, by GitHub. Provides seamless integration with GitHub APIs, enabling advanced automation and interaction capabilities for developers and tools.
1357
+ """
1358
+ gitlab: NotRequired[Gitlab]
1359
+ """
1360
+ MCP Server for the GitLab API, enabling project management, file operations, and more.
1361
+ """
1362
+ gitmcp: NotRequired[Dict[str, Any]]
1363
+ """
1364
+ Tools for interacting with Git repositories.
1365
+ """
1366
+ glif: NotRequired[Glif]
1367
+ """
1368
+ Easily run glif.app AI workflows inside your LLM: image generators, memes, selfies, and more. Glif supports all major multimedia AI models inside one app.
1369
+ """
1370
+ gmail: NotRequired[Gmail]
1371
+ """
1372
+ A Model Context Protocol server for Gmail operations using IMAP/SMTP with app password authentication. Supports listing messages, searching emails, and sending messages. To create your app password, visit your Google Account settings under Security > App Passwords. Or visit the link https://myaccount.google.com/apppasswords.
1373
+ """
1374
+ googleMaps: NotRequired[GoogleMaps]
1375
+ """
1376
+ Tools for interacting with the Google Maps API.
1377
+ """
1378
+ googleMapsComprehensive: NotRequired[GoogleMapsComprehensive]
1379
+ """
1380
+ Complete Google Maps integration with 8 tools including geocoding, places search, directions, elevation data, and more using Google's latest APIs.
1381
+ """
1382
+ grafana: NotRequired[Grafana]
1383
+ """
1384
+ MCP server for Grafana.
1385
+ """
1386
+ gyazo: NotRequired[Gyazo]
1387
+ """
1388
+ Official Model Context Protocol server for Gyazo.
1389
+ """
1390
+ hackernews: NotRequired[Dict[str, Any]]
1391
+ """
1392
+ A Model Context Protocol (MCP) server that provides access to Hacker News stories, comments, and user data, with support for search and content retrieval.
1393
+ """
1394
+ hackle: NotRequired[Hackle]
1395
+ """
1396
+ Model Context Protocol server for Hackle.
1397
+ """
1398
+ handwritingOcr: NotRequired[HandwritingOcr]
1399
+ """
1400
+ Model Context Protocol (MCP) Server for Handwriting OCR.
1401
+ """
1402
+ hdx: NotRequired[Hdx]
1403
+ """
1404
+ HDX MCP Server provides access to humanitarian data through the Humanitarian Data Exchange (HDX) API - https://data.humdata.org/hapi. This server offers 33 specialized tools for retrieving humanitarian information including affected populations (refugees, IDPs, returnees), baseline demographics, food security indicators, conflict data, funding information, and operational presence across hundreds of countries and territories. See repository for instructions on getting a free HDX_APP_INDENTIFIER for access.
1405
+ """
1406
+ heroku: NotRequired[Heroku]
1407
+ """
1408
+ Heroku Platform MCP Server using the Heroku CLI.
1409
+ """
1410
+ hostinger: NotRequired[Hostinger]
1411
+ """
1412
+ Interact with Hostinger services over the Hostinger API.
1413
+ """
1414
+ hoverfly: NotRequired[Hoverfly]
1415
+ """
1416
+ A Model Context Protocol (MCP) server that exposes Hoverfly as a programmable tool for AI assistants like Cursor, Claude, GitHub Copilot, and others supporting MCP. It enables dynamic mocking of third-party APIs to unblock development, automate testing, and simulate unavailable services during integration.
1417
+ """
1418
+ hubspot: NotRequired[Hubspot]
1419
+ """
1420
+ Unite marketing, sales, and customer service with AI-powered automation, lead management, and comprehensive analytics.
1421
+ """
1422
+ huggingFace: NotRequired[Dict[str, Any]]
1423
+ """
1424
+ Tools for interacting with Hugging Face models, datasets, research papers, and more.
1425
+ """
1426
+ hummingbot: NotRequired[Hummingbot]
1427
+ """
1428
+ Hummingbot MCP is an open-source toolset that lets you control and monitor your Hummingbot trading bots through AI-powered commands and automation.
1429
+ """
1430
+ husqvarnaAutomower: NotRequired[HusqvarnaAutomower]
1431
+ """
1432
+ MCP Server for huqsvarna automower.
1433
+ """
1434
+ hyperbrowser: NotRequired[Hyperbrowser]
1435
+ """
1436
+ A MCP server implementation for hyperbrowser.
1437
+ """
1438
+ hyperspell: NotRequired[Hyperspell]
1439
+ """
1440
+ Hyperspell MCP Server.
1441
+ """
1442
+ iaptic: NotRequired[Iaptic]
1443
+ """
1444
+ Model Context Protocol server for interacting with iaptic.
1445
+ """
1446
+ inspektorGadget: NotRequired[InspektorGadget]
1447
+ """
1448
+ AI interface to troubleshoot and observe Kubernetes/Container workloads.
1449
+ """
1450
+ javadocs: NotRequired[Dict[str, Any]]
1451
+ """
1452
+ Access to Java, Kotlin, and Scala library documentation.
1453
+ """
1454
+ jetbrains: NotRequired[Jetbrains]
1455
+ """
1456
+ A model context protocol server to work with JetBrains IDEs: IntelliJ, PyCharm, WebStorm, etc. Also, works with Android Studio.
1457
+ """
1458
+ kafkaSchemaReg: NotRequired[KafkaSchemaReg]
1459
+ """
1460
+ Comprehensive MCP server for Kafka Schema Registry operations. Features multi-registry support, schema contexts, migration tools, OAuth authentication, and 57+ tools for complete schema management. Supports SLIM_MODE for optimal performance.
1461
+ """
1462
+ kagisearch: NotRequired[Kagisearch]
1463
+ """
1464
+ The Official Model Context Protocol (MCP) server for Kagi search & other tools.
1465
+ """
1466
+ keboola: NotRequired[Keboola]
1467
+ """
1468
+ Keboola MCP Server is an open-source bridge between your Keboola project and modern AI tools.
1469
+ """
1470
+ kong: NotRequired[Kong]
1471
+ """
1472
+ A Model Context Protocol (MCP) server for interacting with Kong Konnect APIs, allowing AI assistants to query and analyze Kong Gateway configurations, traffic, and analytics.
1473
+ """
1474
+ kubectl: NotRequired[Kubectl]
1475
+ """
1476
+ MCP Server that enables AI assistants to interact with Kubernetes clusters via kubectl operations.
1477
+ """
1478
+ kubernetes: NotRequired[Kubernetes]
1479
+ """
1480
+ Connect to a Kubernetes cluster and manage it.
1481
+ """
1482
+ lara: NotRequired[Lara]
1483
+ """
1484
+ Connect to Lara Translate API, enabling powerful translation capabilities with support for language detection and context-aware translations.
1485
+ """
1486
+ line: NotRequired[Line]
1487
+ """
1488
+ MCP server that integrates the LINE Messaging API to connect an AI Agent to the LINE Official Account.
1489
+ """
1490
+ linkedin: NotRequired[Linkedin]
1491
+ """
1492
+ This MCP server allows Claude and other AI assistants to access your LinkedIn. Scrape LinkedIn profiles and companies, get your recommended jobs, and perform job searches. Set your li_at LinkedIn cookie to use this server.
1493
+ """
1494
+ llmtxt: NotRequired[Dict[str, Any]]
1495
+ """
1496
+ Discovers and retrieves llms.txt from websites.
1497
+ """
1498
+ maestro: NotRequired[Maestro]
1499
+ """
1500
+ A Model Context Protocol (MCP) server exposing Bitcoin blockchain data through the Maestro API platform. Provides tools to explore blocks, transactions, addresses, inscriptions, runes, and other metaprotocol data.
1501
+ """
1502
+ manifold: NotRequired[Dict[str, Any]]
1503
+ """
1504
+ Tools for accessing the Manifold Markets online prediction market platform.
1505
+ """
1506
+ mapbox: NotRequired[Mapbox]
1507
+ """
1508
+ Transform any AI agent into a geospatially-aware system with Mapbox APIs. Provides geocoding, POI search, routing, travel time matrices, isochrones, and static map generation.
1509
+ """
1510
+ mapboxDevkit: NotRequired[MapboxDevkit]
1511
+ """
1512
+ Direct access to Mapbox developer APIs for AI assistants. Enables style management, token management, GeoJSON preview, and other developer tools for building Mapbox applications.
1513
+ """
1514
+ markdownify: NotRequired[Markdownify]
1515
+ """
1516
+ A Model Context Protocol server for converting almost anything to Markdown.
1517
+ """
1518
+ markitdown: NotRequired[Markitdown]
1519
+ """
1520
+ A lightweight MCP server for calling MarkItDown.
1521
+ """
1522
+ mavenTools: NotRequired[Dict[str, Any]]
1523
+ """
1524
+ JVM dependency intelligence for any build tool using Maven Central Repository. Includes Context7 integration for upgrade documentation and guidance.
1525
+ """
1526
+ memory: NotRequired[Dict[str, Any]]
1527
+ """
1528
+ Knowledge graph-based persistent memory system.
1529
+ """
1530
+ mercadoLibre: NotRequired[MercadoLibre]
1531
+ """
1532
+ Provides access to Mercado Libre E-Commerce API.
1533
+ """
1534
+ mercadoPago: NotRequired[MercadoPago]
1535
+ """
1536
+ Provides access to Mercado Pago Marketplace API.
1537
+ """
1538
+ metabase: NotRequired[Metabase]
1539
+ """
1540
+ A comprehensive MCP server for Metabase with 70+ tools.
1541
+ """
1542
+ minecraftWiki: NotRequired[Dict[str, Any]]
1543
+ """
1544
+ A MCP Server for browsing the official Minecraft Wiki!.
1545
+ """
1546
+ mongodb: NotRequired[Mongodb]
1547
+ """
1548
+ A Model Context Protocol server to connect to MongoDB databases and MongoDB Atlas Clusters.
1549
+ """
1550
+ multiversxMx: NotRequired[MultiversxMx]
1551
+ """
1552
+ MCP Server for MultiversX.
1553
+ """
1554
+ nasdaqDataLink: NotRequired[NasdaqDataLink]
1555
+ """
1556
+ MCP server to interact with the data feeds provided by the Nasdaq Data Link. Developed by the community and maintained by Stefano Amorelli.
1557
+ """
1558
+ needle: NotRequired[Needle]
1559
+ """
1560
+ Production-ready RAG service to search and retrieve data from your documents.
1561
+ """
1562
+ neo4jCloudAuraApi: NotRequired[Neo4jCloudAuraApi]
1563
+ """
1564
+ Manage Neo4j Aura database instances through the Neo4j Aura API.
1565
+ """
1566
+ neo4jCypher: NotRequired[Neo4jCypher]
1567
+ """
1568
+ Interact with Neo4j using Cypher graph queries.
1569
+ """
1570
+ neo4jDataModeling: NotRequired[Neo4jDataModeling]
1571
+ """
1572
+ MCP server that assists in creating, validating and visualizing graph data models.
1573
+ """
1574
+ neo4jMemory: NotRequired[Neo4jMemory]
1575
+ """
1576
+ Provide persistent memory capabilities through Neo4j graph database integration.
1577
+ """
1578
+ neon: NotRequired[Neon]
1579
+ """
1580
+ MCP server for interacting with Neon Management API and databases.
1581
+ """
1582
+ nodeCodeSandbox: NotRequired[Dict[str, Any]]
1583
+ """
1584
+ A Node.js–based Model Context Protocol server that spins up disposable Docker containers to execute arbitrary JavaScript.
1585
+ """
1586
+ notion: NotRequired[Notion]
1587
+ """
1588
+ Official Notion MCP Server.
1589
+ """
1590
+ novita: NotRequired[Dict[str, Any]]
1591
+ """
1592
+ Seamless interaction with Novita AI platform resources.
1593
+ """
1594
+ npmSentinel: NotRequired[Dict[str, Any]]
1595
+ """
1596
+ MCP server that enables intelligent NPM package analysis powered by AI.
1597
+ """
1598
+ obsidian: NotRequired[Obsidian]
1599
+ """
1600
+ MCP server that interacts with Obsidian via the Obsidian rest API community plugin.
1601
+ """
1602
+ oktaMcpFctr: NotRequired[OktaMcpFctr]
1603
+ """
1604
+ Secure Okta identity and access management via Model Context Protocol (MCP). Access Okta users, groups, applications, logs, and policies through AI assistants with enterprise-grade security.
1605
+ """
1606
+ omi: NotRequired[Omi]
1607
+ """
1608
+ A Model Context Protocol server for Omi interaction and automation. This server provides tools to read, search, and manipulate Memories and Conversations.
1609
+ """
1610
+ onlyofficeDocspace: NotRequired[OnlyofficeDocspace]
1611
+ """
1612
+ ONLYOFFICE DocSpace is a room-based collaborative platform which allows organizing a clear file structure depending on users' needs or project goals.
1613
+ """
1614
+ openapi: NotRequired[Openapi]
1615
+ """
1616
+ Fetch, validate, and generate code or curl from any OpenAPI or Swagger spec - all from a single URL.
1617
+ """
1618
+ openapiSchema: NotRequired[OpenapiSchema]
1619
+ """
1620
+ OpenAPI Schema Model Context Protocol Server.
1621
+ """
1622
+ openbnbAirbnb: NotRequired[Dict[str, Any]]
1623
+ """
1624
+ MCP Server for searching Airbnb and get listing details.
1625
+ """
1626
+ openmesh: NotRequired[Dict[str, Any]]
1627
+ """
1628
+ Discover and connect to a curated marketplace of MCP servers for extending AI agent capabilities.
1629
+ """
1630
+ openweather: NotRequired[Openweather]
1631
+ """
1632
+ A simple MCP service that provides current weather and 5-day forecast using the free OpenWeatherMap API.
1633
+ """
1634
+ openzeppelinCairo: NotRequired[Dict[str, Any]]
1635
+ """
1636
+ Access to OpenZeppelin Cairo Contracts.
1637
+ """
1638
+ openzeppelinSolidity: NotRequired[Dict[str, Any]]
1639
+ """
1640
+ Access to OpenZeppelin Solidity Contracts.
1641
+ """
1642
+ openzeppelinStellar: NotRequired[Dict[str, Any]]
1643
+ """
1644
+ Access to OpenZeppelin Stellar Contracts.
1645
+ """
1646
+ openzeppelinStylus: NotRequired[Dict[str, Any]]
1647
+ """
1648
+ Access to OpenZeppelin Stylus Contracts.
1649
+ """
1650
+ opik: NotRequired[Opik]
1651
+ """
1652
+ Model Context Protocol (MCP) implementation for Opik enabling seamless IDE integration and unified access to prompts, projects, traces, and metrics.
1653
+ """
1654
+ opine: NotRequired[Opine]
1655
+ """
1656
+ A Model Context Protocol (MCP) server for querying deals and evaluations from the Opine CRM API.
1657
+ """
1658
+ oracle: NotRequired[Oracle]
1659
+ """
1660
+ Connect to Oracle databases via MCP, providing secure read-only access with support for schema exploration, query execution, and metadata inspection.
1661
+ """
1662
+ ospMarketingTools: NotRequired[Dict[str, Any]]
1663
+ """
1664
+ A Model Context Protocol (MCP) server that empowers LLMs to use some of Open Srategy Partners' core writing and product marketing techniques.
1665
+ """
1666
+ oxylabs: NotRequired[Oxylabs]
1667
+ """
1668
+ A Model Context Protocol (MCP) server that enables AI assistants like Claude to seamlessly access web data through Oxylabs' powerful web scraping technology.
1669
+ """
1670
+ paperSearch: NotRequired[Dict[str, Any]]
1671
+ """
1672
+ A MCP for searching and downloading academic papers from multiple sources like arXiv, PubMed, bioRxiv, etc.
1673
+ """
1674
+ perplexityAsk: NotRequired[PerplexityAsk]
1675
+ """
1676
+ Connector for Perplexity API, to enable real-time, web-wide research.
1677
+ """
1678
+ pia: NotRequired[Pia]
1679
+ """
1680
+ An MCP server to help make U.S. Government open datasets AI-friendly.
1681
+ """
1682
+ pinecone: NotRequired[Pinecone]
1683
+ """
1684
+ Pinecone Assistant MCP server.
1685
+ """
1686
+ playwright: NotRequired[Playwright]
1687
+ """
1688
+ Playwright Model Context Protocol Server - Tool to automate Browsers and APIs in Claude Desktop, Cline, Cursor IDE and More 🔌.
1689
+ """
1690
+ pluggedinMcpProxy: NotRequired[PluggedinMcpProxy]
1691
+ """
1692
+ A unified MCP proxy that aggregates multiple MCP servers into one interface, enabling seamless tool discovery and management across all your AI interactions. Manage all your MCP servers from a single connection point with RAG capabilities and real-time notifications.
1693
+ """
1694
+ polarSignals: NotRequired[PolarSignals]
1695
+ """
1696
+ MCP server for Polar Signals Cloud continuous profiling platform, enabling AI assistants to analyze CPU performance, memory usage, and identify optimization opportunities in production systems.
1697
+ """
1698
+ pomodash: NotRequired[Pomodash]
1699
+ """
1700
+ Connect your AI assistant to PomoDash for seamless task and project management.
1701
+ """
1702
+ postgres: NotRequired[Postgres]
1703
+ """
1704
+ Connect with read-only access to PostgreSQL databases. This server enables LLMs to inspect database schemas and execute read-only queries.
1705
+ """
1706
+ postman: NotRequired[Postman]
1707
+ """
1708
+ Postman's MCP server connects AI agents, assistants, and chatbots directly to your APIs on Postman. Use natural language to prompt AI to automate work across your Postman collections, environments, workspaces, and more.
1709
+ """
1710
+ prefEditor: NotRequired[Dict[str, Any]]
1711
+ """
1712
+ Pref Editor is a tool for viewing and editing Android app preferences during development.
1713
+ """
1714
+ prometheus: NotRequired[Prometheus]
1715
+ """
1716
+ A Model Context Protocol (MCP) server that enables AI assistants to query and analyze Prometheus metrics through standardized interfaces. Connect to your Prometheus instance to retrieve metrics, perform queries, and gain insights into your system's performance and health.
1717
+ """
1718
+ puppeteer: NotRequired[Dict[str, Any]]
1719
+ """
1720
+ Browser automation and web scraping using Puppeteer.
1721
+ """
1722
+ pythonRefactoring: NotRequired[Dict[str, Any]]
1723
+ """
1724
+ Educational Python refactoring assistant that provides guided suggestions for AI assistants. Features: • Step-by-step refactoring instructions without modifying code • Comprehensive code analysis using professional tools (Rope, Radon, Vulture, Jedi, LibCST, Pyrefly) • Educational approach teaching refactoring patterns through guided practice • Support for both guide-only and apply-changes modes • Identifies long functions, high complexity, dead code, and type issues • Provides precise line numbers and specific refactoring instructions • Compatible with all AI assistants (Claude, GPT, Cursor, Continue, etc.) Perfect for developers learning refactoring patterns while maintaining full control over code changes. Acts as a refactoring mentor rather than an automated code modifier.
1725
+ """
1726
+ quantconnect: NotRequired[Quantconnect]
1727
+ """
1728
+ The QuantConnect MCP Server is a bridge for AIs (such as Claude and OpenAI o3 Pro) to interact with our cloud platform. When equipped with our MCP, the AI can perform tasks on your behalf through our API such as updating projects, writing strategies, backtesting, and deploying strategies to production live-trading.
1729
+ """
1730
+ ramparts: NotRequired[Dict[str, Any]]
1731
+ """
1732
+ A comprehensive security scanner for MCP servers with YARA rules and static analysis capabilities.
1733
+ """
1734
+ razorpay: NotRequired[Razorpay]
1735
+ """
1736
+ Razorpay's Official MCP Server.
1737
+ """
1738
+ reddit: NotRequired[Reddit]
1739
+ """
1740
+ A comprehensive Model Context Protocol (MCP) server for Reddit integration. This server enables AI agents to interact with Reddit programmatically through a standardized interface.
1741
+ """
1742
+ redis: NotRequired[Redis]
1743
+ """
1744
+ Access to Redis database operations.
1745
+ """
1746
+ redisCloud: NotRequired[RedisCloud]
1747
+ """
1748
+ MCP Server for Redis Cloud's API, allowing you to manage your Redis Cloud resources using natural language.
1749
+ """
1750
+ ref: NotRequired[Ref]
1751
+ """
1752
+ Ref powerful search tool connets your coding tools with documentation context. It includes an up-to-date index of public documentation and it can ingest your private documentation (eg. GitHub repos, PDFs) as well.
1753
+ """
1754
+ remote: NotRequired[Dict[str, Any]]
1755
+ """
1756
+ Tools for finding remote MCP servers.
1757
+ """
1758
+ render: NotRequired[Render]
1759
+ """
1760
+ Interact with your Render resources via LLMs.
1761
+ """
1762
+ resend: NotRequired[Resend]
1763
+ """
1764
+ Send emails directly from Cursor with this email sending MCP server.
1765
+ """
1766
+ risken: NotRequired[Risken]
1767
+ """
1768
+ RISKEN's official MCP Server.
1769
+ """
1770
+ root: NotRequired[Root]
1771
+ """
1772
+ MCP server that provides container image vulnerability scanning and remediation capabilities through Root.io.
1773
+ """
1774
+ ros2: NotRequired[Dict[str, Any]]
1775
+ """
1776
+ Python server implementing Model Context Protocol (MCP) for ROS2.
1777
+ """
1778
+ rube: NotRequired[Rube]
1779
+ """
1780
+ Access to Rube's catalog of remote MCP servers.
1781
+ """
1782
+ rustMcpFilesystem: NotRequired[RustMcpFilesystem]
1783
+ """
1784
+ The Rust MCP Filesystem is a high-performance, asynchronous, and lightweight Model Context Protocol (MCP) server built in Rust for secure and efficient filesystem operations. Designed with security in mind, it operates in read-only mode by default and restricts clients from updating allowed directories via MCP Roots unless explicitly enabled, ensuring robust protection against unauthorized access. Leveraging asynchronous I/O, it delivers blazingly fast performance with a minimal resource footprint. Optimized for token efficiency, the Rust MCP Filesystem enables large language models (LLMs) to precisely target searches and edits within specific sections of large files and restrict operations by file size range, making it ideal for efficient file exploration, automation, and system integration.
1785
+ """
1786
+ schemacrawlerAi: NotRequired[SchemacrawlerAi]
1787
+ """
1788
+ The SchemaCrawler AI MCP Server enables natural language interaction with your database schema using an MCP client in "Agent" mode. It allows users to explore tables, columns, foreign keys, triggers, stored procedures and more simply by asking questions like "Explain the code for the interest calculation stored procedure". You can also ask it to help with SQL, since it knows your schema. This is ideal for developers, DBAs, and data analysts who want to streamline schema comprehension and query development without diving into dense documentation.
1789
+ """
1790
+ schoginiMcpImageBorder: NotRequired[Dict[str, Any]]
1791
+ """
1792
+ This adds a border to an image and returns base64 encoded image.
1793
+ """
1794
+ scrapegraph: NotRequired[Scrapegraph]
1795
+ """
1796
+ ScapeGraph MCP Server.
1797
+ """
1798
+ scrapezy: NotRequired[Scrapezy]
1799
+ """
1800
+ A Model Context Protocol server for Scrapezy that enables AI models to extract structured data from websites.
1801
+ """
1802
+ securenoteLink: NotRequired[Dict[str, Any]]
1803
+ """
1804
+ SecureNote.link MCP Server - allowing AI agents to securely share sensitive information through end-to-end encrypted notes.
1805
+ """
1806
+ semgrep: NotRequired[Dict[str, Any]]
1807
+ """
1808
+ MCP server for using Semgrep to scan code for security vulnerabilities.
1809
+ """
1810
+ sentry: NotRequired[Sentry]
1811
+ """
1812
+ A Model Context Protocol server for retrieving and analyzing issues from Sentry.io. This server provides tools to inspect error reports, stacktraces, and other debugging information from your Sentry account.
1813
+ """
1814
+ sequa: NotRequired[Sequa]
1815
+ """
1816
+ Stop stitching context for Copilot and Cursor. With Sequa MCP, your AI tools know your entire codebase and docs out of the box.
1817
+ """
1818
+ sequentialthinking: NotRequired[Dict[str, Any]]
1819
+ """
1820
+ Dynamic and reflective problem-solving through thought sequences.
1821
+ """
1822
+ shortIo: NotRequired[ShortIo]
1823
+ """
1824
+ Access to Short.io's link shortener and analytics tools.
1825
+ """
1826
+ simplechecklist: NotRequired[Dict[str, Any]]
1827
+ """
1828
+ Advanced SimpleCheckList with MCP server and SQLite database for comprehensive task management. Features: • Complete project and task management system • Hierarchical organization (Projects → Groups → Task Lists → Tasks → Subtasks) • SQLite database for data persistence • RESTful API with comprehensive endpoints • MCP protocol compliance for AI assistant integration • Docker-optimized deployment with stability improvements **v1.0.1 Update**: Enhanced Docker stability with improved container lifecycle management. Default mode optimized for containerized deployment with reliable startup and shutdown processes. Perfect for AI assistants managing complex project workflows and task hierarchies.
1829
+ """
1830
+ singlestore: NotRequired[Singlestore]
1831
+ """
1832
+ MCP server for interacting with SingleStore Management API and services.
1833
+ """
1834
+ slack: NotRequired[Slack]
1835
+ """
1836
+ Interact with Slack Workspaces over the Slack API.
1837
+ """
1838
+ smartbear: NotRequired[Smartbear]
1839
+ """
1840
+ MCP server for AI access to SmartBear tools, including BugSnag, Reflect, API Hub, PactFlow.
1841
+ """
1842
+ sonarqube: NotRequired[Sonarqube]
1843
+ """
1844
+ Interact with SonarQube Cloud, Server and Community build over the web API. Analyze code to identify quality and security issues.
1845
+ """
1846
+ sqlite: NotRequired[Dict[str, Any]]
1847
+ """
1848
+ Database interaction and business intelligence capabilities.
1849
+ """
1850
+ stackgen: NotRequired[Stackgen]
1851
+ """
1852
+ AI-powered DevOps assistant for managing cloud infrastructure and applications.
1853
+ """
1854
+ stackhawk: NotRequired[Stackhawk]
1855
+ """
1856
+ A Model Context Protocol (MCP) server for integrating with StackHawk's security scanning platform. Provides security analytics, YAML configuration management, sensitive data/threat surface analysis, and anti-hallucination tools for LLMs.
1857
+ """
1858
+ stripe: NotRequired[Stripe]
1859
+ """
1860
+ Interact with Stripe services over the Stripe API.
1861
+ """
1862
+ supadata: NotRequired[Supadata]
1863
+ """
1864
+ Official Supadata MCP Server - Adds powerful video & web scraping to Cursor, Claude and any other LLM clients.
1865
+ """
1866
+ suzieq: NotRequired[Suzieq]
1867
+ """
1868
+ MCP Server to interact with a SuzieQ network observability instance via its REST API.
1869
+ """
1870
+ taskOrchestrator: NotRequired[Dict[str, Any]]
1871
+ """
1872
+ Model Context Protocol (MCP) server for comprehensive task and feature management, providing AI assistants with a structured, context-efficient way to interact with project data.
1873
+ """
1874
+ tavily: NotRequired[Tavily]
1875
+ """
1876
+ The Tavily MCP server provides seamless interaction with the tavily-search and tavily-extract tools, real-time web search capabilities through the tavily-search tool and Intelligent data extraction from web pages via the tavily-extract tool.
1877
+ """
1878
+ teamwork: NotRequired[Teamwork]
1879
+ """
1880
+ Tools for Teamwork.com products.
1881
+ """
1882
+ telnyx: NotRequired[Telnyx]
1883
+ """
1884
+ Enables interaction with powerful telephony, messaging, and AI assistant APIs.
1885
+ """
1886
+ tembo: NotRequired[Tembo]
1887
+ """
1888
+ MCP server for Tembo Cloud's platform API.
1889
+ """
1890
+ terraform: NotRequired[Dict[str, Any]]
1891
+ """
1892
+ The Terraform MCP Server provides seamless integration with Terraform ecosystem, enabling advanced automation and interaction capabilities for Infrastructure as Code (IaC) development.
1893
+ """
1894
+ textToGraphql: NotRequired[TextToGraphql]
1895
+ """
1896
+ Transform natural language queries into GraphQL queries using an AI agent. Provides schema management, query validation, execution, and history tracking.
1897
+ """
1898
+ tigris: NotRequired[Tigris]
1899
+ """
1900
+ Tigris is a globally distributed S3-compatible object storage service that provides low latency anywhere in the world, enabling developers to store and access any amount of data for a wide range of use cases.
1901
+ """
1902
+ time: NotRequired[Dict[str, Any]]
1903
+ """
1904
+ Time and timezone conversion capabilities.
1905
+ """
1906
+ triplewhale: NotRequired[Triplewhale]
1907
+ """
1908
+ Triplewhale MCP Server.
1909
+ """
1910
+ unrealEngine: NotRequired[UnrealEngine]
1911
+ """
1912
+ A comprehensive Model Context Protocol (MCP) server that enables AI assistants to control Unreal Engine via Remote Control API. Built with TypeScript and designed for game development automation.
1913
+ """
1914
+ veyrax: NotRequired[Veyrax]
1915
+ """
1916
+ VeyraX MCP is the only connection you need to access all your tools in any MCP-compatible environment.
1917
+ """
1918
+ vizro: NotRequired[Dict[str, Any]]
1919
+ """
1920
+ provides tools and templates to create a functioning Vizro chart or dashboard step by step.
1921
+ """
1922
+ vulnNist: NotRequired[Dict[str, Any]]
1923
+ """
1924
+ This MCP server exposes tools to query the NVD/CVE REST API and return formatted text results suitable for LLM consumption via the MCP protocol. It includes automatic query chunking for large date ranges and parallel processing for improved performance.
1925
+ """
1926
+ wayfound: NotRequired[Wayfound]
1927
+ """
1928
+ Wayfound’s MCP server allows business users to govern, supervise, and improve AI Agents.
1929
+ """
1930
+ webflow: NotRequired[Webflow]
1931
+ """
1932
+ Model Context Protocol (MCP) server for the Webflow Data API.
1933
+ """
1934
+ wikipedia: NotRequired[Dict[str, Any]]
1935
+ """
1936
+ A Model Context Protocol (MCP) server that retrieves information from Wikipedia to provide context to LLMs.
1937
+ """
1938
+ wolframAlpha: NotRequired[WolframAlpha]
1939
+ """
1940
+ Connect your chat repl to wolfram alpha computational intelligence.
1941
+ """
1942
+ youtubeTranscript: NotRequired[Dict[str, Any]]
1943
+ """
1944
+ Retrieves transcripts for given YouTube video URLs.
1945
+ """
1946
+ zerodhaKite: NotRequired[ZerodhaKite]
1947
+ """
1948
+ MCP server for Zerodha Kite Connect API - India's leading stock broker trading platform. Execute trades, manage portfolios, and access real-time market data for NSE, BSE, and other Indian exchanges.
1949
+ """