Running One Shared Service¶
Streamable HTTP lets every local agent connect to one long-lived Bing Webmaster process instead of launching one STDIO child per session.
Prepare credentials¶
Place the credentials in a protected .env file beside the binary:
Start the service¶
The C# Native AOT binary uses the same arguments.
Lifecycle management¶
Use a platform service supervisor, or reuse the generic
manage-mcp-service.ps1
maintained for the native NexusLabs MCP servers:
.\manage-mcp-service.ps1 Start `
-ServiceName bing-webmaster-mcp `
-BinaryPath C:\path\to\bwt-mcp-go.exe `
-Port 8083
The manager health-checks before starting, serializes concurrent start attempts, records process identity, and uses a per-run authenticated loopback shutdown before falling back to terminating the verified process.
Configure Copilot CLI¶
{
"mcpServers": {
"bing-webmaster": {
"type": "http",
"url": "http://127.0.0.1:8083/mcp",
"tools": ["*"]
}
}
}
Remove command, args, and env from the HTTP entry because Copilot no
longer launches the process. Existing sessions retain their STDIO child until
they restart.
Network deployment¶
The generic manager is deliberately intended for loopback services. Non-loopback hosting requires a platform supervisor, TLS, authentication and authorization on every request, trusted proxy handling, and ingress limits.