{
"mcpServers": {
"mcpserverdemo": {
"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.
Building and Debugging Your First MCP Server in .NET
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 60 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 McpServerDemo and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A barebones .NET 10 MCP (Model Context Protocol) server demonstrating how to expose tools for AI assistants like Claude Desktop, Cursor, and VS Code Continue.
cd src/McpServerDemo.WebApi
dotnet run
The server will start on http://localhost:5125 with the SSE endpoint at http://localhost:5125/sse.
npx @modelcontextprotocol/inspector
Open http://localhost:6274 and connect to http://localhost:5125/sse.
Download from https://mcp-explorer.com and connect to http://localhost:5125/sse.
Edit %APPDATA%\Claude\claude_desktop_config.json:
{
"mcpServers": {
"demo-docs": {
"command": "npx",
"args": ["mcp-remote", "http://localhost:5125/sse"]
}
}
}
In Settings → MCP:
{
"mcpServers": {
"demo-docs": {
"url": "http://localhost:5125/sse",
"transport": "sse"
}
}
}
Create ~/.continue/mcpServers/demo-docs.yaml:
name: Demo Docs
version: 0.0.1
schema: v1
mcpServers:
- name: demo-docs
type: sse
url: http://localhost:5125/sse
McpServerDemo/
├── McpServerDemo.sln
└── src/
└── McpServerDemo.WebApi/
├── Program.cs # MCP server configuration
├── Tools/
│ └── SearchDocs.cs # MCP tool implementation
├── Services/
│ ├── IDocumentSearchService.cs
│ ├── DocumentSearchService.cs
│ ├── ILlmService.cs
│ └── LlmService.cs
└── Properties/
└── launchSettings.json
To add more tools, create a new class in the Tools folder with the [McpServerToolType] attribute and methods decorated with [McpServerTool].
[McpServerToolType]
public class MyNewTool
{
[McpServerTool]
[Description("Does something useful")]
public async Task<string> DoSomething(
[Description("Input parameter")] string input)
{
// Implementation
}
}
MIT