Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: c1da92f517
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
|
|
||
| ```bash | ||
| # Set configuration values | ||
| docker mcp profile config <profile-id> --set key=value |
There was a problem hiding this comment.
Prefix profile config keys with server name in examples
The profile config examples use bare keys (--set key=value, --get key, --del key), but the command requires <serverName>.<configName> for all three operations; otherwise users get an immediate validation error (invalid config argument) from workingset.UpdateConfig (see pkg/workingset/config.go, argument parsing around strings.Cut(configArg, ".")). As written, readers following this section will hit failing commands instead of being able to configure a profile.
Useful? React with 👍 / 👎.
What I did
Updated the README to show profile usage.
Related issue
(not mandatory) A picture of a cute animal, if possible in relation to what you did