- Curated
github,notion, andlinearservices — official OAuth-remote (streamable HTTP) MCP servers that install out of the box. - New
mcp-wire doctorcommand that prints read-only diagnostics: detected targets and their config paths, feature flag state, mcp-wire config/credentials/services/registry-cache paths, and hints for missing targets or disabled features. - New
mcp-wire metadatacommand that prints a stable, machine-readable JSON document for automation and AI agents: supported transports and scopes, every target (install status, config path, supported scopes, OAuth support), every service (transport, auth requirement, environment variables), and feature-flag state. Defaults to curated services; use--source registryor--source allto include registry services.
- TUI service list now shows a metadata line under each service — source, transport, install method, and auth requirement (e.g.
curated · http · remote · OAuth) — so curated and registry services are easier to compare while browsing. - Contributor workflow: PRs that change user-visible code (
internal/,cmd/,services/, orREADME.md) must add an entry under## [Unreleased]inCHANGELOG.md. A new CI check enforces this; opt out with theskip-changeloglabel or[no-changelog]in the PR title for genuinely non-user-visible changes.
- Gemini CLI is no longer a supported target. The
geminitarget slug, its config writer for~/.gemini/settings.json, and all related CLI/TUI references have been removed. Existing Gemini configs on disk are left untouched; uninstall or remove entries manually if needed.
- Credentials directory (
~/.config/mcp-wire/) is now re-tightened to mode0700on every credential store, not only when it is first created, so pre-existing directories with broader permissions are corrected automatically. - Documented credential storage expectations in
README.md: where credentials live, the file/directory permissions used, the resolution order, and that values are stored in plaintext.
- Redesigned uninstall flow: users now pick the target first, then choose from only the services installed there, instead of browsing the full catalog.
- Review screen now shows an explicit "Action" line and uses "Install"/"Uninstall" button labels instead of the generic "Apply".
- Plain-text (non-TUI) uninstall wizard also follows the new target-first flow.
- Gemini CLI target: install MCP services into
~/.gemini/settings.jsonwith support for stdio, SSE, and streamable HTTP transports.
- Full-screen Bubble Tea TUI replacing the survey-based interactive UI. Screens: main menu, source selection, live-filtered service selection with async catalog loading and registry sync status polling, registry trust warning with metadata display and explicit confirmation, target multi-select with scope selection, review summary with equivalent command and Apply/Cancel confirmation, credential prompting with apply progress, and post-uninstall credential removal prompt.
- TUI credential screen prompts for unresolved env vars sequentially with masked input, setup URL/hint display, Ctrl+O to open URLs, and optional save-to-credential-store prompt.
- TUI apply screen shows per-target install/uninstall progress with status indicators (pending/running/done/failed), equivalent command output, OAuth manual auth hints, and post-completion navigation (Install another / Back to menu / Exit).
- Registry cache now syncs in the background on CLI startup (when the registry feature is enabled), so registry flows can start from cached results and refresh incrementally without blocking command execution.
- Added
mcp-wire cache clearto remove the local registry cache file and recover quickly from stale/corrupt cache state. - Registry entries with package-based install methods (
npm,pypi,docker/oci,nuget,mcpb) can now be installed end-to-end as stdio services, mapping registry package metadata into command + args configs. - Selecting a registry entry now fetches the latest version details from the
versions/latestAPI endpoint, ensuring installs always use the most recent package version and metadata. - Explicit install path (
mcp-wire install <name>) now falls back to the registry catalog when no curated service matches, enabling direct reinstall of registry entries from guided-mode equivalent commands. - Package runtime arguments with input-style variables (named args without literal values) now create env var placeholders that are prompted and substituted at install time.
- Registry entries with
streamable-httporsseremotes can now be installed end-to-end: URL/header variable prompting, placeholder substitution, and per-target config generation. Servicemodel now carries explicitHeaders(for registry remote header templates) andEnvVar.Default(for variable defaults from the registry schema).- Claude Code target emits a
headersmap in server config when explicit headers are defined. - OpenCode target uses explicit
svc.Headersfor registry remotes instead of deriving headers from resolved env vars. --no-promptmode now silently applies default values for required and optional env vars, enabling non-interactive installs of registry services with defaulted variables.
- Removed
status,list services, andlist targetsCLI commands and their TUI menu entries. The guided menu now shows only Install, Uninstall, and Exit. - Removed
AlecAivazis/survey/v2dependency and all survey-based UI code, completing the transition to the Bubble Tea TUI.
- Registry service picker UX reworked for discoverability: clearer filter prompt, predictable list focus, and cleaner empty-filter handling.
- Registry rejection message for entries with no supported install method now reads "no supported install method" instead of the package-specific message.
- Duplicate env vars from URL and header variables are now merged with OR on
Required. applyRegistrySubstitutionsnow substitutes{varName}placeholders in service args (for package-based installs) in addition to URL and headers.
- Install, uninstall, and status flows are now scope-aware for Claude Code, with explicit
--scopesupport (effective,user,project) and guided prompts where applicable. - Renamed the Claude Code target slug from
claudecodetoclaudeto align with the official CLI naming. - OAuth UX now provides clearer follow-up guidance, including a Claude-specific
/mcpnext-step hint when automatic CLI auth is unavailable. - Post-install output now highlights next steps and equivalent commands more clearly in guided flows.
- Added first-class
httptransport support across service validation and target config generation (alongsidesseandstdio). - Bundled OAuth services (
jira,sentry,context7) now usetransport: http, and contributor docs were updated with clearer transport guidance and examples.
- Bundled service YAML files are now embedded into the binary, so
mcp-wirecan always list and install built-in services even when no externalservices/directory is present. - Install flows now automatically trigger OAuth authentication for OAuth-marked services on targets that support it (currently Codex and OpenCode) when running interactively.
- Added a bundled
playwrightservice definition using the official stdio setup (npx @playwright/mcp@latest) compatible with Claude Code, Codex, and OpenCode.
- Service definitions now support an optional
authfield (for exampleauth: oauth) to drive post-install authentication behavior. - Guided target selection now starts with no preselected targets, so users explicitly choose where to install.
- Survey target picker now documents quick controls (
Rightto select all,Leftto clear all), while plain prompts require explicit target numbers (orall). - Guided Survey wizards now support
Escback navigation (review -> targets, targets -> service, service -> cancel wizard). - Pressing
Escin the guided main menu now keeps the user in the menu instead of failing the prompt.
- Guided interactive UX with Survey for TTY sessions, including a main menu and step-by-step install/uninstall wizards.
- Service and target selection now support filtering, multi-select, review, and equivalent command output.
- Expanded CLI test coverage for guided flows, interactive selection paths, and install output behavior.
- README now includes an interactive terminal walkthrough at the top.
- Bundled
jira,sentry, andcontext7services now use OAuth-first remote endpoints, removing install-time env credential requirements. - Hidden credential input UX now keeps cursor visibility and prints explicit guidance before masked entry (
Input hidden. Paste and press Enter.). - Install output no longer prints target-native OAuth commands; guided output focuses on
mcp-wireworkflow and equivalent command hints. - Disabled
setup-gocache in CI and release workflows for more deterministic pipeline behavior.
- Core CLI commands for MCP management:
list,install,uninstall, andstatus. - Service definition system with YAML loading, validation, and layered resolution from bundled plus user-local directories.
- Target support for Claude Code, Codex, and OpenCode with safe config updates that preserve unknown keys.
- Credential resolution chain with environment and file store support, plus interactive prompting for required values.
- Initial bundled service definitions:
context7,jira, andsentry. - Integration test harness (
make test-integration) and expanded unit test coverage across services, targets, credentials, and CLI flows. - Release automation with GoReleaser, GitHub release workflow, and Homebrew tap publication.
- Claude Code config handling now supports both
~/.claude.jsonand~/.claude/settings.json, and status discovery includes project-scoped MCP entries. - OpenCode config parsing now accepts JSONC-style syntax in both
.jsonand.jsoncconfiguration files. - README and contributor guidance were expanded with current implementation status, installation instructions, and release workflow details.