From c0f63e20e9831c12428933b827e1601fa65f96ba Mon Sep 17 00:00:00 2001 From: Michal Date: Sun, 8 Mar 2026 17:36:26 +0000 Subject: [PATCH] docs: fix RPM install to use public URL with manual repo file Gitea's auto-generated .repo file contains internal IPs. Use a manual repo file with the public mysources.co.uk baseurl instead. Co-Authored-By: Claude Opus 4.6 --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7f12f60..bc58953 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,13 @@ Claude Code <--STDIO--> mcplocal (local proxy) <--HTTP--> mcpd (daemon) <-- ```bash # From RPM repository (Fedora/RHEL) -sudo dnf config-manager --add-repo https://mysources.co.uk/api/packages/michal/rpm.repo +sudo tee /etc/yum.repos.d/mcpctl.repo <<'EOF' +[mcpctl] +name=mcpctl +baseurl=https://mysources.co.uk/api/packages/michal/rpm +enabled=1 +gpgcheck=0 +EOF sudo dnf install mcpctl # Or build from source