From dad358a461b37f72e10664b697c284cc7931b135 Mon Sep 17 00:00:00 2001 From: MQ37 Date: Fri, 7 Nov 2025 18:03:24 -0800 Subject: [PATCH] refactor: update MCP server configuration to local setup --- mcp-servers.json | 27 +++++++++++++++------------ 1 file changed, 15 insertions(+), 12 deletions(-) diff --git a/mcp-servers.json b/mcp-servers.json index 17944fa..0159efa 100644 --- a/mcp-servers.json +++ b/mcp-servers.json @@ -1,20 +1,23 @@ { "mcpServers": { "apify": { - "type": "remote", - "url": "https://mcp.apify.com", - "headers": { - "Authorization": "Bearer $APIFY_TOKEN", - "Content-Type": "application/json" - }, + "type": "local", "tools": [ - "call-actor", "fetch-actor-details", - "fetch-apify-docs", - "get-actor-output", "search-actors", - "search-apify-docs" - ] + "call-actor", + "search-apify-docs", + "fetch-apify-docs", + "get-actor-output" + ], + "command": "npx", + "args": [ + "-y", + "@apify/actors-mcp-server" + ], + "env": { + "APIFY_TOKEN": "COPILOT_MCP_APIFY_TOKEN" + } } } -} +} \ No newline at end of file