fix(clp-package): Update mcp_server config in etc/clp-config.yml to match defaults in CLPConfig.#1515
Conversation
WalkthroughThe mcp_server configuration in the CLP config template is updated by replacing a commented-out configuration block containing host, port, and logging_level properties with a single null assignment, effectively disabling the mcp_server configuration. Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes
Pre-merge checks and finishing touches❌ Failed checks (1 warning)
✅ Passed checks (2 passed)
✨ Finishing touches
🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
kirkrodrigues
left a comment
There was a problem hiding this comment.
For the PR title, how about:
fix(clp-package): Update `mcp_server` config in `etc/clp-config.yml` to match defaults in `CLPConfig`.
Similarly, it's worth updating the PR description to indicate that the reason for the change is because etc/clp-config.yml didn't respect the defaults specified in CLPConfig. When the etc/clp-config.yml is fully commented, the CLP package will use the defaults from CLPConfig. When etc/clp-config.yml is uncommented, we want the CLP package's behaviour to remain identical (unless, of course, the user changes some config).
mcp_server config in etc/clp-config.yml to match defaults in CLPConfig.
addressed. |
Description
The current default configuration for
mcp-serverinclp-config.ymlis:which does not respect the default specification in
CLPConfigwhich isNone.This PR changes the default to:
making the default configuration for
mcp-serverconsistent with the default configuration inCLPConfig.The defaults of
etc/clp-config.ymlandCLPConfigneed to be consistent, since a fully commentedetc/clp-config.ymlmakes the CLP package useCLPConfig’s defaultsThus, this PR makes CLP Package's behaviour when
etc/clp-config.ymlis uncommented (but unmodified) to be same as whenetc/clp-config.ymlis left commented.Checklist
breaking change.
Validation performed
Summary by CodeRabbit
Release Notes