Skip to content

Commit 244698c

Browse files
author
Mitch Denny
committed
Make get_integration_docs not rely on the apphost being alive.
1 parent 6ed99c4 commit 244698c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Aspire.Cli/Commands/McpStartCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ private async ValueTask<CallToolResult> HandleCallToolAsync(RequestContext<CallT
104104
if (_tools.TryGetValue(toolName, out var tool))
105105
{
106106
// Handle tools that don't need an MCP connection to the AppHost
107-
if (toolName is "select_apphost" or "list_apphosts" or "list_integrations" or "get_resource_docs")
107+
if (toolName is "select_apphost" or "list_apphosts" or "list_integrations" or "get_integration_docs")
108108
{
109109
return await tool.CallToolAsync(null!, request.Params?.Arguments, cancellationToken);
110110
}

0 commit comments

Comments
 (0)