Hmbown/CodeWhale · error
MCP server '{name}' not found
Error message
MCP server '{name}' not found What it means
Error "MCP server '{name}' not found" thrown in Hmbown/CodeWhale.
Source
Thrown at crates/tui/src/lib.rs:8586
.await
.is_ok_and(|support| support.is_some())
{
println!(
"OAuth is available for '{name}'. Run `codewhale mcp login {name}` to authenticate."
);
}
Ok(())
}
McpCommand::Login { name, scopes } => {
let cfg = crate::mcp::load_config_with_workspace_and_plugins(
&config_path,
workspace,
plugins,
)?;
let server = cfg
.servers
.get(&name)
.ok_or_else(|| anyhow!("MCP server '{name}' not found"))?;
let explicit_scopes = (!scopes.is_empty()).then_some(scopes);
crate::mcp::oauth::perform_oauth_login_for_server(
&name,
server,
explicit_scopes,
config.mcp_oauth_callback_port,
config.mcp_oauth_callback_url.as_deref(),
)
.await?;
println!("Stored OAuth credentials for MCP server '{name}'.");
Ok(())
}
McpCommand::Logout { name } => {
let cfg = crate::mcp::load_config_with_workspace_and_plugins(
&config_path,
workspace,
plugins,
)?;View on GitHub (pinned to 8880682c63)
When it happens
Trigger: Thrown at crates/tui/src/lib.rs:8586 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of Hmbown/CodeWhale@8880682c63 (2026-08-16).
Data as JSON: /api/errors/a68f5077737fd58f.
Report an issue: GitHub.