rename: Teams → Server edition across entire codebase#323
Merged
Conversation
Deploying mcpproxy-docs with
|
| Latest commit: |
8002545
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://df77b715.mcpproxy-docs.pages.dev |
| Branch Preview URL: | https://rename-teams-to-server.mcpproxy-docs.pages.dev |
Rename the multi-user edition from "MCPProxy Teams" to "MCPProxy Server"
to avoid Microsoft Teams confusion and align with the cloud/LAN deployment
model.
Changes:
- Edition string: "teams" -> "server" (version output, API /status)
- Build tag: //go:build teams -> //go:build server (all 58 Go files)
- Build flag: -tags teams -> -tags server (Makefile, Dockerfile, CI)
- Binary: mcpproxy-teams -> mcpproxy-server
- Make target: build-teams -> build-server
- Docker image: mcpproxy-teams -> mcpproxy-server
- UI: "MCPProxy Teams" -> "MCPProxy Server", badge text
- Frontend edition check: edition === 'teams' -> edition === 'server'
- All comments, log messages, and docs updated
- CLAUDE.md fully updated with new naming
Internal package names (internal/teams/), struct names (TeamsConfig),
and config JSON key ("teams") are preserved to avoid breaking changes.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
b8e0903 to
8002545
Compare
📦 Build ArtifactsWorkflow Run: View Run Available Artifacts
How to DownloadOption 1: GitHub Web UI (easiest)
Option 2: GitHub CLI gh run download 22891213064 --repo smart-mcp-proxy/mcpproxy-go
|
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
"teams"→"server"in version output and/api/v1/status//go:build teams→//go:build serveracross all 58 Go source files-tags teams→-tags serverin Makefile, Dockerfile, and CI workflowmcpproxy-teams→mcpproxy-server, Make targetbuild-teams→build-servermcpproxy-teams→mcpproxy-serverNot renamed (internal code, no user-visible impact): Go package
internal/teams/, struct names (TeamsConfig), config JSON key"teams".Test plan
go build ./cmd/mcpproxy— personal edition compilesgo build -tags server ./cmd/mcpproxy— server edition compilesgo test -tags server ./internal/teams/...— all server tests passgo test ./internal/...— all personal tests pass (e2e timeout is pre-existing)mcpproxy-server versionshows(server)edition🤖 Generated with Claude Code