Merge branch 'fix/mcp-config-path'

This commit is contained in:
aj
2026-09-25 14:19:01 -04:00
2 changed files with 6 additions and 2 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
{ {
"mcpServers": { "mcpServers": {
"opennest": { "opennest": {
"command": "cmd", "command": "${USERPROFILE}/.claude/mcp/OpenNest.Mcp/OpenNest.Mcp.exe",
"args": ["/c", "C:/Users/AJ/.claude/mcp/OpenNest.Mcp/run.cmd"] "args": []
} }
} }
} }
+4
View File
@@ -1,9 +1,13 @@
using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting; using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
using OpenNest.Mcp; using OpenNest.Mcp;
var builder = Host.CreateApplicationBuilder(args); var builder = Host.CreateApplicationBuilder(args);
// stdout carries the JSON-RPC stream; console logs must go to stderr or they corrupt it.
builder.Logging.AddConsole(o => o.LogToStandardErrorThreshold = LogLevel.Trace);
builder.Services.AddSingleton<NestSession>(); builder.Services.AddSingleton<NestSession>();
builder builder
.Services.AddMcpServer() .Services.AddMcpServer()