moru 0.1.0__py3-none-any.whl → 0.2.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 +8 -0
- moru/api/__init__.py +4 -0
- moru/api/client/__init__.py +1 -1
- moru/api/client/api/sandboxes/delete_sandboxes_sandbox_id.py +4 -0
- moru/api/client/api/sandboxes/get_sandboxes.py +4 -0
- moru/api/client/api/sandboxes/get_sandboxes_metrics.py +5 -1
- moru/api/client/api/sandboxes/get_sandboxes_sandbox_id.py +4 -0
- moru/api/client/api/sandboxes/get_sandboxes_sandbox_id_logs.py +67 -23
- moru/api/client/api/sandboxes/get_sandboxes_sandbox_id_metrics.py +5 -0
- moru/api/client/api/sandboxes/get_v2_sandbox_runs.py +218 -0
- moru/api/client/api/sandboxes/get_v2_sandboxes.py +5 -2
- moru/api/client/api/sandboxes/post_sandboxes.py +4 -0
- moru/api/client/api/sandboxes/post_sandboxes_sandbox_id_connect.py +6 -0
- moru/api/client/api/sandboxes/post_sandboxes_sandbox_id_pause.py +5 -0
- moru/api/client/api/sandboxes/post_sandboxes_sandbox_id_refreshes.py +3 -0
- moru/api/client/api/sandboxes/post_sandboxes_sandbox_id_resume.py +5 -0
- moru/api/client/api/sandboxes/post_sandboxes_sandbox_id_timeout.py +4 -0
- moru/api/client/api/templates/delete_templates_template_id.py +3 -0
- moru/api/client/api/templates/get_templates.py +3 -0
- moru/api/client/api/templates/get_templates_template_id.py +3 -0
- moru/api/client/api/templates/get_templates_template_id_builds_build_id_logs.py +276 -0
- moru/api/client/api/templates/get_templates_template_id_builds_build_id_status.py +23 -4
- moru/api/client/api/templates/get_templates_template_id_files_hash.py +5 -0
- moru/api/client/api/templates/patch_templates_template_id.py +4 -0
- moru/api/client/api/templates/post_templates.py +4 -0
- moru/api/client/api/templates/post_templates_template_id.py +3 -0
- moru/api/client/api/templates/post_templates_template_id_builds_build_id.py +3 -0
- moru/api/client/api/templates/post_v2_templates.py +4 -0
- moru/api/client/api/templates/post_v3_templates.py +4 -0
- moru/api/client/api/templates/post_v_2_templates_template_id_builds_build_id.py +3 -0
- moru/api/client/models/__init__.py +30 -0
- moru/api/client/models/admin_sandbox_kill_result.py +67 -0
- moru/api/client/models/build_log_entry.py +1 -1
- moru/api/client/models/create_volume_request.py +59 -0
- moru/api/client/models/file_info.py +105 -0
- moru/api/client/models/file_info_type.py +9 -0
- moru/api/client/models/file_list_response.py +84 -0
- moru/api/client/models/logs_direction.py +9 -0
- moru/api/client/models/logs_source.py +9 -0
- moru/api/client/models/machine_info.py +83 -0
- moru/api/client/models/new_sandbox.py +19 -0
- moru/api/client/models/node.py +10 -0
- moru/api/client/models/node_detail.py +10 -0
- moru/api/client/models/sandbox_log_entry.py +9 -9
- moru/api/client/models/sandbox_log_event_type.py +11 -0
- moru/api/client/models/sandbox_run.py +130 -0
- moru/api/client/models/sandbox_run_end_reason.py +11 -0
- moru/api/client/models/sandbox_run_status.py +10 -0
- moru/api/client/models/template_build_logs_response.py +73 -0
- moru/api/client/models/upload_response.py +67 -0
- moru/api/client/models/volume.py +105 -0
- moru/sandbox/mcp.py +835 -6
- moru/sandbox_async/commands/command.py +5 -1
- moru/sandbox_async/filesystem/filesystem.py +5 -1
- moru/sandbox_async/main.py +21 -0
- moru/sandbox_async/sandbox_api.py +17 -11
- moru/sandbox_sync/filesystem/filesystem.py +5 -1
- moru/sandbox_sync/main.py +21 -0
- moru/sandbox_sync/sandbox_api.py +17 -11
- moru/volume/__init__.py +11 -0
- moru/volume/types.py +83 -0
- moru/volume/volume_api.py +330 -0
- moru/volume_async/__init__.py +5 -0
- moru/volume_async/main.py +327 -0
- moru/volume_async/volume_api.py +290 -0
- moru/volume_sync/__init__.py +5 -0
- moru/volume_sync/main.py +325 -0
- moru-0.2.0.dist-info/METADATA +122 -0
- {moru-0.1.0.dist-info → moru-0.2.0.dist-info}/RECORD +71 -46
- {moru-0.1.0.dist-info → moru-0.2.0.dist-info}/WHEEL +1 -1
- moru-0.1.0.dist-info/METADATA +0 -63
- {moru-0.1.0.dist-info/licenses → moru-0.2.0.dist-info}/LICENSE +0 -0
moru/sandbox/mcp.py
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
# generated by datamodel-codegen:
|
|
2
2
|
# filename: mcp-server.json
|
|
3
|
-
# timestamp: 2025-12-30T13:05:12+00:00
|
|
4
3
|
|
|
5
4
|
from __future__ import annotations
|
|
6
5
|
|
|
@@ -16,11 +15,29 @@ class Airtable(TypedDict):
|
|
|
16
15
|
|
|
17
16
|
class Aks(TypedDict):
|
|
18
17
|
accessLevel: str
|
|
18
|
+
"""
|
|
19
|
+
Access level for the MCP server, One of [ readonly, readwrite, admin ]
|
|
20
|
+
"""
|
|
19
21
|
additionalTools: NotRequired[str]
|
|
22
|
+
"""
|
|
23
|
+
Comma-separated list of additional tools, One of [ helm, cilium ]
|
|
24
|
+
"""
|
|
20
25
|
allowNamespaces: NotRequired[str]
|
|
26
|
+
"""
|
|
27
|
+
Comma-separated list of namespaces to allow access to. If not specified, all namespaces are allowed.
|
|
28
|
+
"""
|
|
21
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
|
+
"""
|
|
22
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
|
+
"""
|
|
23
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
|
+
"""
|
|
24
41
|
|
|
25
42
|
|
|
26
43
|
class ApiGateway(TypedDict):
|
|
@@ -32,10 +49,16 @@ class ApiGateway(TypedDict):
|
|
|
32
49
|
class Apify(TypedDict):
|
|
33
50
|
apifyToken: str
|
|
34
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
|
+
"""
|
|
35
55
|
|
|
36
56
|
|
|
37
57
|
class Arxiv(TypedDict):
|
|
38
58
|
storagePath: str
|
|
59
|
+
"""
|
|
60
|
+
Directory path where downloaded papers will be stored
|
|
61
|
+
"""
|
|
39
62
|
|
|
40
63
|
|
|
41
64
|
class AstGrep(TypedDict):
|
|
@@ -151,6 +174,9 @@ class Close(TypedDict):
|
|
|
151
174
|
|
|
152
175
|
class CloudRun(TypedDict):
|
|
153
176
|
credentialsPath: str
|
|
177
|
+
"""
|
|
178
|
+
path to application-default credentials (eg $HOME/.config/gcloud/application_default_credentials.json )
|
|
179
|
+
"""
|
|
154
180
|
|
|
155
181
|
|
|
156
182
|
class Cockroachdb(TypedDict):
|
|
@@ -167,10 +193,22 @@ class Cockroachdb(TypedDict):
|
|
|
167
193
|
|
|
168
194
|
class Couchbase(TypedDict):
|
|
169
195
|
cbBucketName: str
|
|
196
|
+
"""
|
|
197
|
+
Bucket in the Couchbase cluster to use for the MCP server.
|
|
198
|
+
"""
|
|
170
199
|
cbConnectionString: str
|
|
200
|
+
"""
|
|
201
|
+
Connection string for the Couchbase cluster.
|
|
202
|
+
"""
|
|
171
203
|
cbMcpReadOnlyQueryMode: str
|
|
204
|
+
"""
|
|
205
|
+
Setting to "true" (default) enables read-only query mode while running SQL++ queries.
|
|
206
|
+
"""
|
|
172
207
|
cbPassword: str
|
|
173
208
|
cbUsername: str
|
|
209
|
+
"""
|
|
210
|
+
Username for the Couchbase cluster with access to the bucket.
|
|
211
|
+
"""
|
|
174
212
|
|
|
175
213
|
|
|
176
214
|
class Cylera(TypedDict):
|
|
@@ -198,6 +236,9 @@ class Dart(TypedDict):
|
|
|
198
236
|
|
|
199
237
|
class DatabaseServer(TypedDict):
|
|
200
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
|
+
"""
|
|
201
242
|
|
|
202
243
|
|
|
203
244
|
class Descope(TypedDict):
|
|
@@ -207,6 +248,9 @@ class Descope(TypedDict):
|
|
|
207
248
|
|
|
208
249
|
class DesktopCommander(TypedDict):
|
|
209
250
|
paths: List[str]
|
|
251
|
+
"""
|
|
252
|
+
List of directories that Desktop Commander can access
|
|
253
|
+
"""
|
|
210
254
|
|
|
211
255
|
|
|
212
256
|
class DevhubCms(TypedDict):
|
|
@@ -293,8 +337,14 @@ class Firecrawl(TypedDict):
|
|
|
293
337
|
|
|
294
338
|
class Firewalla(TypedDict):
|
|
295
339
|
boxId: str
|
|
340
|
+
"""
|
|
341
|
+
Your Firewalla Box Global ID
|
|
342
|
+
"""
|
|
296
343
|
firewallaMspToken: str
|
|
297
344
|
mspId: str
|
|
345
|
+
"""
|
|
346
|
+
Your Firewalla MSP domain (e.g., yourdomain.firewalla.net)
|
|
347
|
+
"""
|
|
298
348
|
|
|
299
349
|
|
|
300
350
|
class Flexprice(TypedDict):
|
|
@@ -321,6 +371,9 @@ class GithubOfficial(TypedDict):
|
|
|
321
371
|
class Gitlab(TypedDict):
|
|
322
372
|
personalAccessToken: str
|
|
323
373
|
url: str
|
|
374
|
+
"""
|
|
375
|
+
api url - optional for self-hosted instances
|
|
376
|
+
"""
|
|
324
377
|
|
|
325
378
|
|
|
326
379
|
class Glif(TypedDict):
|
|
@@ -331,6 +384,9 @@ class Glif(TypedDict):
|
|
|
331
384
|
|
|
332
385
|
class Gmail(TypedDict):
|
|
333
386
|
emailAddress: str
|
|
387
|
+
"""
|
|
388
|
+
Your Gmail email address
|
|
389
|
+
"""
|
|
334
390
|
emailPassword: NotRequired[str]
|
|
335
391
|
|
|
336
392
|
|
|
@@ -407,7 +463,13 @@ class Iaptic(TypedDict):
|
|
|
407
463
|
|
|
408
464
|
class InspektorGadget(TypedDict):
|
|
409
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
|
+
"""
|
|
410
469
|
kubeconfig: str
|
|
470
|
+
"""
|
|
471
|
+
Path to the kubeconfig file for accessing Kubernetes clusters
|
|
472
|
+
"""
|
|
411
473
|
|
|
412
474
|
|
|
413
475
|
class Jetbrains(TypedDict):
|
|
@@ -416,10 +478,19 @@ class Jetbrains(TypedDict):
|
|
|
416
478
|
|
|
417
479
|
class KafkaSchemaReg(TypedDict):
|
|
418
480
|
registryUrl: str
|
|
481
|
+
"""
|
|
482
|
+
Schema Registry URL
|
|
483
|
+
"""
|
|
419
484
|
schemaRegistryPassword: NotRequired[str]
|
|
420
485
|
schemaRegistryUser: NotRequired[str]
|
|
421
486
|
slimMode: NotRequired[str]
|
|
487
|
+
"""
|
|
488
|
+
Enable SLIM_MODE for better performance
|
|
489
|
+
"""
|
|
422
490
|
viewonly: NotRequired[str]
|
|
491
|
+
"""
|
|
492
|
+
Enable read-only mode
|
|
493
|
+
"""
|
|
423
494
|
|
|
424
495
|
|
|
425
496
|
class Kagisearch(TypedDict):
|
|
@@ -443,6 +514,9 @@ class Kubectl(TypedDict):
|
|
|
443
514
|
|
|
444
515
|
class Kubernetes(TypedDict):
|
|
445
516
|
configPath: str
|
|
517
|
+
"""
|
|
518
|
+
the path to the host .kube/config
|
|
519
|
+
"""
|
|
446
520
|
|
|
447
521
|
|
|
448
522
|
class Lara(TypedDict):
|
|
@@ -458,6 +532,9 @@ class Line(TypedDict):
|
|
|
458
532
|
class Linkedin(TypedDict):
|
|
459
533
|
linkedinCookie: str
|
|
460
534
|
userAgent: str
|
|
535
|
+
"""
|
|
536
|
+
Custom user agent string (optional, helps avoid detection and cookie login issues)
|
|
537
|
+
"""
|
|
461
538
|
|
|
462
539
|
|
|
463
540
|
class Maestro(TypedDict):
|
|
@@ -576,8 +653,17 @@ class Obsidian(TypedDict):
|
|
|
576
653
|
|
|
577
654
|
class OktaMcpFctr(TypedDict):
|
|
578
655
|
clientOrgurl: str
|
|
656
|
+
"""
|
|
657
|
+
Okta organization URL (e.g., https://dev-123456.okta.com)
|
|
658
|
+
"""
|
|
579
659
|
concurrentLimit: NotRequired[str]
|
|
660
|
+
"""
|
|
661
|
+
Maximum concurrent requests to Okta API
|
|
662
|
+
"""
|
|
580
663
|
logLevel: NotRequired[str]
|
|
664
|
+
"""
|
|
665
|
+
Logging level for server output
|
|
666
|
+
"""
|
|
581
667
|
oktaApiToken: NotRequired[str]
|
|
582
668
|
|
|
583
669
|
|
|
@@ -649,6 +735,9 @@ class Playwright(TypedDict):
|
|
|
649
735
|
|
|
650
736
|
class PluggedinMcpProxy(TypedDict):
|
|
651
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
|
+
"""
|
|
652
741
|
pluggedinApiKey: str
|
|
653
742
|
|
|
654
743
|
|
|
@@ -670,6 +759,9 @@ class Postman(TypedDict):
|
|
|
670
759
|
|
|
671
760
|
class Prometheus(TypedDict):
|
|
672
761
|
prometheusUrl: str
|
|
762
|
+
"""
|
|
763
|
+
The URL of your Prometheus server
|
|
764
|
+
"""
|
|
673
765
|
|
|
674
766
|
|
|
675
767
|
class Quantconnect(TypedDict):
|
|
@@ -720,7 +812,13 @@ class Render(TypedDict):
|
|
|
720
812
|
class Resend(TypedDict):
|
|
721
813
|
apiKey: NotRequired[str]
|
|
722
814
|
replyTo: str
|
|
815
|
+
"""
|
|
816
|
+
comma separated list of reply to email addresses
|
|
817
|
+
"""
|
|
723
818
|
sender: str
|
|
819
|
+
"""
|
|
820
|
+
sender email address
|
|
821
|
+
"""
|
|
724
822
|
|
|
725
823
|
|
|
726
824
|
class Risken(TypedDict):
|
|
@@ -738,21 +836,51 @@ class Rube(TypedDict):
|
|
|
738
836
|
|
|
739
837
|
class RustMcpFilesystem(TypedDict):
|
|
740
838
|
allowWrite: bool
|
|
839
|
+
"""
|
|
840
|
+
Enable read/write mode. If false, the app operates in read-only mode.
|
|
841
|
+
"""
|
|
741
842
|
allowedDirectories: List[str]
|
|
843
|
+
"""
|
|
844
|
+
List of directories that rust-mcp-filesystem can access.
|
|
845
|
+
"""
|
|
742
846
|
enableRoots: bool
|
|
847
|
+
"""
|
|
848
|
+
Enable dynamic directory access control via MCP client-side Roots.
|
|
849
|
+
"""
|
|
743
850
|
|
|
744
851
|
|
|
745
852
|
class SchemacrawlerAi(TypedDict):
|
|
746
853
|
generalInfoLevel: str
|
|
854
|
+
"""
|
|
855
|
+
--info-level How much database metadata to retrieve
|
|
856
|
+
"""
|
|
747
857
|
generalLogLevel: NotRequired[str]
|
|
748
858
|
schcrwlrDatabasePassword: NotRequired[str]
|
|
749
859
|
schcrwlrDatabaseUser: NotRequired[str]
|
|
750
860
|
serverConnectionDatabase: NotRequired[str]
|
|
861
|
+
"""
|
|
862
|
+
--database Database to connect to (optional)
|
|
863
|
+
"""
|
|
751
864
|
serverConnectionHost: NotRequired[str]
|
|
865
|
+
"""
|
|
866
|
+
--host Database host (optional)
|
|
867
|
+
"""
|
|
752
868
|
serverConnectionPort: NotRequired[int]
|
|
869
|
+
"""
|
|
870
|
+
--port Database port (optional)
|
|
871
|
+
"""
|
|
753
872
|
serverConnectionServer: str
|
|
873
|
+
"""
|
|
874
|
+
--server SchemaCrawler database plugin
|
|
875
|
+
"""
|
|
754
876
|
urlConnectionJdbcUrl: str
|
|
877
|
+
"""
|
|
878
|
+
--url JDBC URL for database connection
|
|
879
|
+
"""
|
|
755
880
|
volumeHostShare: str
|
|
881
|
+
"""
|
|
882
|
+
Host volume to map within the Docker container
|
|
883
|
+
"""
|
|
756
884
|
|
|
757
885
|
|
|
758
886
|
class Scrapegraph(TypedDict):
|
|
@@ -800,13 +928,22 @@ class Smartbear(TypedDict):
|
|
|
800
928
|
|
|
801
929
|
class Sonarqube(TypedDict):
|
|
802
930
|
org: str
|
|
931
|
+
"""
|
|
932
|
+
Organization key for SonarQube Cloud, not required for SonarQube Server or Community Build
|
|
933
|
+
"""
|
|
803
934
|
token: str
|
|
804
935
|
url: str
|
|
936
|
+
"""
|
|
937
|
+
URL of the SonarQube instance, to provide only for SonarQube Server or Community Build
|
|
938
|
+
"""
|
|
805
939
|
|
|
806
940
|
|
|
807
941
|
class Stackgen(TypedDict):
|
|
808
942
|
token: NotRequired[str]
|
|
809
943
|
url: str
|
|
944
|
+
"""
|
|
945
|
+
URL of your StackGen instance
|
|
946
|
+
"""
|
|
810
947
|
|
|
811
948
|
|
|
812
949
|
class Stackhawk(TypedDict):
|
|
@@ -845,9 +982,18 @@ class Tembo(TypedDict):
|
|
|
845
982
|
class TextToGraphql(TypedDict):
|
|
846
983
|
graphqlApiKey: str
|
|
847
984
|
graphqlAuthType: str
|
|
985
|
+
"""
|
|
986
|
+
Authentication method for GraphQL API
|
|
987
|
+
"""
|
|
848
988
|
graphqlEndpoint: str
|
|
849
989
|
modelName: str
|
|
990
|
+
"""
|
|
991
|
+
OpenAI model to use
|
|
992
|
+
"""
|
|
850
993
|
modelTemperature: float
|
|
994
|
+
"""
|
|
995
|
+
Model temperature for responses
|
|
996
|
+
"""
|
|
851
997
|
openaiApiKey: str
|
|
852
998
|
|
|
853
999
|
|
|
@@ -863,9 +1009,21 @@ class Triplewhale(TypedDict):
|
|
|
863
1009
|
|
|
864
1010
|
class UnrealEngine(TypedDict):
|
|
865
1011
|
logLevel: NotRequired[str]
|
|
1012
|
+
"""
|
|
1013
|
+
Logging level
|
|
1014
|
+
"""
|
|
866
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
|
+
"""
|
|
867
1019
|
ueRcHttpPort: str
|
|
1020
|
+
"""
|
|
1021
|
+
Remote Control HTTP port
|
|
1022
|
+
"""
|
|
868
1023
|
ueRcWsPort: str
|
|
1024
|
+
"""
|
|
1025
|
+
Remote Control WebSocket port
|
|
1026
|
+
"""
|
|
869
1027
|
|
|
870
1028
|
|
|
871
1029
|
class Veyrax(TypedDict):
|
|
@@ -886,235 +1044,906 @@ class WolframAlpha(TypedDict):
|
|
|
886
1044
|
|
|
887
1045
|
class ZerodhaKite(TypedDict):
|
|
888
1046
|
kiteAccessToken: NotRequired[str]
|
|
1047
|
+
"""
|
|
1048
|
+
Access token obtained after OAuth authentication (optional - can be generated at runtime)
|
|
1049
|
+
"""
|
|
889
1050
|
kiteApiKey: str
|
|
1051
|
+
"""
|
|
1052
|
+
Your Kite Connect API key from the developer console
|
|
1053
|
+
"""
|
|
890
1054
|
kiteApiSecret: NotRequired[str]
|
|
891
1055
|
kiteRedirectUrl: NotRequired[str]
|
|
1056
|
+
"""
|
|
1057
|
+
OAuth redirect URL configured in your Kite Connect app
|
|
1058
|
+
"""
|
|
892
1059
|
|
|
893
1060
|
|
|
894
|
-
class
|
|
1061
|
+
class McpServer(TypedDict):
|
|
895
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
|
+
"""
|
|
896
1066
|
aks: NotRequired[Aks]
|
|
1067
|
+
"""
|
|
1068
|
+
Azure Kubernetes Service (AKS) official MCP server.
|
|
1069
|
+
"""
|
|
897
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
|
+
"""
|
|
898
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
|
+
"""
|
|
899
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
|
+
"""
|
|
900
1082
|
astGrep: NotRequired[AstGrep]
|
|
1083
|
+
"""
|
|
1084
|
+
ast-grep is a fast and polyglot tool for code structural search, lint, rewriting at large scale.
|
|
1085
|
+
"""
|
|
901
1086
|
astraDb: NotRequired[AstraDb]
|
|
1087
|
+
"""
|
|
1088
|
+
An MCP server for Astra DB workloads.
|
|
1089
|
+
"""
|
|
902
1090
|
astroDocs: NotRequired[Dict[str, Any]]
|
|
1091
|
+
"""
|
|
1092
|
+
Access the latest Astro web framework documentation, guides, and API references.
|
|
1093
|
+
"""
|
|
903
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
|
+
"""
|
|
904
1098
|
atlasDocs: NotRequired[AtlasDocs]
|
|
1099
|
+
"""
|
|
1100
|
+
Provide LLMs hosted, clean markdown documentation of libraries and frameworks.
|
|
1101
|
+
"""
|
|
905
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
|
+
"""
|
|
906
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
|
+
"""
|
|
907
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
|
+
"""
|
|
908
1114
|
awsCore: NotRequired[Dict[str, Any]]
|
|
1115
|
+
"""
|
|
1116
|
+
Starting point for using the awslabs MCP servers.
|
|
1117
|
+
"""
|
|
909
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
|
+
"""
|
|
910
1122
|
awsDocumentation: NotRequired[Dict[str, Any]]
|
|
1123
|
+
"""
|
|
1124
|
+
Tools to access AWS documentation, search for content, and get recommendations.
|
|
1125
|
+
"""
|
|
911
1126
|
awsKbRetrievalServer: NotRequired[AwsKbRetrievalServer]
|
|
1127
|
+
"""
|
|
1128
|
+
An MCP server implementation for retrieving information from the AWS Knowledge Base using the Bedrock Agent Runtime.
|
|
1129
|
+
"""
|
|
912
1130
|
awsTerraform: NotRequired[Dict[str, Any]]
|
|
1131
|
+
"""
|
|
1132
|
+
Terraform on AWS best practices, infrastructure as code patterns, and security compliance with Checkov.
|
|
1133
|
+
"""
|
|
913
1134
|
azure: NotRequired[Dict[str, Any]]
|
|
1135
|
+
"""
|
|
1136
|
+
The Azure MCP Server, bringing the power of Azure to your agents.
|
|
1137
|
+
"""
|
|
914
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
|
+
"""
|
|
915
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
|
+
"""
|
|
916
1146
|
box: NotRequired[Box]
|
|
1147
|
+
"""
|
|
1148
|
+
An MCP server capable of interacting with the Box API.
|
|
1149
|
+
"""
|
|
917
1150
|
brave: NotRequired[Brave]
|
|
1151
|
+
"""
|
|
1152
|
+
Search the Web for pages, images, news, videos, and more using the Brave Search API.
|
|
1153
|
+
"""
|
|
918
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
|
+
"""
|
|
919
1158
|
buildkite: NotRequired[Buildkite]
|
|
1159
|
+
"""
|
|
1160
|
+
Buildkite MCP lets agents interact with Buildkite Builds, Jobs, Logs, Packages and Test Suites.
|
|
1161
|
+
"""
|
|
920
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
|
+
"""
|
|
921
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
|
+
"""
|
|
922
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
|
+
"""
|
|
923
1174
|
chroma: NotRequired[Chroma]
|
|
1175
|
+
"""
|
|
1176
|
+
A Model Context Protocol (MCP) server implementation that provides database capabilities for Chroma.
|
|
1177
|
+
"""
|
|
924
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
|
+
"""
|
|
925
1182
|
clickhouse: NotRequired[Clickhouse]
|
|
1183
|
+
"""
|
|
1184
|
+
Official ClickHouse MCP Server.
|
|
1185
|
+
"""
|
|
926
1186
|
close: NotRequired[Close]
|
|
1187
|
+
"""
|
|
1188
|
+
Streamline sales processes with integrated calling, email, SMS, and automated workflows for small and scaling businesses.
|
|
1189
|
+
"""
|
|
927
1190
|
cloudRun: NotRequired[CloudRun]
|
|
1191
|
+
"""
|
|
1192
|
+
MCP server to deploy apps to Cloud Run.
|
|
1193
|
+
"""
|
|
928
1194
|
cloudflareDocs: NotRequired[Dict[str, Any]]
|
|
1195
|
+
"""
|
|
1196
|
+
Access the latest documentation on Cloudflare products such as Workers, Pages, R2, D1, KV.
|
|
1197
|
+
"""
|
|
929
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
|
+
"""
|
|
930
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
|
+
"""
|
|
931
1206
|
context7: NotRequired[Dict[str, Any]]
|
|
1207
|
+
"""
|
|
1208
|
+
Context7 MCP Server -- Up-to-date code documentation for LLMs and AI code editors.
|
|
1209
|
+
"""
|
|
932
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
|
+
"""
|
|
933
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
|
+
"""
|
|
934
1218
|
cyreslabAiShodan: NotRequired[CyreslabAiShodan]
|
|
1219
|
+
"""
|
|
1220
|
+
A Model Context Protocol server that provides access to Shodan API functionality.
|
|
1221
|
+
"""
|
|
935
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
|
+
"""
|
|
936
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
|
+
"""
|
|
937
1230
|
dart: NotRequired[Dart]
|
|
1231
|
+
"""
|
|
1232
|
+
Dart AI Model Context Protocol (MCP) server.
|
|
1233
|
+
"""
|
|
938
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
|
+
"""
|
|
939
1238
|
databutton: NotRequired[Dict[str, Any]]
|
|
1239
|
+
"""
|
|
1240
|
+
Databutton MCP Server.
|
|
1241
|
+
"""
|
|
940
1242
|
deepwiki: NotRequired[Dict[str, Any]]
|
|
1243
|
+
"""
|
|
1244
|
+
Tools for fetching and asking questions about GitHub repositories.
|
|
1245
|
+
"""
|
|
941
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
|
+
"""
|
|
942
1250
|
desktopCommander: NotRequired[DesktopCommander]
|
|
1251
|
+
"""
|
|
1252
|
+
Search, update, manage files and run terminal commands with AI.
|
|
1253
|
+
"""
|
|
943
1254
|
devhubCms: NotRequired[DevhubCms]
|
|
1255
|
+
"""
|
|
1256
|
+
DevHub CMS LLM integration through the Model Context Protocol.
|
|
1257
|
+
"""
|
|
944
1258
|
discord: NotRequired[Discord]
|
|
1259
|
+
"""
|
|
1260
|
+
Interact with the Discord platform.
|
|
1261
|
+
"""
|
|
945
1262
|
dockerhub: NotRequired[Dockerhub]
|
|
1263
|
+
"""
|
|
1264
|
+
Docker Hub official MCP server.
|
|
1265
|
+
"""
|
|
946
1266
|
dodoPayments: NotRequired[DodoPayments]
|
|
1267
|
+
"""
|
|
1268
|
+
Tools for cross-border payments, taxes, and compliance.
|
|
1269
|
+
"""
|
|
947
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
|
+
"""
|
|
948
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
|
+
"""
|
|
949
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
|
+
"""
|
|
950
1282
|
moru: NotRequired[Moru]
|
|
1283
|
+
"""
|
|
1284
|
+
Giving Claude ability to run code with Moru via MCP (Model Context Protocol).
|
|
1285
|
+
"""
|
|
951
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
|
+
"""
|
|
952
1290
|
effect: NotRequired[Dict[str, Any]]
|
|
1291
|
+
"""
|
|
1292
|
+
Tools and resources for writing Effect code in Typescript.
|
|
1293
|
+
"""
|
|
953
1294
|
elasticsearch: NotRequired[Elasticsearch]
|
|
1295
|
+
"""
|
|
1296
|
+
Interact with your Elasticsearch indices through natural language conversations.
|
|
1297
|
+
"""
|
|
954
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
|
+
"""
|
|
955
1302
|
everart: NotRequired[Everart]
|
|
1303
|
+
"""
|
|
1304
|
+
Image generation server using EverArt's API.
|
|
1305
|
+
"""
|
|
956
1306
|
exa: NotRequired[Exa]
|
|
1307
|
+
"""
|
|
1308
|
+
Exa MCP for web search and web crawling!.
|
|
1309
|
+
"""
|
|
957
1310
|
explorium: NotRequired[Explorium]
|
|
1311
|
+
"""
|
|
1312
|
+
Discover companies, contacts, and business insights—powered by dozens of trusted external data sources.
|
|
1313
|
+
"""
|
|
958
1314
|
fetch: NotRequired[Dict[str, Any]]
|
|
1315
|
+
"""
|
|
1316
|
+
Fetches a URL from the internet and extracts its contents as markdown.
|
|
1317
|
+
"""
|
|
959
1318
|
fibery: NotRequired[Fibery]
|
|
1319
|
+
"""
|
|
1320
|
+
Interact with your Fibery workspace.
|
|
1321
|
+
"""
|
|
960
1322
|
filesystem: NotRequired[Filesystem]
|
|
1323
|
+
"""
|
|
1324
|
+
Local filesystem access with configurable allowed paths.
|
|
1325
|
+
"""
|
|
961
1326
|
findADomain: NotRequired[Dict[str, Any]]
|
|
1327
|
+
"""
|
|
1328
|
+
Tools for finding domain names.
|
|
1329
|
+
"""
|
|
962
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
|
+
"""
|
|
963
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
|
+
"""
|
|
964
1338
|
flexprice: NotRequired[Flexprice]
|
|
1339
|
+
"""
|
|
1340
|
+
Official flexprice MCP Server.
|
|
1341
|
+
"""
|
|
965
1342
|
git: NotRequired[Git]
|
|
1343
|
+
"""
|
|
1344
|
+
Git repository interaction and automation.
|
|
1345
|
+
"""
|
|
966
1346
|
github: NotRequired[Github]
|
|
1347
|
+
"""
|
|
1348
|
+
Tools for interacting with the GitHub API, enabling file operations, repository management, search functionality, and more.
|
|
1349
|
+
"""
|
|
967
1350
|
githubChat: NotRequired[GithubChat]
|
|
1351
|
+
"""
|
|
1352
|
+
A Model Context Protocol (MCP) for analyzing and querying GitHub repositories using the GitHub Chat API.
|
|
1353
|
+
"""
|
|
968
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
|
+
"""
|
|
969
1358
|
gitlab: NotRequired[Gitlab]
|
|
1359
|
+
"""
|
|
1360
|
+
MCP Server for the GitLab API, enabling project management, file operations, and more.
|
|
1361
|
+
"""
|
|
970
1362
|
gitmcp: NotRequired[Dict[str, Any]]
|
|
1363
|
+
"""
|
|
1364
|
+
Tools for interacting with Git repositories.
|
|
1365
|
+
"""
|
|
971
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
|
+
"""
|
|
972
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
|
+
"""
|
|
973
1374
|
googleMaps: NotRequired[GoogleMaps]
|
|
1375
|
+
"""
|
|
1376
|
+
Tools for interacting with the Google Maps API.
|
|
1377
|
+
"""
|
|
974
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
|
+
"""
|
|
975
1382
|
grafana: NotRequired[Grafana]
|
|
1383
|
+
"""
|
|
1384
|
+
MCP server for Grafana.
|
|
1385
|
+
"""
|
|
976
1386
|
gyazo: NotRequired[Gyazo]
|
|
1387
|
+
"""
|
|
1388
|
+
Official Model Context Protocol server for Gyazo.
|
|
1389
|
+
"""
|
|
977
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
|
+
"""
|
|
978
1394
|
hackle: NotRequired[Hackle]
|
|
1395
|
+
"""
|
|
1396
|
+
Model Context Protocol server for Hackle.
|
|
1397
|
+
"""
|
|
979
1398
|
handwritingOcr: NotRequired[HandwritingOcr]
|
|
1399
|
+
"""
|
|
1400
|
+
Model Context Protocol (MCP) Server for Handwriting OCR.
|
|
1401
|
+
"""
|
|
980
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
|
+
"""
|
|
981
1406
|
heroku: NotRequired[Heroku]
|
|
1407
|
+
"""
|
|
1408
|
+
Heroku Platform MCP Server using the Heroku CLI.
|
|
1409
|
+
"""
|
|
982
1410
|
hostinger: NotRequired[Hostinger]
|
|
1411
|
+
"""
|
|
1412
|
+
Interact with Hostinger services over the Hostinger API.
|
|
1413
|
+
"""
|
|
983
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
|
+
"""
|
|
984
1418
|
hubspot: NotRequired[Hubspot]
|
|
1419
|
+
"""
|
|
1420
|
+
Unite marketing, sales, and customer service with AI-powered automation, lead management, and comprehensive analytics.
|
|
1421
|
+
"""
|
|
985
1422
|
huggingFace: NotRequired[Dict[str, Any]]
|
|
1423
|
+
"""
|
|
1424
|
+
Tools for interacting with Hugging Face models, datasets, research papers, and more.
|
|
1425
|
+
"""
|
|
986
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
|
+
"""
|
|
987
1430
|
husqvarnaAutomower: NotRequired[HusqvarnaAutomower]
|
|
1431
|
+
"""
|
|
1432
|
+
MCP Server for huqsvarna automower.
|
|
1433
|
+
"""
|
|
988
1434
|
hyperbrowser: NotRequired[Hyperbrowser]
|
|
1435
|
+
"""
|
|
1436
|
+
A MCP server implementation for hyperbrowser.
|
|
1437
|
+
"""
|
|
989
1438
|
hyperspell: NotRequired[Hyperspell]
|
|
1439
|
+
"""
|
|
1440
|
+
Hyperspell MCP Server.
|
|
1441
|
+
"""
|
|
990
1442
|
iaptic: NotRequired[Iaptic]
|
|
1443
|
+
"""
|
|
1444
|
+
Model Context Protocol server for interacting with iaptic.
|
|
1445
|
+
"""
|
|
991
1446
|
inspektorGadget: NotRequired[InspektorGadget]
|
|
1447
|
+
"""
|
|
1448
|
+
AI interface to troubleshoot and observe Kubernetes/Container workloads.
|
|
1449
|
+
"""
|
|
992
1450
|
javadocs: NotRequired[Dict[str, Any]]
|
|
1451
|
+
"""
|
|
1452
|
+
Access to Java, Kotlin, and Scala library documentation.
|
|
1453
|
+
"""
|
|
993
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
|
+
"""
|
|
994
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
|
+
"""
|
|
995
1462
|
kagisearch: NotRequired[Kagisearch]
|
|
1463
|
+
"""
|
|
1464
|
+
The Official Model Context Protocol (MCP) server for Kagi search & other tools.
|
|
1465
|
+
"""
|
|
996
1466
|
keboola: NotRequired[Keboola]
|
|
1467
|
+
"""
|
|
1468
|
+
Keboola MCP Server is an open-source bridge between your Keboola project and modern AI tools.
|
|
1469
|
+
"""
|
|
997
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
|
+
"""
|
|
998
1474
|
kubectl: NotRequired[Kubectl]
|
|
1475
|
+
"""
|
|
1476
|
+
MCP Server that enables AI assistants to interact with Kubernetes clusters via kubectl operations.
|
|
1477
|
+
"""
|
|
999
1478
|
kubernetes: NotRequired[Kubernetes]
|
|
1479
|
+
"""
|
|
1480
|
+
Connect to a Kubernetes cluster and manage it.
|
|
1481
|
+
"""
|
|
1000
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
|
+
"""
|
|
1001
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
|
+
"""
|
|
1002
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
|
+
"""
|
|
1003
1494
|
llmtxt: NotRequired[Dict[str, Any]]
|
|
1495
|
+
"""
|
|
1496
|
+
Discovers and retrieves llms.txt from websites.
|
|
1497
|
+
"""
|
|
1004
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
|
+
"""
|
|
1005
1502
|
manifold: NotRequired[Dict[str, Any]]
|
|
1503
|
+
"""
|
|
1504
|
+
Tools for accessing the Manifold Markets online prediction market platform.
|
|
1505
|
+
"""
|
|
1006
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
|
+
"""
|
|
1007
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
|
+
"""
|
|
1008
1514
|
markdownify: NotRequired[Markdownify]
|
|
1515
|
+
"""
|
|
1516
|
+
A Model Context Protocol server for converting almost anything to Markdown.
|
|
1517
|
+
"""
|
|
1009
1518
|
markitdown: NotRequired[Markitdown]
|
|
1519
|
+
"""
|
|
1520
|
+
A lightweight MCP server for calling MarkItDown.
|
|
1521
|
+
"""
|
|
1010
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
|
+
"""
|
|
1011
1526
|
memory: NotRequired[Dict[str, Any]]
|
|
1527
|
+
"""
|
|
1528
|
+
Knowledge graph-based persistent memory system.
|
|
1529
|
+
"""
|
|
1012
1530
|
mercadoLibre: NotRequired[MercadoLibre]
|
|
1531
|
+
"""
|
|
1532
|
+
Provides access to Mercado Libre E-Commerce API.
|
|
1533
|
+
"""
|
|
1013
1534
|
mercadoPago: NotRequired[MercadoPago]
|
|
1535
|
+
"""
|
|
1536
|
+
Provides access to Mercado Pago Marketplace API.
|
|
1537
|
+
"""
|
|
1014
1538
|
metabase: NotRequired[Metabase]
|
|
1539
|
+
"""
|
|
1540
|
+
A comprehensive MCP server for Metabase with 70+ tools.
|
|
1541
|
+
"""
|
|
1015
1542
|
minecraftWiki: NotRequired[Dict[str, Any]]
|
|
1543
|
+
"""
|
|
1544
|
+
A MCP Server for browsing the official Minecraft Wiki!.
|
|
1545
|
+
"""
|
|
1016
1546
|
mongodb: NotRequired[Mongodb]
|
|
1547
|
+
"""
|
|
1548
|
+
A Model Context Protocol server to connect to MongoDB databases and MongoDB Atlas Clusters.
|
|
1549
|
+
"""
|
|
1017
1550
|
multiversxMx: NotRequired[MultiversxMx]
|
|
1551
|
+
"""
|
|
1552
|
+
MCP Server for MultiversX.
|
|
1553
|
+
"""
|
|
1018
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
|
+
"""
|
|
1019
1558
|
needle: NotRequired[Needle]
|
|
1559
|
+
"""
|
|
1560
|
+
Production-ready RAG service to search and retrieve data from your documents.
|
|
1561
|
+
"""
|
|
1020
1562
|
neo4jCloudAuraApi: NotRequired[Neo4jCloudAuraApi]
|
|
1563
|
+
"""
|
|
1564
|
+
Manage Neo4j Aura database instances through the Neo4j Aura API.
|
|
1565
|
+
"""
|
|
1021
1566
|
neo4jCypher: NotRequired[Neo4jCypher]
|
|
1567
|
+
"""
|
|
1568
|
+
Interact with Neo4j using Cypher graph queries.
|
|
1569
|
+
"""
|
|
1022
1570
|
neo4jDataModeling: NotRequired[Neo4jDataModeling]
|
|
1571
|
+
"""
|
|
1572
|
+
MCP server that assists in creating, validating and visualizing graph data models.
|
|
1573
|
+
"""
|
|
1023
1574
|
neo4jMemory: NotRequired[Neo4jMemory]
|
|
1575
|
+
"""
|
|
1576
|
+
Provide persistent memory capabilities through Neo4j graph database integration.
|
|
1577
|
+
"""
|
|
1024
1578
|
neon: NotRequired[Neon]
|
|
1579
|
+
"""
|
|
1580
|
+
MCP server for interacting with Neon Management API and databases.
|
|
1581
|
+
"""
|
|
1025
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
|
+
"""
|
|
1026
1586
|
notion: NotRequired[Notion]
|
|
1587
|
+
"""
|
|
1588
|
+
Official Notion MCP Server.
|
|
1589
|
+
"""
|
|
1027
1590
|
novita: NotRequired[Dict[str, Any]]
|
|
1591
|
+
"""
|
|
1592
|
+
Seamless interaction with Novita AI platform resources.
|
|
1593
|
+
"""
|
|
1028
1594
|
npmSentinel: NotRequired[Dict[str, Any]]
|
|
1595
|
+
"""
|
|
1596
|
+
MCP server that enables intelligent NPM package analysis powered by AI.
|
|
1597
|
+
"""
|
|
1029
1598
|
obsidian: NotRequired[Obsidian]
|
|
1599
|
+
"""
|
|
1600
|
+
MCP server that interacts with Obsidian via the Obsidian rest API community plugin.
|
|
1601
|
+
"""
|
|
1030
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
|
+
"""
|
|
1031
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
|
+
"""
|
|
1032
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
|
+
"""
|
|
1033
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
|
+
"""
|
|
1034
1618
|
openapiSchema: NotRequired[OpenapiSchema]
|
|
1619
|
+
"""
|
|
1620
|
+
OpenAPI Schema Model Context Protocol Server.
|
|
1621
|
+
"""
|
|
1035
1622
|
openbnbAirbnb: NotRequired[Dict[str, Any]]
|
|
1623
|
+
"""
|
|
1624
|
+
MCP Server for searching Airbnb and get listing details.
|
|
1625
|
+
"""
|
|
1036
1626
|
openmesh: NotRequired[Dict[str, Any]]
|
|
1627
|
+
"""
|
|
1628
|
+
Discover and connect to a curated marketplace of MCP servers for extending AI agent capabilities.
|
|
1629
|
+
"""
|
|
1037
1630
|
openweather: NotRequired[Openweather]
|
|
1631
|
+
"""
|
|
1632
|
+
A simple MCP service that provides current weather and 5-day forecast using the free OpenWeatherMap API.
|
|
1633
|
+
"""
|
|
1038
1634
|
openzeppelinCairo: NotRequired[Dict[str, Any]]
|
|
1635
|
+
"""
|
|
1636
|
+
Access to OpenZeppelin Cairo Contracts.
|
|
1637
|
+
"""
|
|
1039
1638
|
openzeppelinSolidity: NotRequired[Dict[str, Any]]
|
|
1639
|
+
"""
|
|
1640
|
+
Access to OpenZeppelin Solidity Contracts.
|
|
1641
|
+
"""
|
|
1040
1642
|
openzeppelinStellar: NotRequired[Dict[str, Any]]
|
|
1643
|
+
"""
|
|
1644
|
+
Access to OpenZeppelin Stellar Contracts.
|
|
1645
|
+
"""
|
|
1041
1646
|
openzeppelinStylus: NotRequired[Dict[str, Any]]
|
|
1647
|
+
"""
|
|
1648
|
+
Access to OpenZeppelin Stylus Contracts.
|
|
1649
|
+
"""
|
|
1042
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
|
+
"""
|
|
1043
1654
|
opine: NotRequired[Opine]
|
|
1655
|
+
"""
|
|
1656
|
+
A Model Context Protocol (MCP) server for querying deals and evaluations from the Opine CRM API.
|
|
1657
|
+
"""
|
|
1044
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
|
+
"""
|
|
1045
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
|
+
"""
|
|
1046
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
|
+
"""
|
|
1047
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
|
+
"""
|
|
1048
1674
|
perplexityAsk: NotRequired[PerplexityAsk]
|
|
1675
|
+
"""
|
|
1676
|
+
Connector for Perplexity API, to enable real-time, web-wide research.
|
|
1677
|
+
"""
|
|
1049
1678
|
pia: NotRequired[Pia]
|
|
1679
|
+
"""
|
|
1680
|
+
An MCP server to help make U.S. Government open datasets AI-friendly.
|
|
1681
|
+
"""
|
|
1050
1682
|
pinecone: NotRequired[Pinecone]
|
|
1683
|
+
"""
|
|
1684
|
+
Pinecone Assistant MCP server.
|
|
1685
|
+
"""
|
|
1051
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
|
+
"""
|
|
1052
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
|
+
"""
|
|
1053
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
|
+
"""
|
|
1054
1698
|
pomodash: NotRequired[Pomodash]
|
|
1699
|
+
"""
|
|
1700
|
+
Connect your AI assistant to PomoDash for seamless task and project management.
|
|
1701
|
+
"""
|
|
1055
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
|
+
"""
|
|
1056
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
|
+
"""
|
|
1057
1710
|
prefEditor: NotRequired[Dict[str, Any]]
|
|
1711
|
+
"""
|
|
1712
|
+
Pref Editor is a tool for viewing and editing Android app preferences during development.
|
|
1713
|
+
"""
|
|
1058
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
|
+
"""
|
|
1059
1718
|
puppeteer: NotRequired[Dict[str, Any]]
|
|
1719
|
+
"""
|
|
1720
|
+
Browser automation and web scraping using Puppeteer.
|
|
1721
|
+
"""
|
|
1060
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
|
+
"""
|
|
1061
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
|
+
"""
|
|
1062
1730
|
ramparts: NotRequired[Dict[str, Any]]
|
|
1731
|
+
"""
|
|
1732
|
+
A comprehensive security scanner for MCP servers with YARA rules and static analysis capabilities.
|
|
1733
|
+
"""
|
|
1063
1734
|
razorpay: NotRequired[Razorpay]
|
|
1735
|
+
"""
|
|
1736
|
+
Razorpay's Official MCP Server.
|
|
1737
|
+
"""
|
|
1064
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
|
+
"""
|
|
1065
1742
|
redis: NotRequired[Redis]
|
|
1743
|
+
"""
|
|
1744
|
+
Access to Redis database operations.
|
|
1745
|
+
"""
|
|
1066
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
|
+
"""
|
|
1067
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
|
+
"""
|
|
1068
1754
|
remote: NotRequired[Dict[str, Any]]
|
|
1755
|
+
"""
|
|
1756
|
+
Tools for finding remote MCP servers.
|
|
1757
|
+
"""
|
|
1069
1758
|
render: NotRequired[Render]
|
|
1759
|
+
"""
|
|
1760
|
+
Interact with your Render resources via LLMs.
|
|
1761
|
+
"""
|
|
1070
1762
|
resend: NotRequired[Resend]
|
|
1763
|
+
"""
|
|
1764
|
+
Send emails directly from Cursor with this email sending MCP server.
|
|
1765
|
+
"""
|
|
1071
1766
|
risken: NotRequired[Risken]
|
|
1767
|
+
"""
|
|
1768
|
+
RISKEN's official MCP Server.
|
|
1769
|
+
"""
|
|
1072
1770
|
root: NotRequired[Root]
|
|
1771
|
+
"""
|
|
1772
|
+
MCP server that provides container image vulnerability scanning and remediation capabilities through Root.io.
|
|
1773
|
+
"""
|
|
1073
1774
|
ros2: NotRequired[Dict[str, Any]]
|
|
1775
|
+
"""
|
|
1776
|
+
Python server implementing Model Context Protocol (MCP) for ROS2.
|
|
1777
|
+
"""
|
|
1074
1778
|
rube: NotRequired[Rube]
|
|
1779
|
+
"""
|
|
1780
|
+
Access to Rube's catalog of remote MCP servers.
|
|
1781
|
+
"""
|
|
1075
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
|
+
"""
|
|
1076
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
|
+
"""
|
|
1077
1790
|
schoginiMcpImageBorder: NotRequired[Dict[str, Any]]
|
|
1791
|
+
"""
|
|
1792
|
+
This adds a border to an image and returns base64 encoded image.
|
|
1793
|
+
"""
|
|
1078
1794
|
scrapegraph: NotRequired[Scrapegraph]
|
|
1795
|
+
"""
|
|
1796
|
+
ScapeGraph MCP Server.
|
|
1797
|
+
"""
|
|
1079
1798
|
scrapezy: NotRequired[Scrapezy]
|
|
1799
|
+
"""
|
|
1800
|
+
A Model Context Protocol server for Scrapezy that enables AI models to extract structured data from websites.
|
|
1801
|
+
"""
|
|
1080
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
|
+
"""
|
|
1081
1806
|
semgrep: NotRequired[Dict[str, Any]]
|
|
1807
|
+
"""
|
|
1808
|
+
MCP server for using Semgrep to scan code for security vulnerabilities.
|
|
1809
|
+
"""
|
|
1082
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
|
+
"""
|
|
1083
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
|
+
"""
|
|
1084
1818
|
sequentialthinking: NotRequired[Dict[str, Any]]
|
|
1819
|
+
"""
|
|
1820
|
+
Dynamic and reflective problem-solving through thought sequences.
|
|
1821
|
+
"""
|
|
1085
1822
|
shortIo: NotRequired[ShortIo]
|
|
1823
|
+
"""
|
|
1824
|
+
Access to Short.io's link shortener and analytics tools.
|
|
1825
|
+
"""
|
|
1086
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
|
+
"""
|
|
1087
1830
|
singlestore: NotRequired[Singlestore]
|
|
1831
|
+
"""
|
|
1832
|
+
MCP server for interacting with SingleStore Management API and services.
|
|
1833
|
+
"""
|
|
1088
1834
|
slack: NotRequired[Slack]
|
|
1835
|
+
"""
|
|
1836
|
+
Interact with Slack Workspaces over the Slack API.
|
|
1837
|
+
"""
|
|
1089
1838
|
smartbear: NotRequired[Smartbear]
|
|
1839
|
+
"""
|
|
1840
|
+
MCP server for AI access to SmartBear tools, including BugSnag, Reflect, API Hub, PactFlow.
|
|
1841
|
+
"""
|
|
1090
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
|
+
"""
|
|
1091
1846
|
sqlite: NotRequired[Dict[str, Any]]
|
|
1847
|
+
"""
|
|
1848
|
+
Database interaction and business intelligence capabilities.
|
|
1849
|
+
"""
|
|
1092
1850
|
stackgen: NotRequired[Stackgen]
|
|
1851
|
+
"""
|
|
1852
|
+
AI-powered DevOps assistant for managing cloud infrastructure and applications.
|
|
1853
|
+
"""
|
|
1093
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
|
+
"""
|
|
1094
1858
|
stripe: NotRequired[Stripe]
|
|
1859
|
+
"""
|
|
1860
|
+
Interact with Stripe services over the Stripe API.
|
|
1861
|
+
"""
|
|
1095
1862
|
supadata: NotRequired[Supadata]
|
|
1863
|
+
"""
|
|
1864
|
+
Official Supadata MCP Server - Adds powerful video & web scraping to Cursor, Claude and any other LLM clients.
|
|
1865
|
+
"""
|
|
1096
1866
|
suzieq: NotRequired[Suzieq]
|
|
1867
|
+
"""
|
|
1868
|
+
MCP Server to interact with a SuzieQ network observability instance via its REST API.
|
|
1869
|
+
"""
|
|
1097
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
|
+
"""
|
|
1098
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
|
+
"""
|
|
1099
1878
|
teamwork: NotRequired[Teamwork]
|
|
1879
|
+
"""
|
|
1880
|
+
Tools for Teamwork.com products.
|
|
1881
|
+
"""
|
|
1100
1882
|
telnyx: NotRequired[Telnyx]
|
|
1883
|
+
"""
|
|
1884
|
+
Enables interaction with powerful telephony, messaging, and AI assistant APIs.
|
|
1885
|
+
"""
|
|
1101
1886
|
tembo: NotRequired[Tembo]
|
|
1887
|
+
"""
|
|
1888
|
+
MCP server for Tembo Cloud's platform API.
|
|
1889
|
+
"""
|
|
1102
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
|
+
"""
|
|
1103
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
|
+
"""
|
|
1104
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
|
+
"""
|
|
1105
1902
|
time: NotRequired[Dict[str, Any]]
|
|
1903
|
+
"""
|
|
1904
|
+
Time and timezone conversion capabilities.
|
|
1905
|
+
"""
|
|
1106
1906
|
triplewhale: NotRequired[Triplewhale]
|
|
1907
|
+
"""
|
|
1908
|
+
Triplewhale MCP Server.
|
|
1909
|
+
"""
|
|
1107
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
|
+
"""
|
|
1108
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
|
+
"""
|
|
1109
1918
|
vizro: NotRequired[Dict[str, Any]]
|
|
1919
|
+
"""
|
|
1920
|
+
provides tools and templates to create a functioning Vizro chart or dashboard step by step.
|
|
1921
|
+
"""
|
|
1110
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
|
+
"""
|
|
1111
1926
|
wayfound: NotRequired[Wayfound]
|
|
1927
|
+
"""
|
|
1928
|
+
Wayfound’s MCP server allows business users to govern, supervise, and improve AI Agents.
|
|
1929
|
+
"""
|
|
1112
1930
|
webflow: NotRequired[Webflow]
|
|
1931
|
+
"""
|
|
1932
|
+
Model Context Protocol (MCP) server for the Webflow Data API.
|
|
1933
|
+
"""
|
|
1113
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
|
+
"""
|
|
1114
1938
|
wolframAlpha: NotRequired[WolframAlpha]
|
|
1939
|
+
"""
|
|
1940
|
+
Connect your chat repl to wolfram alpha computational intelligence.
|
|
1941
|
+
"""
|
|
1115
1942
|
youtubeTranscript: NotRequired[Dict[str, Any]]
|
|
1943
|
+
"""
|
|
1944
|
+
Retrieves transcripts for given YouTube video URLs.
|
|
1945
|
+
"""
|
|
1116
1946
|
zerodhaKite: NotRequired[ZerodhaKite]
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
McpServer = Model
|
|
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
|
+
"""
|