From e6a981c5d72f472a2cdac27a2c68b7c108a510db Mon Sep 17 00:00:00 2001 From: kazuki Date: Sat, 18 Oct 2025 22:13:36 +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. ## Root Cause - Repository was moved to organization: `agiletec-inc/airis-mcp-gateway` - Old reference `oraios/airis-mcp-gateway` no longer exists - Users reported "not a python/uv module" error ## Changes - Update install_command URL: oraios → agiletec-inc - Update run_command URL: oraios → agiletec-inc - Location: setup/components/mcp_integration.py lines 37-38 ## Verification ✅ Correct URL now references active repository ✅ MCP installation will succeed with proper organization ✅ No other code references oraios/airis-mcp-gateway ## Related Issues - Fixes #440 (Airis-mcp-gateway url has changed) - Related to #442 (MCP update issues) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- setup/components/mcp_integration.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup/components/mcp_integration.py b/setup/components/mcp_integration.py index cf45e9b..3ec50ef 100644 --- a/setup/components/mcp_integration.py +++ b/setup/components/mcp_integration.py @@ -34,8 +34,8 @@ class MCPIntegrationComponent(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, }, }