moru 0.1.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.
- moru/__init__.py +174 -0
- moru/api/__init__.py +164 -0
- moru/api/client/__init__.py +8 -0
- moru/api/client/api/__init__.py +1 -0
- moru/api/client/api/sandboxes/__init__.py +1 -0
- moru/api/client/api/sandboxes/delete_sandboxes_sandbox_id.py +161 -0
- moru/api/client/api/sandboxes/get_sandboxes.py +176 -0
- moru/api/client/api/sandboxes/get_sandboxes_metrics.py +173 -0
- moru/api/client/api/sandboxes/get_sandboxes_sandbox_id.py +163 -0
- moru/api/client/api/sandboxes/get_sandboxes_sandbox_id_logs.py +199 -0
- moru/api/client/api/sandboxes/get_sandboxes_sandbox_id_metrics.py +212 -0
- moru/api/client/api/sandboxes/get_v2_sandboxes.py +230 -0
- moru/api/client/api/sandboxes/post_sandboxes.py +172 -0
- moru/api/client/api/sandboxes/post_sandboxes_sandbox_id_connect.py +193 -0
- moru/api/client/api/sandboxes/post_sandboxes_sandbox_id_pause.py +165 -0
- moru/api/client/api/sandboxes/post_sandboxes_sandbox_id_refreshes.py +181 -0
- moru/api/client/api/sandboxes/post_sandboxes_sandbox_id_resume.py +189 -0
- moru/api/client/api/sandboxes/post_sandboxes_sandbox_id_timeout.py +193 -0
- moru/api/client/api/templates/__init__.py +1 -0
- moru/api/client/api/templates/delete_templates_template_id.py +157 -0
- moru/api/client/api/templates/get_templates.py +172 -0
- moru/api/client/api/templates/get_templates_template_id.py +195 -0
- moru/api/client/api/templates/get_templates_template_id_builds_build_id_status.py +217 -0
- moru/api/client/api/templates/get_templates_template_id_files_hash.py +180 -0
- moru/api/client/api/templates/patch_templates_template_id.py +183 -0
- moru/api/client/api/templates/post_templates.py +172 -0
- moru/api/client/api/templates/post_templates_template_id.py +181 -0
- moru/api/client/api/templates/post_templates_template_id_builds_build_id.py +170 -0
- moru/api/client/api/templates/post_v2_templates.py +172 -0
- moru/api/client/api/templates/post_v3_templates.py +172 -0
- moru/api/client/api/templates/post_v_2_templates_template_id_builds_build_id.py +192 -0
- moru/api/client/client.py +286 -0
- moru/api/client/errors.py +16 -0
- moru/api/client/models/__init__.py +123 -0
- moru/api/client/models/aws_registry.py +85 -0
- moru/api/client/models/aws_registry_type.py +8 -0
- moru/api/client/models/build_log_entry.py +89 -0
- moru/api/client/models/build_status_reason.py +95 -0
- moru/api/client/models/connect_sandbox.py +59 -0
- moru/api/client/models/created_access_token.py +100 -0
- moru/api/client/models/created_team_api_key.py +166 -0
- moru/api/client/models/disk_metrics.py +91 -0
- moru/api/client/models/error.py +67 -0
- moru/api/client/models/gcp_registry.py +69 -0
- moru/api/client/models/gcp_registry_type.py +8 -0
- moru/api/client/models/general_registry.py +77 -0
- moru/api/client/models/general_registry_type.py +8 -0
- moru/api/client/models/identifier_masking_details.py +83 -0
- moru/api/client/models/listed_sandbox.py +154 -0
- moru/api/client/models/log_level.py +11 -0
- moru/api/client/models/max_team_metric.py +78 -0
- moru/api/client/models/mcp_type_0.py +44 -0
- moru/api/client/models/new_access_token.py +59 -0
- moru/api/client/models/new_sandbox.py +172 -0
- moru/api/client/models/new_team_api_key.py +59 -0
- moru/api/client/models/node.py +155 -0
- moru/api/client/models/node_detail.py +165 -0
- moru/api/client/models/node_metrics.py +122 -0
- moru/api/client/models/node_status.py +11 -0
- moru/api/client/models/node_status_change.py +79 -0
- moru/api/client/models/post_sandboxes_sandbox_id_refreshes_body.py +59 -0
- moru/api/client/models/post_sandboxes_sandbox_id_timeout_body.py +59 -0
- moru/api/client/models/resumed_sandbox.py +68 -0
- moru/api/client/models/sandbox.py +145 -0
- moru/api/client/models/sandbox_detail.py +183 -0
- moru/api/client/models/sandbox_log.py +70 -0
- moru/api/client/models/sandbox_log_entry.py +93 -0
- moru/api/client/models/sandbox_log_entry_fields.py +44 -0
- moru/api/client/models/sandbox_logs.py +91 -0
- moru/api/client/models/sandbox_metric.py +118 -0
- moru/api/client/models/sandbox_network_config.py +92 -0
- moru/api/client/models/sandbox_state.py +9 -0
- moru/api/client/models/sandboxes_with_metrics.py +59 -0
- moru/api/client/models/team.py +83 -0
- moru/api/client/models/team_api_key.py +158 -0
- moru/api/client/models/team_metric.py +86 -0
- moru/api/client/models/team_user.py +68 -0
- moru/api/client/models/template.py +217 -0
- moru/api/client/models/template_build.py +139 -0
- moru/api/client/models/template_build_file_upload.py +70 -0
- moru/api/client/models/template_build_info.py +126 -0
- moru/api/client/models/template_build_request.py +115 -0
- moru/api/client/models/template_build_request_v2.py +88 -0
- moru/api/client/models/template_build_request_v3.py +88 -0
- moru/api/client/models/template_build_start_v2.py +184 -0
- moru/api/client/models/template_build_status.py +11 -0
- moru/api/client/models/template_legacy.py +207 -0
- moru/api/client/models/template_request_response_v3.py +83 -0
- moru/api/client/models/template_step.py +91 -0
- moru/api/client/models/template_update_request.py +59 -0
- moru/api/client/models/template_with_builds.py +148 -0
- moru/api/client/models/update_team_api_key.py +59 -0
- moru/api/client/py.typed +1 -0
- moru/api/client/types.py +54 -0
- moru/api/client_async/__init__.py +50 -0
- moru/api/client_sync/__init__.py +52 -0
- moru/api/metadata.py +14 -0
- moru/connection_config.py +217 -0
- moru/envd/api.py +59 -0
- moru/envd/filesystem/filesystem_connect.py +193 -0
- moru/envd/filesystem/filesystem_pb2.py +76 -0
- moru/envd/filesystem/filesystem_pb2.pyi +233 -0
- moru/envd/process/process_connect.py +155 -0
- moru/envd/process/process_pb2.py +92 -0
- moru/envd/process/process_pb2.pyi +304 -0
- moru/envd/rpc.py +61 -0
- moru/envd/versions.py +6 -0
- moru/exceptions.py +95 -0
- moru/sandbox/commands/command_handle.py +69 -0
- moru/sandbox/commands/main.py +39 -0
- moru/sandbox/filesystem/filesystem.py +94 -0
- moru/sandbox/filesystem/watch_handle.py +60 -0
- moru/sandbox/main.py +210 -0
- moru/sandbox/mcp.py +1120 -0
- moru/sandbox/network.py +8 -0
- moru/sandbox/sandbox_api.py +210 -0
- moru/sandbox/signature.py +45 -0
- moru/sandbox/utils.py +34 -0
- moru/sandbox_async/commands/command.py +336 -0
- moru/sandbox_async/commands/command_handle.py +196 -0
- moru/sandbox_async/commands/pty.py +240 -0
- moru/sandbox_async/filesystem/filesystem.py +531 -0
- moru/sandbox_async/filesystem/watch_handle.py +62 -0
- moru/sandbox_async/main.py +734 -0
- moru/sandbox_async/paginator.py +69 -0
- moru/sandbox_async/sandbox_api.py +325 -0
- moru/sandbox_async/utils.py +7 -0
- moru/sandbox_sync/commands/command.py +328 -0
- moru/sandbox_sync/commands/command_handle.py +150 -0
- moru/sandbox_sync/commands/pty.py +230 -0
- moru/sandbox_sync/filesystem/filesystem.py +518 -0
- moru/sandbox_sync/filesystem/watch_handle.py +69 -0
- moru/sandbox_sync/main.py +726 -0
- moru/sandbox_sync/paginator.py +69 -0
- moru/sandbox_sync/sandbox_api.py +308 -0
- moru/template/consts.py +30 -0
- moru/template/dockerfile_parser.py +275 -0
- moru/template/logger.py +232 -0
- moru/template/main.py +1360 -0
- moru/template/readycmd.py +138 -0
- moru/template/types.py +105 -0
- moru/template/utils.py +320 -0
- moru/template_async/build_api.py +202 -0
- moru/template_async/main.py +366 -0
- moru/template_sync/build_api.py +199 -0
- moru/template_sync/main.py +371 -0
- moru-0.1.0.dist-info/METADATA +63 -0
- moru-0.1.0.dist-info/RECORD +152 -0
- moru-0.1.0.dist-info/WHEEL +4 -0
- moru-0.1.0.dist-info/licenses/LICENSE +9 -0
- moru_connect/__init__.py +1 -0
- moru_connect/client.py +493 -0
moru/sandbox/mcp.py
ADDED
|
@@ -0,0 +1,1120 @@
|
|
|
1
|
+
# generated by datamodel-codegen:
|
|
2
|
+
# filename: mcp-server.json
|
|
3
|
+
# timestamp: 2025-12-30T13:05:12+00:00
|
|
4
|
+
|
|
5
|
+
from __future__ import annotations
|
|
6
|
+
|
|
7
|
+
from typing import Any, Dict, List, TypedDict
|
|
8
|
+
|
|
9
|
+
from typing_extensions import NotRequired
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class Airtable(TypedDict):
|
|
13
|
+
airtableApiKey: str
|
|
14
|
+
nodeenv: str
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
class Aks(TypedDict):
|
|
18
|
+
accessLevel: str
|
|
19
|
+
additionalTools: NotRequired[str]
|
|
20
|
+
allowNamespaces: NotRequired[str]
|
|
21
|
+
azureDir: str
|
|
22
|
+
containerUser: NotRequired[str]
|
|
23
|
+
kubeconfig: str
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
class ApiGateway(TypedDict):
|
|
27
|
+
api1HeaderAuthorization: str
|
|
28
|
+
api1Name: str
|
|
29
|
+
api1SwaggerUrl: str
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
class Apify(TypedDict):
|
|
33
|
+
apifyToken: str
|
|
34
|
+
tools: str
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
class Arxiv(TypedDict):
|
|
38
|
+
storagePath: str
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
class AstGrep(TypedDict):
|
|
42
|
+
path: str
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
class AstraDb(TypedDict):
|
|
46
|
+
astraDbApplicationToken: str
|
|
47
|
+
endpoint: str
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
class Atlan(TypedDict):
|
|
51
|
+
apiKey: str
|
|
52
|
+
baseUrl: str
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
class AtlasDocs(TypedDict):
|
|
56
|
+
apiUrl: str
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
class Atlassian(TypedDict):
|
|
60
|
+
confluenceApiToken: NotRequired[str]
|
|
61
|
+
confluencePersonalToken: NotRequired[str]
|
|
62
|
+
confluenceUrl: str
|
|
63
|
+
confluenceUsername: NotRequired[str]
|
|
64
|
+
jiraApiToken: NotRequired[str]
|
|
65
|
+
jiraPersonalToken: NotRequired[str]
|
|
66
|
+
jiraUrl: str
|
|
67
|
+
jiraUsername: NotRequired[str]
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
class AudienseInsights(TypedDict):
|
|
71
|
+
audienseClientSecret: NotRequired[str]
|
|
72
|
+
clientId: str
|
|
73
|
+
twitterBearerToken: NotRequired[str]
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
class AwsKbRetrievalServer(TypedDict):
|
|
77
|
+
accessKeyId: str
|
|
78
|
+
awsSecretAccessKey: NotRequired[str]
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
class BeagleSecurity(TypedDict):
|
|
82
|
+
beagleSecurityApiToken: str
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
class Bitrefill(TypedDict):
|
|
86
|
+
apiId: str
|
|
87
|
+
apiSecret: NotRequired[str]
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
class Box(TypedDict):
|
|
91
|
+
clientId: str
|
|
92
|
+
clientSecret: NotRequired[str]
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
class Brave(TypedDict):
|
|
96
|
+
apiKey: str
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
class Browserbase(TypedDict):
|
|
100
|
+
apiKey: str
|
|
101
|
+
geminiApiKey: str
|
|
102
|
+
projectId: str
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
class Buildkite(TypedDict):
|
|
106
|
+
apiToken: str
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
class Camunda(TypedDict):
|
|
110
|
+
camundahost: str
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
class CdataConnectcloud(TypedDict):
|
|
114
|
+
cdataPat: NotRequired[str]
|
|
115
|
+
username: str
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
class Charmhealth(TypedDict):
|
|
119
|
+
charmhealthApiKey: str
|
|
120
|
+
charmhealthBaseUrl: str
|
|
121
|
+
charmhealthClientId: str
|
|
122
|
+
charmhealthClientSecret: str
|
|
123
|
+
charmhealthRedirectUri: str
|
|
124
|
+
charmhealthRefreshToken: str
|
|
125
|
+
charmhealthTokenUrl: str
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
class Chroma(TypedDict):
|
|
129
|
+
apiKey: str
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
class Circleci(TypedDict):
|
|
133
|
+
token: str
|
|
134
|
+
url: str
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
class Clickhouse(TypedDict):
|
|
138
|
+
connectTimeout: str
|
|
139
|
+
host: str
|
|
140
|
+
password: str
|
|
141
|
+
port: str
|
|
142
|
+
secure: str
|
|
143
|
+
sendReceiveTimeout: str
|
|
144
|
+
user: str
|
|
145
|
+
verify: str
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
class Close(TypedDict):
|
|
149
|
+
apiKey: str
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
class CloudRun(TypedDict):
|
|
153
|
+
credentialsPath: str
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
class Cockroachdb(TypedDict):
|
|
157
|
+
caPath: str
|
|
158
|
+
crdbPwd: str
|
|
159
|
+
database: str
|
|
160
|
+
host: str
|
|
161
|
+
port: int
|
|
162
|
+
sslCertfile: str
|
|
163
|
+
sslKeyfile: str
|
|
164
|
+
sslMode: str
|
|
165
|
+
username: str
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
class Couchbase(TypedDict):
|
|
169
|
+
cbBucketName: str
|
|
170
|
+
cbConnectionString: str
|
|
171
|
+
cbMcpReadOnlyQueryMode: str
|
|
172
|
+
cbPassword: str
|
|
173
|
+
cbUsername: str
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
class Cylera(TypedDict):
|
|
177
|
+
cyleraBaseUrl: str
|
|
178
|
+
cyleraPassword: str
|
|
179
|
+
cyleraUsername: str
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
class CyreslabAiShodan(TypedDict):
|
|
183
|
+
shodanApiKey: str
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
class Dappier(TypedDict):
|
|
187
|
+
apiKey: str
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
class DappierRemote(TypedDict):
|
|
191
|
+
dappierRemoteApiKey: str
|
|
192
|
+
|
|
193
|
+
|
|
194
|
+
class Dart(TypedDict):
|
|
195
|
+
host: str
|
|
196
|
+
token: str
|
|
197
|
+
|
|
198
|
+
|
|
199
|
+
class DatabaseServer(TypedDict):
|
|
200
|
+
databaseUrl: str
|
|
201
|
+
|
|
202
|
+
|
|
203
|
+
class Descope(TypedDict):
|
|
204
|
+
managementKey: NotRequired[str]
|
|
205
|
+
projectId: str
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
class DesktopCommander(TypedDict):
|
|
209
|
+
paths: List[str]
|
|
210
|
+
|
|
211
|
+
|
|
212
|
+
class DevhubCms(TypedDict):
|
|
213
|
+
devhubApiKey: NotRequired[str]
|
|
214
|
+
devhubApiSecret: NotRequired[str]
|
|
215
|
+
url: str
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
class Discord(TypedDict):
|
|
219
|
+
discordToken: str
|
|
220
|
+
|
|
221
|
+
|
|
222
|
+
class Dockerhub(TypedDict):
|
|
223
|
+
hubPatToken: str
|
|
224
|
+
username: str
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
class DodoPayments(TypedDict):
|
|
228
|
+
dodoPaymentsApiKey: str
|
|
229
|
+
|
|
230
|
+
|
|
231
|
+
class Dreamfactory(TypedDict):
|
|
232
|
+
dreamfactoryapikey: str
|
|
233
|
+
dreamfactoryurl: str
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
class Dynatrace(TypedDict):
|
|
237
|
+
oauthClientId: str
|
|
238
|
+
oauthClientSecret: str
|
|
239
|
+
url: str
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
class Moru(TypedDict):
|
|
243
|
+
apiKey: str
|
|
244
|
+
|
|
245
|
+
|
|
246
|
+
class Edubase(TypedDict):
|
|
247
|
+
apiKey: NotRequired[str]
|
|
248
|
+
app: str
|
|
249
|
+
url: str
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
class Elasticsearch(TypedDict):
|
|
253
|
+
esApiKey: NotRequired[str]
|
|
254
|
+
url: str
|
|
255
|
+
|
|
256
|
+
|
|
257
|
+
class Elevenlabs(TypedDict):
|
|
258
|
+
apiKey: NotRequired[str]
|
|
259
|
+
data: str
|
|
260
|
+
|
|
261
|
+
|
|
262
|
+
class Everart(TypedDict):
|
|
263
|
+
apiKey: str
|
|
264
|
+
|
|
265
|
+
|
|
266
|
+
class Exa(TypedDict):
|
|
267
|
+
apiKey: str
|
|
268
|
+
|
|
269
|
+
|
|
270
|
+
class Explorium(TypedDict):
|
|
271
|
+
apiAccessToken: str
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
class Fibery(TypedDict):
|
|
275
|
+
apiToken: str
|
|
276
|
+
host: str
|
|
277
|
+
|
|
278
|
+
|
|
279
|
+
class Filesystem(TypedDict):
|
|
280
|
+
paths: List[str]
|
|
281
|
+
|
|
282
|
+
|
|
283
|
+
class Firecrawl(TypedDict):
|
|
284
|
+
apiKey: str
|
|
285
|
+
creditCriticalThreshold: int
|
|
286
|
+
creditWarningThreshold: int
|
|
287
|
+
retryBackoffFactor: int
|
|
288
|
+
retryDelay: int
|
|
289
|
+
retryMax: int
|
|
290
|
+
retryMaxDelay: int
|
|
291
|
+
url: str
|
|
292
|
+
|
|
293
|
+
|
|
294
|
+
class Firewalla(TypedDict):
|
|
295
|
+
boxId: str
|
|
296
|
+
firewallaMspToken: str
|
|
297
|
+
mspId: str
|
|
298
|
+
|
|
299
|
+
|
|
300
|
+
class Flexprice(TypedDict):
|
|
301
|
+
apiKey: str
|
|
302
|
+
baseUrl: str
|
|
303
|
+
|
|
304
|
+
|
|
305
|
+
class Git(TypedDict):
|
|
306
|
+
paths: List[str]
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
class Github(TypedDict):
|
|
310
|
+
personalAccessToken: str
|
|
311
|
+
|
|
312
|
+
|
|
313
|
+
class GithubChat(TypedDict):
|
|
314
|
+
githubApiKey: str
|
|
315
|
+
|
|
316
|
+
|
|
317
|
+
class GithubOfficial(TypedDict):
|
|
318
|
+
githubPersonalAccessToken: str
|
|
319
|
+
|
|
320
|
+
|
|
321
|
+
class Gitlab(TypedDict):
|
|
322
|
+
personalAccessToken: str
|
|
323
|
+
url: str
|
|
324
|
+
|
|
325
|
+
|
|
326
|
+
class Glif(TypedDict):
|
|
327
|
+
apiToken: str
|
|
328
|
+
ids: str
|
|
329
|
+
ignoredSaved: bool
|
|
330
|
+
|
|
331
|
+
|
|
332
|
+
class Gmail(TypedDict):
|
|
333
|
+
emailAddress: str
|
|
334
|
+
emailPassword: NotRequired[str]
|
|
335
|
+
|
|
336
|
+
|
|
337
|
+
class GoogleMaps(TypedDict):
|
|
338
|
+
googleMapsApiKey: str
|
|
339
|
+
|
|
340
|
+
|
|
341
|
+
class GoogleMapsComprehensive(TypedDict):
|
|
342
|
+
googleMapsApiKey: str
|
|
343
|
+
|
|
344
|
+
|
|
345
|
+
class Grafana(TypedDict):
|
|
346
|
+
apiKey: str
|
|
347
|
+
url: str
|
|
348
|
+
|
|
349
|
+
|
|
350
|
+
class Gyazo(TypedDict):
|
|
351
|
+
accessToken: str
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
class Hackle(TypedDict):
|
|
355
|
+
apiKey: str
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
class HandwritingOcr(TypedDict):
|
|
359
|
+
apiToken: str
|
|
360
|
+
|
|
361
|
+
|
|
362
|
+
class Hdx(TypedDict):
|
|
363
|
+
appIdentifier: str
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
class Heroku(TypedDict):
|
|
367
|
+
apiKey: str
|
|
368
|
+
|
|
369
|
+
|
|
370
|
+
class Hostinger(TypedDict):
|
|
371
|
+
apitoken: str
|
|
372
|
+
|
|
373
|
+
|
|
374
|
+
class Hoverfly(TypedDict):
|
|
375
|
+
data: str
|
|
376
|
+
|
|
377
|
+
|
|
378
|
+
class Hubspot(TypedDict):
|
|
379
|
+
apiKey: str
|
|
380
|
+
|
|
381
|
+
|
|
382
|
+
class Hummingbot(TypedDict):
|
|
383
|
+
apiUrl: str
|
|
384
|
+
hummingbotApiPassword: NotRequired[str]
|
|
385
|
+
hummingbotApiUsername: NotRequired[str]
|
|
386
|
+
|
|
387
|
+
|
|
388
|
+
class HusqvarnaAutomower(TypedDict):
|
|
389
|
+
clientId: str
|
|
390
|
+
husqvarnaClientSecret: str
|
|
391
|
+
|
|
392
|
+
|
|
393
|
+
class Hyperbrowser(TypedDict):
|
|
394
|
+
apiKey: str
|
|
395
|
+
|
|
396
|
+
|
|
397
|
+
class Hyperspell(TypedDict):
|
|
398
|
+
collection: str
|
|
399
|
+
token: str
|
|
400
|
+
useResources: bool
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
class Iaptic(TypedDict):
|
|
404
|
+
apiKey: NotRequired[str]
|
|
405
|
+
appName: str
|
|
406
|
+
|
|
407
|
+
|
|
408
|
+
class InspektorGadget(TypedDict):
|
|
409
|
+
gadgetImages: NotRequired[str]
|
|
410
|
+
kubeconfig: str
|
|
411
|
+
|
|
412
|
+
|
|
413
|
+
class Jetbrains(TypedDict):
|
|
414
|
+
port: int
|
|
415
|
+
|
|
416
|
+
|
|
417
|
+
class KafkaSchemaReg(TypedDict):
|
|
418
|
+
registryUrl: str
|
|
419
|
+
schemaRegistryPassword: NotRequired[str]
|
|
420
|
+
schemaRegistryUser: NotRequired[str]
|
|
421
|
+
slimMode: NotRequired[str]
|
|
422
|
+
viewonly: NotRequired[str]
|
|
423
|
+
|
|
424
|
+
|
|
425
|
+
class Kagisearch(TypedDict):
|
|
426
|
+
engine: str
|
|
427
|
+
kagiApiKey: str
|
|
428
|
+
|
|
429
|
+
|
|
430
|
+
class Keboola(TypedDict):
|
|
431
|
+
kbcStorageToken: str
|
|
432
|
+
kbcWorkspaceSchema: str
|
|
433
|
+
|
|
434
|
+
|
|
435
|
+
class Kong(TypedDict):
|
|
436
|
+
konnectAccessToken: str
|
|
437
|
+
region: str
|
|
438
|
+
|
|
439
|
+
|
|
440
|
+
class Kubectl(TypedDict):
|
|
441
|
+
kubeconfig: str
|
|
442
|
+
|
|
443
|
+
|
|
444
|
+
class Kubernetes(TypedDict):
|
|
445
|
+
configPath: str
|
|
446
|
+
|
|
447
|
+
|
|
448
|
+
class Lara(TypedDict):
|
|
449
|
+
accessKeySecret: NotRequired[str]
|
|
450
|
+
keyId: str
|
|
451
|
+
|
|
452
|
+
|
|
453
|
+
class Line(TypedDict):
|
|
454
|
+
channelAccessToken: NotRequired[str]
|
|
455
|
+
userId: str
|
|
456
|
+
|
|
457
|
+
|
|
458
|
+
class Linkedin(TypedDict):
|
|
459
|
+
linkedinCookie: str
|
|
460
|
+
userAgent: str
|
|
461
|
+
|
|
462
|
+
|
|
463
|
+
class Maestro(TypedDict):
|
|
464
|
+
apiKeyApiKey: str
|
|
465
|
+
|
|
466
|
+
|
|
467
|
+
class Mapbox(TypedDict):
|
|
468
|
+
accessToken: str
|
|
469
|
+
|
|
470
|
+
|
|
471
|
+
class MapboxDevkit(TypedDict):
|
|
472
|
+
mapboxAccessToken: str
|
|
473
|
+
|
|
474
|
+
|
|
475
|
+
class Markdownify(TypedDict):
|
|
476
|
+
paths: List[str]
|
|
477
|
+
|
|
478
|
+
|
|
479
|
+
class Markitdown(TypedDict):
|
|
480
|
+
paths: List[str]
|
|
481
|
+
|
|
482
|
+
|
|
483
|
+
class MercadoLibre(TypedDict):
|
|
484
|
+
mercadoLibreApiKey: str
|
|
485
|
+
|
|
486
|
+
|
|
487
|
+
class MercadoPago(TypedDict):
|
|
488
|
+
mercadoPagoApiKey: str
|
|
489
|
+
|
|
490
|
+
|
|
491
|
+
class Metabase(TypedDict):
|
|
492
|
+
apiKey: str
|
|
493
|
+
metabaseurl: str
|
|
494
|
+
metabaseusername: str
|
|
495
|
+
password: str
|
|
496
|
+
|
|
497
|
+
|
|
498
|
+
class Mongodb(TypedDict):
|
|
499
|
+
mdbMcpConnectionString: str
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
class MultiversxMx(TypedDict):
|
|
503
|
+
network: str
|
|
504
|
+
wallet: str
|
|
505
|
+
|
|
506
|
+
|
|
507
|
+
class NasdaqDataLink(TypedDict):
|
|
508
|
+
nasdaqDataLinkApiKey: str
|
|
509
|
+
|
|
510
|
+
|
|
511
|
+
class Needle(TypedDict):
|
|
512
|
+
needleApiKey: str
|
|
513
|
+
|
|
514
|
+
|
|
515
|
+
class Neo4jCloudAuraApi(TypedDict):
|
|
516
|
+
clientId: str
|
|
517
|
+
neo4jAuraClientSecret: NotRequired[str]
|
|
518
|
+
serverAllowOrigins: NotRequired[str]
|
|
519
|
+
serverAllowedHosts: NotRequired[str]
|
|
520
|
+
serverHost: NotRequired[str]
|
|
521
|
+
serverPath: NotRequired[str]
|
|
522
|
+
serverPort: NotRequired[str]
|
|
523
|
+
transport: NotRequired[str]
|
|
524
|
+
|
|
525
|
+
|
|
526
|
+
class Neo4jCypher(TypedDict):
|
|
527
|
+
database: NotRequired[str]
|
|
528
|
+
namespace: NotRequired[str]
|
|
529
|
+
neo4jPassword: NotRequired[str]
|
|
530
|
+
readOnly: NotRequired[bool]
|
|
531
|
+
readTimeout: NotRequired[str]
|
|
532
|
+
responseTokenLimit: NotRequired[str]
|
|
533
|
+
serverAllowOrigins: NotRequired[str]
|
|
534
|
+
serverAllowedHosts: NotRequired[str]
|
|
535
|
+
serverHost: NotRequired[str]
|
|
536
|
+
serverPath: NotRequired[str]
|
|
537
|
+
serverPort: NotRequired[str]
|
|
538
|
+
transport: NotRequired[str]
|
|
539
|
+
url: str
|
|
540
|
+
username: str
|
|
541
|
+
|
|
542
|
+
|
|
543
|
+
class Neo4jDataModeling(TypedDict):
|
|
544
|
+
serverAllowOrigins: str
|
|
545
|
+
serverAllowedHosts: str
|
|
546
|
+
serverHost: str
|
|
547
|
+
serverPath: str
|
|
548
|
+
serverPort: str
|
|
549
|
+
transport: str
|
|
550
|
+
|
|
551
|
+
|
|
552
|
+
class Neo4jMemory(TypedDict):
|
|
553
|
+
database: NotRequired[str]
|
|
554
|
+
neo4jPassword: NotRequired[str]
|
|
555
|
+
serverAllowOrigins: NotRequired[str]
|
|
556
|
+
serverAllowedHosts: NotRequired[str]
|
|
557
|
+
serverHost: NotRequired[str]
|
|
558
|
+
serverPath: NotRequired[str]
|
|
559
|
+
serverPort: NotRequired[str]
|
|
560
|
+
transport: NotRequired[str]
|
|
561
|
+
url: str
|
|
562
|
+
username: str
|
|
563
|
+
|
|
564
|
+
|
|
565
|
+
class Neon(TypedDict):
|
|
566
|
+
apiKey: str
|
|
567
|
+
|
|
568
|
+
|
|
569
|
+
class Notion(TypedDict):
|
|
570
|
+
internalIntegrationToken: str
|
|
571
|
+
|
|
572
|
+
|
|
573
|
+
class Obsidian(TypedDict):
|
|
574
|
+
apiKey: str
|
|
575
|
+
|
|
576
|
+
|
|
577
|
+
class OktaMcpFctr(TypedDict):
|
|
578
|
+
clientOrgurl: str
|
|
579
|
+
concurrentLimit: NotRequired[str]
|
|
580
|
+
logLevel: NotRequired[str]
|
|
581
|
+
oktaApiToken: NotRequired[str]
|
|
582
|
+
|
|
583
|
+
|
|
584
|
+
class Omi(TypedDict):
|
|
585
|
+
apiKey: str
|
|
586
|
+
|
|
587
|
+
|
|
588
|
+
class OnlyofficeDocspace(TypedDict):
|
|
589
|
+
baseUrl: str
|
|
590
|
+
docspaceApiKey: str
|
|
591
|
+
docspaceAuthToken: str
|
|
592
|
+
docspacePassword: str
|
|
593
|
+
docspaceUsername: str
|
|
594
|
+
dynamic: bool
|
|
595
|
+
origin: str
|
|
596
|
+
toolsets: str
|
|
597
|
+
userAgent: str
|
|
598
|
+
|
|
599
|
+
|
|
600
|
+
class Openapi(TypedDict):
|
|
601
|
+
mode: str
|
|
602
|
+
|
|
603
|
+
|
|
604
|
+
class OpenapiSchema(TypedDict):
|
|
605
|
+
SchemaPath: str
|
|
606
|
+
|
|
607
|
+
|
|
608
|
+
class Openweather(TypedDict):
|
|
609
|
+
owmApiKey: str
|
|
610
|
+
|
|
611
|
+
|
|
612
|
+
class Opik(TypedDict):
|
|
613
|
+
apiBaseUrl: str
|
|
614
|
+
apiKey: str
|
|
615
|
+
workspaceName: str
|
|
616
|
+
|
|
617
|
+
|
|
618
|
+
class Opine(TypedDict):
|
|
619
|
+
opineApiKey: str
|
|
620
|
+
|
|
621
|
+
|
|
622
|
+
class Oracle(TypedDict):
|
|
623
|
+
oracleConnectionString: str
|
|
624
|
+
oracleUser: str
|
|
625
|
+
password: str
|
|
626
|
+
|
|
627
|
+
|
|
628
|
+
class Oxylabs(TypedDict):
|
|
629
|
+
password: NotRequired[str]
|
|
630
|
+
username: str
|
|
631
|
+
|
|
632
|
+
|
|
633
|
+
class PerplexityAsk(TypedDict):
|
|
634
|
+
perplexityApiKey: str
|
|
635
|
+
|
|
636
|
+
|
|
637
|
+
class Pia(TypedDict):
|
|
638
|
+
apiKey: str
|
|
639
|
+
|
|
640
|
+
|
|
641
|
+
class Pinecone(TypedDict):
|
|
642
|
+
apiKey: str
|
|
643
|
+
assistantHost: str
|
|
644
|
+
|
|
645
|
+
|
|
646
|
+
class Playwright(TypedDict):
|
|
647
|
+
data: str
|
|
648
|
+
|
|
649
|
+
|
|
650
|
+
class PluggedinMcpProxy(TypedDict):
|
|
651
|
+
pluggedinApiBaseUrl: str
|
|
652
|
+
pluggedinApiKey: str
|
|
653
|
+
|
|
654
|
+
|
|
655
|
+
class PolarSignals(TypedDict):
|
|
656
|
+
polarSignalsApiKey: str
|
|
657
|
+
|
|
658
|
+
|
|
659
|
+
class Pomodash(TypedDict):
|
|
660
|
+
apiKey: str
|
|
661
|
+
|
|
662
|
+
|
|
663
|
+
class Postgres(TypedDict):
|
|
664
|
+
url: str
|
|
665
|
+
|
|
666
|
+
|
|
667
|
+
class Postman(TypedDict):
|
|
668
|
+
apiKey: str
|
|
669
|
+
|
|
670
|
+
|
|
671
|
+
class Prometheus(TypedDict):
|
|
672
|
+
prometheusUrl: str
|
|
673
|
+
|
|
674
|
+
|
|
675
|
+
class Quantconnect(TypedDict):
|
|
676
|
+
agentname: str
|
|
677
|
+
quantconnectapitoken: str
|
|
678
|
+
quantconnectuserid: str
|
|
679
|
+
|
|
680
|
+
|
|
681
|
+
class Razorpay(TypedDict):
|
|
682
|
+
keyId: str
|
|
683
|
+
keySecret: NotRequired[str]
|
|
684
|
+
|
|
685
|
+
|
|
686
|
+
class Reddit(TypedDict):
|
|
687
|
+
redditClientId: str
|
|
688
|
+
redditClientSecret: str
|
|
689
|
+
redditPassword: str
|
|
690
|
+
username: str
|
|
691
|
+
|
|
692
|
+
|
|
693
|
+
class Redis(TypedDict):
|
|
694
|
+
caCerts: str
|
|
695
|
+
caPath: str
|
|
696
|
+
certReqs: str
|
|
697
|
+
clusterMode: bool
|
|
698
|
+
host: str
|
|
699
|
+
port: int
|
|
700
|
+
pwd: str
|
|
701
|
+
ssl: bool
|
|
702
|
+
sslCertfile: str
|
|
703
|
+
sslKeyfile: str
|
|
704
|
+
username: str
|
|
705
|
+
|
|
706
|
+
|
|
707
|
+
class RedisCloud(TypedDict):
|
|
708
|
+
apiKey: str
|
|
709
|
+
secretKey: NotRequired[str]
|
|
710
|
+
|
|
711
|
+
|
|
712
|
+
class Ref(TypedDict):
|
|
713
|
+
apiKey: str
|
|
714
|
+
|
|
715
|
+
|
|
716
|
+
class Render(TypedDict):
|
|
717
|
+
apiKey: str
|
|
718
|
+
|
|
719
|
+
|
|
720
|
+
class Resend(TypedDict):
|
|
721
|
+
apiKey: NotRequired[str]
|
|
722
|
+
replyTo: str
|
|
723
|
+
sender: str
|
|
724
|
+
|
|
725
|
+
|
|
726
|
+
class Risken(TypedDict):
|
|
727
|
+
accessToken: str
|
|
728
|
+
url: str
|
|
729
|
+
|
|
730
|
+
|
|
731
|
+
class Root(TypedDict):
|
|
732
|
+
apiAccessToken: str
|
|
733
|
+
|
|
734
|
+
|
|
735
|
+
class Rube(TypedDict):
|
|
736
|
+
apiKey: str
|
|
737
|
+
|
|
738
|
+
|
|
739
|
+
class RustMcpFilesystem(TypedDict):
|
|
740
|
+
allowWrite: bool
|
|
741
|
+
allowedDirectories: List[str]
|
|
742
|
+
enableRoots: bool
|
|
743
|
+
|
|
744
|
+
|
|
745
|
+
class SchemacrawlerAi(TypedDict):
|
|
746
|
+
generalInfoLevel: str
|
|
747
|
+
generalLogLevel: NotRequired[str]
|
|
748
|
+
schcrwlrDatabasePassword: NotRequired[str]
|
|
749
|
+
schcrwlrDatabaseUser: NotRequired[str]
|
|
750
|
+
serverConnectionDatabase: NotRequired[str]
|
|
751
|
+
serverConnectionHost: NotRequired[str]
|
|
752
|
+
serverConnectionPort: NotRequired[int]
|
|
753
|
+
serverConnectionServer: str
|
|
754
|
+
urlConnectionJdbcUrl: str
|
|
755
|
+
volumeHostShare: str
|
|
756
|
+
|
|
757
|
+
|
|
758
|
+
class Scrapegraph(TypedDict):
|
|
759
|
+
sgaiApiKey: str
|
|
760
|
+
|
|
761
|
+
|
|
762
|
+
class Scrapezy(TypedDict):
|
|
763
|
+
apiKey: str
|
|
764
|
+
|
|
765
|
+
|
|
766
|
+
class Sentry(TypedDict):
|
|
767
|
+
authToken: str
|
|
768
|
+
|
|
769
|
+
|
|
770
|
+
class Sequa(TypedDict):
|
|
771
|
+
apiKey: str
|
|
772
|
+
mcpServerUrl: str
|
|
773
|
+
|
|
774
|
+
|
|
775
|
+
class ShortIo(TypedDict):
|
|
776
|
+
shortIoApiKey: str
|
|
777
|
+
|
|
778
|
+
|
|
779
|
+
class Singlestore(TypedDict):
|
|
780
|
+
mcpApiKey: str
|
|
781
|
+
|
|
782
|
+
|
|
783
|
+
class Slack(TypedDict):
|
|
784
|
+
botToken: NotRequired[str]
|
|
785
|
+
channelIds: NotRequired[str]
|
|
786
|
+
teamId: str
|
|
787
|
+
|
|
788
|
+
|
|
789
|
+
class Smartbear(TypedDict):
|
|
790
|
+
apiHubApiKey: str
|
|
791
|
+
bugsnagApiKey: str
|
|
792
|
+
bugsnagAuthToken: str
|
|
793
|
+
bugsnagEndpoint: str
|
|
794
|
+
pactBrokerBaseUrl: str
|
|
795
|
+
pactBrokerPassword: str
|
|
796
|
+
pactBrokerToken: str
|
|
797
|
+
pactBrokerUsername: str
|
|
798
|
+
reflectApiToken: str
|
|
799
|
+
|
|
800
|
+
|
|
801
|
+
class Sonarqube(TypedDict):
|
|
802
|
+
org: str
|
|
803
|
+
token: str
|
|
804
|
+
url: str
|
|
805
|
+
|
|
806
|
+
|
|
807
|
+
class Stackgen(TypedDict):
|
|
808
|
+
token: NotRequired[str]
|
|
809
|
+
url: str
|
|
810
|
+
|
|
811
|
+
|
|
812
|
+
class Stackhawk(TypedDict):
|
|
813
|
+
apiKey: str
|
|
814
|
+
|
|
815
|
+
|
|
816
|
+
class Stripe(TypedDict):
|
|
817
|
+
secretKey: str
|
|
818
|
+
|
|
819
|
+
|
|
820
|
+
class Supadata(TypedDict):
|
|
821
|
+
apiKey: str
|
|
822
|
+
|
|
823
|
+
|
|
824
|
+
class Suzieq(TypedDict):
|
|
825
|
+
apiEndpoint: str
|
|
826
|
+
apiKey: str
|
|
827
|
+
|
|
828
|
+
|
|
829
|
+
class Tavily(TypedDict):
|
|
830
|
+
apiKey: str
|
|
831
|
+
|
|
832
|
+
|
|
833
|
+
class Teamwork(TypedDict):
|
|
834
|
+
twMcpBearerToken: str
|
|
835
|
+
|
|
836
|
+
|
|
837
|
+
class Telnyx(TypedDict):
|
|
838
|
+
apiKey: str
|
|
839
|
+
|
|
840
|
+
|
|
841
|
+
class Tembo(TypedDict):
|
|
842
|
+
apiKey: str
|
|
843
|
+
|
|
844
|
+
|
|
845
|
+
class TextToGraphql(TypedDict):
|
|
846
|
+
graphqlApiKey: str
|
|
847
|
+
graphqlAuthType: str
|
|
848
|
+
graphqlEndpoint: str
|
|
849
|
+
modelName: str
|
|
850
|
+
modelTemperature: float
|
|
851
|
+
openaiApiKey: str
|
|
852
|
+
|
|
853
|
+
|
|
854
|
+
class Tigris(TypedDict):
|
|
855
|
+
awsAccessKeyId: str
|
|
856
|
+
awsEndpointUrlS3: str
|
|
857
|
+
awsSecretAccessKey: NotRequired[str]
|
|
858
|
+
|
|
859
|
+
|
|
860
|
+
class Triplewhale(TypedDict):
|
|
861
|
+
apiKey: str
|
|
862
|
+
|
|
863
|
+
|
|
864
|
+
class UnrealEngine(TypedDict):
|
|
865
|
+
logLevel: NotRequired[str]
|
|
866
|
+
ueHost: str
|
|
867
|
+
ueRcHttpPort: str
|
|
868
|
+
ueRcWsPort: str
|
|
869
|
+
|
|
870
|
+
|
|
871
|
+
class Veyrax(TypedDict):
|
|
872
|
+
apiKey: str
|
|
873
|
+
|
|
874
|
+
|
|
875
|
+
class Wayfound(TypedDict):
|
|
876
|
+
mcpApiKey: str
|
|
877
|
+
|
|
878
|
+
|
|
879
|
+
class Webflow(TypedDict):
|
|
880
|
+
token: str
|
|
881
|
+
|
|
882
|
+
|
|
883
|
+
class WolframAlpha(TypedDict):
|
|
884
|
+
wolframApiKey: str
|
|
885
|
+
|
|
886
|
+
|
|
887
|
+
class ZerodhaKite(TypedDict):
|
|
888
|
+
kiteAccessToken: NotRequired[str]
|
|
889
|
+
kiteApiKey: str
|
|
890
|
+
kiteApiSecret: NotRequired[str]
|
|
891
|
+
kiteRedirectUrl: NotRequired[str]
|
|
892
|
+
|
|
893
|
+
|
|
894
|
+
class Model(TypedDict):
|
|
895
|
+
airtable: NotRequired[Airtable]
|
|
896
|
+
aks: NotRequired[Aks]
|
|
897
|
+
apiGateway: NotRequired[ApiGateway]
|
|
898
|
+
apify: NotRequired[Apify]
|
|
899
|
+
arxiv: NotRequired[Arxiv]
|
|
900
|
+
astGrep: NotRequired[AstGrep]
|
|
901
|
+
astraDb: NotRequired[AstraDb]
|
|
902
|
+
astroDocs: NotRequired[Dict[str, Any]]
|
|
903
|
+
atlan: NotRequired[Atlan]
|
|
904
|
+
atlasDocs: NotRequired[AtlasDocs]
|
|
905
|
+
atlassian: NotRequired[Atlassian]
|
|
906
|
+
audienseInsights: NotRequired[AudienseInsights]
|
|
907
|
+
awsCdk: NotRequired[Dict[str, Any]]
|
|
908
|
+
awsCore: NotRequired[Dict[str, Any]]
|
|
909
|
+
awsDiagram: NotRequired[Dict[str, Any]]
|
|
910
|
+
awsDocumentation: NotRequired[Dict[str, Any]]
|
|
911
|
+
awsKbRetrievalServer: NotRequired[AwsKbRetrievalServer]
|
|
912
|
+
awsTerraform: NotRequired[Dict[str, Any]]
|
|
913
|
+
azure: NotRequired[Dict[str, Any]]
|
|
914
|
+
beagleSecurity: NotRequired[BeagleSecurity]
|
|
915
|
+
bitrefill: NotRequired[Bitrefill]
|
|
916
|
+
box: NotRequired[Box]
|
|
917
|
+
brave: NotRequired[Brave]
|
|
918
|
+
browserbase: NotRequired[Browserbase]
|
|
919
|
+
buildkite: NotRequired[Buildkite]
|
|
920
|
+
camunda: NotRequired[Camunda]
|
|
921
|
+
cdataConnectcloud: NotRequired[CdataConnectcloud]
|
|
922
|
+
charmhealth: NotRequired[Charmhealth]
|
|
923
|
+
chroma: NotRequired[Chroma]
|
|
924
|
+
circleci: NotRequired[Circleci]
|
|
925
|
+
clickhouse: NotRequired[Clickhouse]
|
|
926
|
+
close: NotRequired[Close]
|
|
927
|
+
cloudRun: NotRequired[CloudRun]
|
|
928
|
+
cloudflareDocs: NotRequired[Dict[str, Any]]
|
|
929
|
+
cockroachdb: NotRequired[Cockroachdb]
|
|
930
|
+
codeInterpreter: NotRequired[Dict[str, Any]]
|
|
931
|
+
context7: NotRequired[Dict[str, Any]]
|
|
932
|
+
couchbase: NotRequired[Couchbase]
|
|
933
|
+
cylera: NotRequired[Cylera]
|
|
934
|
+
cyreslabAiShodan: NotRequired[CyreslabAiShodan]
|
|
935
|
+
dappier: NotRequired[Dappier]
|
|
936
|
+
dappierRemote: NotRequired[DappierRemote]
|
|
937
|
+
dart: NotRequired[Dart]
|
|
938
|
+
databaseServer: NotRequired[DatabaseServer]
|
|
939
|
+
databutton: NotRequired[Dict[str, Any]]
|
|
940
|
+
deepwiki: NotRequired[Dict[str, Any]]
|
|
941
|
+
descope: NotRequired[Descope]
|
|
942
|
+
desktopCommander: NotRequired[DesktopCommander]
|
|
943
|
+
devhubCms: NotRequired[DevhubCms]
|
|
944
|
+
discord: NotRequired[Discord]
|
|
945
|
+
dockerhub: NotRequired[Dockerhub]
|
|
946
|
+
dodoPayments: NotRequired[DodoPayments]
|
|
947
|
+
dreamfactory: NotRequired[Dreamfactory]
|
|
948
|
+
duckduckgo: NotRequired[Dict[str, Any]]
|
|
949
|
+
dynatrace: NotRequired[Dynatrace]
|
|
950
|
+
moru: NotRequired[Moru]
|
|
951
|
+
edubase: NotRequired[Edubase]
|
|
952
|
+
effect: NotRequired[Dict[str, Any]]
|
|
953
|
+
elasticsearch: NotRequired[Elasticsearch]
|
|
954
|
+
elevenlabs: NotRequired[Elevenlabs]
|
|
955
|
+
everart: NotRequired[Everart]
|
|
956
|
+
exa: NotRequired[Exa]
|
|
957
|
+
explorium: NotRequired[Explorium]
|
|
958
|
+
fetch: NotRequired[Dict[str, Any]]
|
|
959
|
+
fibery: NotRequired[Fibery]
|
|
960
|
+
filesystem: NotRequired[Filesystem]
|
|
961
|
+
findADomain: NotRequired[Dict[str, Any]]
|
|
962
|
+
firecrawl: NotRequired[Firecrawl]
|
|
963
|
+
firewalla: NotRequired[Firewalla]
|
|
964
|
+
flexprice: NotRequired[Flexprice]
|
|
965
|
+
git: NotRequired[Git]
|
|
966
|
+
github: NotRequired[Github]
|
|
967
|
+
githubChat: NotRequired[GithubChat]
|
|
968
|
+
githubOfficial: NotRequired[GithubOfficial]
|
|
969
|
+
gitlab: NotRequired[Gitlab]
|
|
970
|
+
gitmcp: NotRequired[Dict[str, Any]]
|
|
971
|
+
glif: NotRequired[Glif]
|
|
972
|
+
gmail: NotRequired[Gmail]
|
|
973
|
+
googleMaps: NotRequired[GoogleMaps]
|
|
974
|
+
googleMapsComprehensive: NotRequired[GoogleMapsComprehensive]
|
|
975
|
+
grafana: NotRequired[Grafana]
|
|
976
|
+
gyazo: NotRequired[Gyazo]
|
|
977
|
+
hackernews: NotRequired[Dict[str, Any]]
|
|
978
|
+
hackle: NotRequired[Hackle]
|
|
979
|
+
handwritingOcr: NotRequired[HandwritingOcr]
|
|
980
|
+
hdx: NotRequired[Hdx]
|
|
981
|
+
heroku: NotRequired[Heroku]
|
|
982
|
+
hostinger: NotRequired[Hostinger]
|
|
983
|
+
hoverfly: NotRequired[Hoverfly]
|
|
984
|
+
hubspot: NotRequired[Hubspot]
|
|
985
|
+
huggingFace: NotRequired[Dict[str, Any]]
|
|
986
|
+
hummingbot: NotRequired[Hummingbot]
|
|
987
|
+
husqvarnaAutomower: NotRequired[HusqvarnaAutomower]
|
|
988
|
+
hyperbrowser: NotRequired[Hyperbrowser]
|
|
989
|
+
hyperspell: NotRequired[Hyperspell]
|
|
990
|
+
iaptic: NotRequired[Iaptic]
|
|
991
|
+
inspektorGadget: NotRequired[InspektorGadget]
|
|
992
|
+
javadocs: NotRequired[Dict[str, Any]]
|
|
993
|
+
jetbrains: NotRequired[Jetbrains]
|
|
994
|
+
kafkaSchemaReg: NotRequired[KafkaSchemaReg]
|
|
995
|
+
kagisearch: NotRequired[Kagisearch]
|
|
996
|
+
keboola: NotRequired[Keboola]
|
|
997
|
+
kong: NotRequired[Kong]
|
|
998
|
+
kubectl: NotRequired[Kubectl]
|
|
999
|
+
kubernetes: NotRequired[Kubernetes]
|
|
1000
|
+
lara: NotRequired[Lara]
|
|
1001
|
+
line: NotRequired[Line]
|
|
1002
|
+
linkedin: NotRequired[Linkedin]
|
|
1003
|
+
llmtxt: NotRequired[Dict[str, Any]]
|
|
1004
|
+
maestro: NotRequired[Maestro]
|
|
1005
|
+
manifold: NotRequired[Dict[str, Any]]
|
|
1006
|
+
mapbox: NotRequired[Mapbox]
|
|
1007
|
+
mapboxDevkit: NotRequired[MapboxDevkit]
|
|
1008
|
+
markdownify: NotRequired[Markdownify]
|
|
1009
|
+
markitdown: NotRequired[Markitdown]
|
|
1010
|
+
mavenTools: NotRequired[Dict[str, Any]]
|
|
1011
|
+
memory: NotRequired[Dict[str, Any]]
|
|
1012
|
+
mercadoLibre: NotRequired[MercadoLibre]
|
|
1013
|
+
mercadoPago: NotRequired[MercadoPago]
|
|
1014
|
+
metabase: NotRequired[Metabase]
|
|
1015
|
+
minecraftWiki: NotRequired[Dict[str, Any]]
|
|
1016
|
+
mongodb: NotRequired[Mongodb]
|
|
1017
|
+
multiversxMx: NotRequired[MultiversxMx]
|
|
1018
|
+
nasdaqDataLink: NotRequired[NasdaqDataLink]
|
|
1019
|
+
needle: NotRequired[Needle]
|
|
1020
|
+
neo4jCloudAuraApi: NotRequired[Neo4jCloudAuraApi]
|
|
1021
|
+
neo4jCypher: NotRequired[Neo4jCypher]
|
|
1022
|
+
neo4jDataModeling: NotRequired[Neo4jDataModeling]
|
|
1023
|
+
neo4jMemory: NotRequired[Neo4jMemory]
|
|
1024
|
+
neon: NotRequired[Neon]
|
|
1025
|
+
nodeCodeSandbox: NotRequired[Dict[str, Any]]
|
|
1026
|
+
notion: NotRequired[Notion]
|
|
1027
|
+
novita: NotRequired[Dict[str, Any]]
|
|
1028
|
+
npmSentinel: NotRequired[Dict[str, Any]]
|
|
1029
|
+
obsidian: NotRequired[Obsidian]
|
|
1030
|
+
oktaMcpFctr: NotRequired[OktaMcpFctr]
|
|
1031
|
+
omi: NotRequired[Omi]
|
|
1032
|
+
onlyofficeDocspace: NotRequired[OnlyofficeDocspace]
|
|
1033
|
+
openapi: NotRequired[Openapi]
|
|
1034
|
+
openapiSchema: NotRequired[OpenapiSchema]
|
|
1035
|
+
openbnbAirbnb: NotRequired[Dict[str, Any]]
|
|
1036
|
+
openmesh: NotRequired[Dict[str, Any]]
|
|
1037
|
+
openweather: NotRequired[Openweather]
|
|
1038
|
+
openzeppelinCairo: NotRequired[Dict[str, Any]]
|
|
1039
|
+
openzeppelinSolidity: NotRequired[Dict[str, Any]]
|
|
1040
|
+
openzeppelinStellar: NotRequired[Dict[str, Any]]
|
|
1041
|
+
openzeppelinStylus: NotRequired[Dict[str, Any]]
|
|
1042
|
+
opik: NotRequired[Opik]
|
|
1043
|
+
opine: NotRequired[Opine]
|
|
1044
|
+
oracle: NotRequired[Oracle]
|
|
1045
|
+
ospMarketingTools: NotRequired[Dict[str, Any]]
|
|
1046
|
+
oxylabs: NotRequired[Oxylabs]
|
|
1047
|
+
paperSearch: NotRequired[Dict[str, Any]]
|
|
1048
|
+
perplexityAsk: NotRequired[PerplexityAsk]
|
|
1049
|
+
pia: NotRequired[Pia]
|
|
1050
|
+
pinecone: NotRequired[Pinecone]
|
|
1051
|
+
playwright: NotRequired[Playwright]
|
|
1052
|
+
pluggedinMcpProxy: NotRequired[PluggedinMcpProxy]
|
|
1053
|
+
polarSignals: NotRequired[PolarSignals]
|
|
1054
|
+
pomodash: NotRequired[Pomodash]
|
|
1055
|
+
postgres: NotRequired[Postgres]
|
|
1056
|
+
postman: NotRequired[Postman]
|
|
1057
|
+
prefEditor: NotRequired[Dict[str, Any]]
|
|
1058
|
+
prometheus: NotRequired[Prometheus]
|
|
1059
|
+
puppeteer: NotRequired[Dict[str, Any]]
|
|
1060
|
+
pythonRefactoring: NotRequired[Dict[str, Any]]
|
|
1061
|
+
quantconnect: NotRequired[Quantconnect]
|
|
1062
|
+
ramparts: NotRequired[Dict[str, Any]]
|
|
1063
|
+
razorpay: NotRequired[Razorpay]
|
|
1064
|
+
reddit: NotRequired[Reddit]
|
|
1065
|
+
redis: NotRequired[Redis]
|
|
1066
|
+
redisCloud: NotRequired[RedisCloud]
|
|
1067
|
+
ref: NotRequired[Ref]
|
|
1068
|
+
remote: NotRequired[Dict[str, Any]]
|
|
1069
|
+
render: NotRequired[Render]
|
|
1070
|
+
resend: NotRequired[Resend]
|
|
1071
|
+
risken: NotRequired[Risken]
|
|
1072
|
+
root: NotRequired[Root]
|
|
1073
|
+
ros2: NotRequired[Dict[str, Any]]
|
|
1074
|
+
rube: NotRequired[Rube]
|
|
1075
|
+
rustMcpFilesystem: NotRequired[RustMcpFilesystem]
|
|
1076
|
+
schemacrawlerAi: NotRequired[SchemacrawlerAi]
|
|
1077
|
+
schoginiMcpImageBorder: NotRequired[Dict[str, Any]]
|
|
1078
|
+
scrapegraph: NotRequired[Scrapegraph]
|
|
1079
|
+
scrapezy: NotRequired[Scrapezy]
|
|
1080
|
+
securenoteLink: NotRequired[Dict[str, Any]]
|
|
1081
|
+
semgrep: NotRequired[Dict[str, Any]]
|
|
1082
|
+
sentry: NotRequired[Sentry]
|
|
1083
|
+
sequa: NotRequired[Sequa]
|
|
1084
|
+
sequentialthinking: NotRequired[Dict[str, Any]]
|
|
1085
|
+
shortIo: NotRequired[ShortIo]
|
|
1086
|
+
simplechecklist: NotRequired[Dict[str, Any]]
|
|
1087
|
+
singlestore: NotRequired[Singlestore]
|
|
1088
|
+
slack: NotRequired[Slack]
|
|
1089
|
+
smartbear: NotRequired[Smartbear]
|
|
1090
|
+
sonarqube: NotRequired[Sonarqube]
|
|
1091
|
+
sqlite: NotRequired[Dict[str, Any]]
|
|
1092
|
+
stackgen: NotRequired[Stackgen]
|
|
1093
|
+
stackhawk: NotRequired[Stackhawk]
|
|
1094
|
+
stripe: NotRequired[Stripe]
|
|
1095
|
+
supadata: NotRequired[Supadata]
|
|
1096
|
+
suzieq: NotRequired[Suzieq]
|
|
1097
|
+
taskOrchestrator: NotRequired[Dict[str, Any]]
|
|
1098
|
+
tavily: NotRequired[Tavily]
|
|
1099
|
+
teamwork: NotRequired[Teamwork]
|
|
1100
|
+
telnyx: NotRequired[Telnyx]
|
|
1101
|
+
tembo: NotRequired[Tembo]
|
|
1102
|
+
terraform: NotRequired[Dict[str, Any]]
|
|
1103
|
+
textToGraphql: NotRequired[TextToGraphql]
|
|
1104
|
+
tigris: NotRequired[Tigris]
|
|
1105
|
+
time: NotRequired[Dict[str, Any]]
|
|
1106
|
+
triplewhale: NotRequired[Triplewhale]
|
|
1107
|
+
unrealEngine: NotRequired[UnrealEngine]
|
|
1108
|
+
veyrax: NotRequired[Veyrax]
|
|
1109
|
+
vizro: NotRequired[Dict[str, Any]]
|
|
1110
|
+
vulnNist: NotRequired[Dict[str, Any]]
|
|
1111
|
+
wayfound: NotRequired[Wayfound]
|
|
1112
|
+
webflow: NotRequired[Webflow]
|
|
1113
|
+
wikipedia: NotRequired[Dict[str, Any]]
|
|
1114
|
+
wolframAlpha: NotRequired[WolframAlpha]
|
|
1115
|
+
youtubeTranscript: NotRequired[Dict[str, Any]]
|
|
1116
|
+
zerodhaKite: NotRequired[ZerodhaKite]
|
|
1117
|
+
|
|
1118
|
+
|
|
1119
|
+
# Alias for backwards compatibility - code expects McpServer but codegen produces Model
|
|
1120
|
+
McpServer = Model
|