Conversation
…680) - Publish (SMI-1549): In non-TTY/JSON mode, spawn a background watcher that polls deployment status and writes logs to a temp file. The CLI returns immediately with structured JSON (deploymentId, logFile, statusUrl) so agents can check progress later via `cat <logFile>`. - Install/Uninstall (#680): Skip interactive restart prompt in non-TTY to prevent indefinite hangs. In JSON mode, suppress spinners and output structured JSON result instead of colored text. - Search: Add --namespace flag to `smithery mcp search` to filter registry results by namespace (e.g. `smithery mcp search --namespace arjunkmrm`). - Shared spinner utility: Add createSpinner() that returns a no-op in JSON mode, avoiding timers/intervals and noisy stderr writes. Introduce Spinner interface to replace the yocto-spinner type leak. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Merged
arjunkmrm
pushed a commit
that referenced
this pull request
Mar 18, 2026
Automated Release PR --- ## [4.7.3](v4.7.2...v4.7.3) (2026-03-18) ### Bug Fixes * agent-friendly publish, install, and search commands (SMI-1549, [#680](#680)) ([#704](#704)) ([4872b6c](4872b6c)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: smithery-chore-bot[bot] <259537197+smithery-chore-bot[bot]@users.noreply.github.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
catlater. Background watcher has safety limits: 10-minute timeout and max 3 consecutive API errors before exiting.--namespaceflag tosmithery mcp searchfor filtering by namespace (e.g.smithery mcp search --namespace arjunkmrm).createSpinner()returns a no-op in JSON mode — no timers, no intervals, no stderr noise. Introduces aSpinnerinterface to replace theReturnType<typeof yoctoSpinner>type leak.Test plan
pnpm test— 366 tests passnpx biome check— cleanecho "" | smithery mcp add arjunkmrm/simple-echo --client claude-code→ returns JSON, no hangecho "" | smithery publish <url> --name gerbil-fmYE/test-agent-publish→ returns JSON immediately, background watcher writes to log file, release succeedssmithery mcp search --namespace arjunkmrm→ returns 7 serverscat <logFile>shows full deployment logs including successCloses #680
Relates to SMI-1549
🤖 Generated with Claude Code