Skip to content

Instantly share code, notes, and snippets.

@EngincanV
Created April 9, 2025 09:57
Show Gist options
  • Save EngincanV/fdc74ac6164fc779d48a7c04d3055702 to your computer and use it in GitHub Desktop.
Save EngincanV/fdc74ac6164fc779d48a7c04d3055702 to your computer and use it in GitHub Desktop.
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
var builder = Host.CreateEmptyApplicationBuilder(null);
// Add MCP server
builder.Services
.AddMcpServer()
.WithStdioServerTransport()
.WithToolsFromAssembly();
var app = builder.Build();
await app.RunAsync();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment