{
"mcpServers": {
"remote-mcp-servers-using-dotnet-sdk-integrating-with-custom-data-or-apis": {
"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 66 days ago.
Will it work with my client?
Transport: stdio. 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 Integrating With Custom Data Or APIs and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A comprehensive example demonstrating how to build Model Context Protocol (MCP) servers using the .NET SDK, showcasing integration with custom data sources and APIs. This project implements a weather forecast service as an example of how to expose your own APIs through MCP tools.
This project demonstrates how to create remote MCP servers that can be consumed by AI applications or clients (like Claude Desktop, VS Code Copilot, etc.) to extend their capabilities with custom tools and data sources. The example implementation includes a weather forecast service that showcases the integration pattern.
MCP servers really shine when they’re connected to existing APIs or services, allowing clients to query real, live data. There’s an expanding ecosystem of MCP servers that can already be used by clients, including tools we rely on daily like Git, GitHub, local filesystem, etc.
With that in mind, let’s level up our MCP server: plug it into an API, pass in some query params, and start returning responses that are actually driven by real data.
Model Context Protocol (MCP) is an open protocol that standardizes how applications provide context to Large Language Models (LLMs). It enables AI assistants to:
The project follows a clean architecture pattern:
┌─────────────────┐
│ MCP Client │ (Claude Desktop, Cursor IDE, Continue.dev, etc.)
└────────┬────────┘
│ HTTP/SSE
▼
┌─────────────────┐
│ ASP.NET Core │
│ Web Host │
└────────┬────────┘
│
▼
┌─────────────────┐
│ MCP Protocol │
│ Layer │
└────────┬────────┘
│
▼
┌─────────────────┐
│ MCP Tools │ (Weather, Ping, etc.)
└────────┬────────┘
│
▼
┌─────────────────┐
│ Your APIs & │
│ Data Sources │
└─────────────────┘
remote-MCP-servers-using-dotnet-sdk-integrating-with-custom-data-or-APIs/
├── src/
│ └── McpServer/
│ ├── McpServer/
│ │ ├── Program.cs # Application entry point
│ │ ├── appsettings.json # Configuration settings
│ │ ├── McpServerTools.cs # MCP tool implementations
│ │ └── Services/ # Business logic services
│ │ └── WeatherService.cs # Weather API integration
│ └── McpServer.sln
├── docs/ # Additional documentation
├── README.md
... [View full README on GitHub](https://github.com/azurecorner/remote-MCP-servers-using-dotnet-sdk-integrating-with-custom-data-or-APIs#readme)