{
"mcpServers": {
"remote-mcp-servers-using-dotnet-sdk-vs-code-support": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
MIT. View license →
Is it maintained?
Last commit 46 days ago.
Will it work with my client?
Transport: stdio, sse, http. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for Remote MCP Servers Using Dotnet Sdk Vs Code Support and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
This project is a C# implementation of a Model Context Protocol (MCP) server that exposes weather forecast and health check tools. This server integrates with GitHub Copilot in VS Code, allowing AI assistants to call your custom tools.
This project demonstrates how to build an HTTP-based MCP server using the .NET SDK. The server exposes two tools:
remote-MCP-servers-using-dotnet-sdk-vs-code-support/
├── src/
│ └── McpServer/
│ └── McpServer/
│ ├── McpServerTools.cs # Tool definitions
│ ├── Program.cs # Server entry point
│ └── McpServer.csproj # Project file
├── .vscode/
│ └── mcp.json # MCP server configuration
└── README.md
Open a terminal in the project root and run:
dotnet run --project .\src\McpServer\McpServer\McpServer.csproj
You should see output indicating the server is running:
info: Microsoft.Hosting.Lifetime[14]
Now listening on: http://0.0.0.0:8081
Create or verify .vscode/mcp.json in your workspace:
{
"servers": {
"local-mcp-server": {
"url": "http://0.0.0.0:8081/mcp",
"type": "http"
}
}
}
Open Command Palette: Press Ctrl + Shift + P (Windows/Linux) or Cmd + Shift + P (Mac)
List MCP Servers: Type and select List MCP Servers
Select your server: Choose local-mcp-server from the list
Available actions:
mcp.jsonAfter starting the server, check the output panel for:
[info] Connection state: Running
[info] Discovered 2 tools
✅ If you see this, the server is ready to use!
⚠️ If you see warnings about tool descriptions, ensure all methods in McpServerTools.cs have [Description] attributes.
Once the server is running, test it using the ping tool in GitHub Copilot Chat:
Open chat windows and start conversation
Ask: "Ping the server"
Expected Response: ✅ MCP server is alive.
Ask your question
Approve and get result
Ask: "Ping the server with message 'Hello MCP'"
Expected Response: ✅ MCP server received: Hello MCP
Test the weather forecast functionality:
Ask: "What's the weather in London?"
Expected Response: Weather forecast data for London
Ask your question
Approve and get result
The `local-mcp-serve