Simple MCP server to perform tests
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"mcpdummyserverdotnet": {
"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 repository contains a minimal .NET server that exposes a Server-Sent Events (SSE) endpoint.
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.
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
Manage Supabase projects — databases, auth, storage, and edge functions
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.
Asynchronous coordination layer for AI coding agents: identities, inboxes, searchable threads, and advisory file leases over FastMCP + Git + SQLite
MCP Security Weekly
Get CVE alerts and security updates for MCPDummyServerdotnet and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
This repository contains a minimal .NET server that exposes a Server-Sent Events (SSE) endpoint.
net9.0 — install the matching SDK/runtime if needed)Open a terminal in the project root (where MCPServerDemo.csproj is located).
Run the app with:
dotnet run
After the app starts it will print the listening URLs to the console (for example Now listening on: http://localhost:5112). The SSE endpoint is available at:
http://localhost:/sse
Replace <port> with the port number shown in the console output.
Using curl (keep the connection open for streaming):
curl http://localhost:/sse -N
You can use ngrok to create a public HTTPS tunnel to your local app so the SSE endpoint is reachable from the internet.
Install ngrok from https://ngrok.com and add your authtoken (recommended):
ngrok config add-authtoken <YOUR_AUTHTOKEN>
Start your app on a known port. For example (PowerShell):
$env:ASPNETCORE_URLS = "http://localhost:5112"; dotnet run
Replace 5112 with the port your app is configured to use. If you already see the port in the console output, use that.
Start ngrok to forward that port (in a separate terminal):
ngrok http http://localhost:5112
ngrok will show a public HTTPS forwarding URL, for example:
Use the public HTTPS URL plus the /sse path to access the SSE endpoint from the internet:
https:///sse
Notes:
5112 with the correct port shown by dotnet run.Properties/launchSettings.json — use whatever port is being used by Kestrel/IIS Express.ASPNETCORE_URLS environment variable before running, or configure the URLs in appsettings.json / the host configuration.