We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f16e32b commit cdd4f29Copy full SHA for cdd4f29
src/mcphub/mcp_servers/params.py
@@ -181,7 +181,11 @@ def _load_servers_params(self) -> Dict[str, MCPServerConfig]:
181
package_name = server_config.get("package_name")
182
183
if not package_name:
184
- raise ValueError(f"package_name is required for server {mcp_name}")
+ raise ValueError(
185
+ f"Configuration for server '{mcp_name}' is missing the required 'package_name' field. "
186
+ "As of the latest update, all server configurations must explicitly include a 'package_name'. "
187
+ "Please update your configuration file to include this field."
188
+ )
189
190
# Get command and args with defaults
191
command = server_config.get("command", "npx")
0 commit comments