From 2bde7b2c9adacdbefae9396707ec3d0cd74b74b9 Mon Sep 17 00:00:00 2001 From: kazuki Date: Sat, 18 Oct 2025 22:19:05 +0900 Subject: [PATCH] fix(mcp): update airis-mcp-gateway URL to correct organization MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes #440 ## Problem Code referenced non-existent `oraios/airis-mcp-gateway` repository, causing MCP installation to fail completely. ## Solution Updated to correct organization: `agiletec-inc/airis-mcp-gateway` ## Changes - Update install_command URL: oraios → agiletec-inc - Update run_command URL: oraios → agiletec-inc - Location: setup/components/mcp.py lines 34-35 ## Branch Context This fix is applied to the `integration` branch independently of PR #447. Both branches now have the correct URL, avoiding conflicts. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- setup/components/mcp.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup/components/mcp.py b/setup/components/mcp.py index 1f81264..52c2861 100644 --- a/setup/components/mcp.py +++ b/setup/components/mcp.py @@ -31,8 +31,8 @@ class MCPComponent(Component): "name": "airis-mcp-gateway", "description": "Unified MCP Gateway with all tools (sequential-thinking, context7, magic, playwright, serena, morphllm, tavily, chrome-devtools, git, puppeteer)", "install_method": "github", - "install_command": "uvx --from git+https://github.com/oraios/airis-mcp-gateway airis-mcp-gateway --help", - "run_command": "uvx --from git+https://github.com/oraios/airis-mcp-gateway airis-mcp-gateway", + "install_command": "uvx --from git+https://github.com/agiletec-inc/airis-mcp-gateway airis-mcp-gateway --help", + "run_command": "uvx --from git+https://github.com/agiletec-inc/airis-mcp-gateway airis-mcp-gateway", "required": True, }, }