-
Notifications
You must be signed in to change notification settings - Fork 485
Add flags for publish subcommand #771
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Yuan325
wants to merge
1
commit into
modelcontextprotocol:main
Choose a base branch
from
Yuan325:publish-file
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,6 +5,7 @@ import ( | |
| "context" | ||
| "encoding/json" | ||
| "errors" | ||
| "flag" | ||
| "fmt" | ||
| "io" | ||
| "net/http" | ||
|
|
@@ -17,14 +18,21 @@ import ( | |
| ) | ||
|
|
||
| func PublishCommand(args []string) error { | ||
| publishFlags := flag.NewFlagSet("publish", flag.ExitOnError) | ||
| serverFile := publishFlags.String("file", "server.json", "Path to server.json (default: ./server.json)") | ||
| registryURLFlag := publishFlags.String("registry", "", "Registry URL override") | ||
| dryRun := publishFlags.Bool("dry-run", false, "Validate without publishing") | ||
| if err := publishFlags.Parse(args); err != nil { | ||
| return fmt.Errorf("failed to parse flags: %w", err) | ||
| } | ||
|
|
||
| // Check for server.json file | ||
| serverFile := "server.json" | ||
| if len(args) > 0 && !strings.HasPrefix(args[0], "-") { | ||
| serverFile = args[0] | ||
| serverFile = &args[0] | ||
| } | ||
|
|
||
| // Read server.json | ||
| serverData, err := os.ReadFile(serverFile) | ||
| serverData, err := os.ReadFile(*serverFile) | ||
| if err != nil { | ||
| if os.IsNotExist(err) { | ||
| return fmt.Errorf("server.json not found. Run 'mcp-publisher init' to create one") | ||
|
|
@@ -71,10 +79,17 @@ Migrate to the current schema format for new servers. | |
|
|
||
| token := tokenInfo["token"] | ||
| registryURL := tokenInfo["registry"] | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think the registryUrl probably won't be helpful as your token determines which registry you have authed to |
||
| if *registryURLFlag != "" { | ||
| registryURL = *registryURLFlag | ||
| } | ||
| if registryURL == "" { | ||
| registryURL = DefaultRegistryURL | ||
| } | ||
|
|
||
| if *dryRun { | ||
| return nil | ||
| } | ||
|
|
||
| // Publish to registry | ||
| _, _ = fmt.Fprintf(os.Stdout, "Publishing to %s...\n", registryURL) | ||
| response, err := publishToRegistry(registryURL, serverData, token) | ||
|
|
||
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My general philosophy is to avoid configuration options as much as possible - each additional flag is another lever of complexity to maintain, debug, document, etc. And they compose exponentially so you increase the surface area for problems a lot.
I can see this being helpful, although I'd ask first why: