MCPpedia last refreshed this data
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"remote-mcp-servers-using-dotnet-sdk-vs-code-support": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
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.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in developer-tools
Context7 Platform -- Up-to-date code documentation for LLMs and AI code editors
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
MCP server for using the GitLab API
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