fix: use canonical module path for go install support#259
Merged
Conversation
Changes the module declaration from `mcpproxy-go` to `github.com/smart-mcp-proxy/mcpproxy-go` to enable installation via: go install github.com/smart-mcp-proxy/mcpproxy-go/cmd/mcpproxy@latest This fixes the "module declares its path as: mcpproxy-go but was required as: github.com/smart-mcp-proxy/mcpproxy-go" error. Updates 153 files to use the canonical import path. Fixes #256 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Deploying mcpproxy-docs with
|
| Latest commit: |
1d0d664
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://bf0f086b.mcpproxy-docs.pages.dev |
| Branch Preview URL: | https://fix-module-path-for-go-insta.mcpproxy-docs.pages.dev |
📦 Build ArtifactsWorkflow Run: View Run Available Artifacts
How to DownloadOption 1: GitHub Web UI (easiest)
Option 2: GitHub CLI gh run download 20997868193 --repo smart-mcp-proxy/mcpproxy-go
|
technicalpickles
pushed a commit
to technicalpickles/mcpproxy-go
that referenced
this pull request
Jan 21, 2026
…y#259) Changes the module declaration from `mcpproxy-go` to `github.com/smart-mcp-proxy/mcpproxy-go` to enable installation via: go install github.com/smart-mcp-proxy/mcpproxy-go/cmd/mcpproxy@latest This fixes the "module declares its path as: mcpproxy-go but was required as: github.com/smart-mcp-proxy/mcpproxy-go" error. Updates 153 files to use the canonical import path. Fixes smart-mcp-proxy#256 Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
mcpproxy-gotogithub.com/smart-mcp-proxy/mcpproxy-gogo install github.com/smart-mcp-proxy/mcpproxy-go/cmd/mcpproxy@latestProblem
When users try to install via:
They get:
Solution
Updated
go.modand all internal imports to use the canonical GitHub module path.Test plan
go build ./cmd/mcpproxy)go test ./internal/...)go install github.com/smart-mcp-proxy/mcpproxy-go/cmd/mcpproxy@latestworks after mergeFixes #256
🤖 Generated with Claude Code