Point API client at the deployed service port and clear logging providers to prevent interference with MCP stdio transport. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
25 lines
678 B
C#
25 lines
678 B
C#
using CutList.Mcp;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Extensions.Hosting;
|
|
using Microsoft.Extensions.Logging;
|
|
using ModelContextProtocol.Server;
|
|
|
|
var builder = Host.CreateApplicationBuilder(args);
|
|
|
|
// Register HttpClient for API calls to CutList.Web
|
|
builder.Services.AddHttpClient<ApiClient>(client =>
|
|
{
|
|
client.BaseAddress = new Uri("http://localhost:5270");
|
|
});
|
|
|
|
// Suppress all logging so it doesn't interfere with MCP stdio transport
|
|
builder.Logging.ClearProviders();
|
|
|
|
builder.Services
|
|
.AddMcpServer()
|
|
.WithStdioServerTransport()
|
|
.WithToolsFromAssembly(typeof(Program).Assembly);
|
|
|
|
var app = builder.Build();
|
|
await app.RunAsync();
|