From e15417da15b2b2a472f1088f718ad8d54585c60f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Du=C5=A1an=20Vystr=C4=8Dil?= Date: Fri, 17 Oct 2025 11:51:39 -0700 Subject: [PATCH 1/4] Add Apify server configuration file --- servers/apify/server.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 servers/apify/server.json diff --git a/servers/apify/server.json b/servers/apify/server.json new file mode 100644 index 0000000..fb87240 --- /dev/null +++ b/servers/apify/server.json @@ -0,0 +1,12 @@ +{ + "name": "Apify", + "description": "Extract data from any website with thousands of scrapers, crawlers, and automations", + "transport": [ + "streamable" + ], + "icon": "./icon.svg", + "oauth": true, + "config": { + "url": "https://mcp.apify.com" + } +} From 577b4e4cefdaf9372553ac4acd6e0d150b7b4e7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Du=C5=A1an=20Vystr=C4=8Dil?= Date: Fri, 17 Oct 2025 11:52:15 -0700 Subject: [PATCH 2/4] icon --- servers/apify/icon.svg | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 servers/apify/icon.svg diff --git a/servers/apify/icon.svg b/servers/apify/icon.svg new file mode 100644 index 0000000..c3f0d86 --- /dev/null +++ b/servers/apify/icon.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + From aef3b2644f0a97ef479aa397182df1422e8e87ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Du=C5=A1an=20Vystr=C4=8Dil?= Date: Fri, 17 Oct 2025 11:54:11 -0700 Subject: [PATCH 3/4] Add 'apify' to index.json --- servers/index.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/servers/index.json b/servers/index.json index 26eec5b..2d8ec85 100644 --- a/servers/index.json +++ b/servers/index.json @@ -47,5 +47,6 @@ "paypal", "plaid", "mercado-pago", - "mercado-libre" + "mercado-libre", + "apify" ] From 3830a7a5c14330c96c0e147efbb2529cdb82ffab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Du=C5=A1an=20Vystr=C4=8Dil?= Date: Fri, 17 Oct 2025 11:57:21 -0700 Subject: [PATCH 4/4] Change transport type from 'streamable' to 'streamable-http' --- servers/apify/server.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/servers/apify/server.json b/servers/apify/server.json index fb87240..38c586b 100644 --- a/servers/apify/server.json +++ b/servers/apify/server.json @@ -2,7 +2,7 @@ "name": "Apify", "description": "Extract data from any website with thousands of scrapers, crawlers, and automations", "transport": [ - "streamable" + "streamable-http" ], "icon": "./icon.svg", "oauth": true,