{
"mcpServers": {
"dot-net-sse-mcp-server": {
"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.
License not specified.
Is it maintained?
Last commit 236 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 Dot Net Sse Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A modern .NET 9.0 web API that implements the Model Context Protocol (MCP) server with Server-Sent Events (SSE) transport, providing a comprehensive student management system with both REST API endpoints and MCP tools.
Clone the repository
git clone https://github.com/yourusername/dot-net-sse-mcp-server.git
cd dot-net-sse-mcp-server
Navigate to the project directory
cd StudentWebAPIWithMCPServer
Restore dependencies
dotnet restore
Run the application
dotnet run
The application will start on https://localhost:7000 (or the configured port in launchSettings.json).
Once the application is running, you can access:
https://localhost:7000/swaggerhttps://localhost:7000/openapi.jsonThe server exposes the following MCP tools:
| Tool | Description | Parameters |
|------|-------------|------------|
| GetAllStudents | Retrieves all students | None |
| GetStudentById | Gets a specific student by ID | id (int) |
| GetStudentsByMajor | Filters students by major | major (string) |
| GetStudentsWithGpaAbove | Gets students with GPA above threshold | minGpa (double) |
| AddStudent | Adds a new student | id, firstName, lastName, dateOfBirth, email, gpa, major |
| GetStudentStatistics | Returns comprehensive statistics | None |
| GetStudentsWithFields | Returns students with specified fields only | fieldsToInclude (List) |
| Method | Endpoint | Description |
|--------|----------|-------------|
| POST | /Student/GetAllStudents | Get all students |
| POST | /Student/GetStudentById | Get student by ID |
| POST | /Student/GetStudentsByMajor | Filter by major |
| POST | /Student/GetStudentsWithGpaAbove | Filter by minimum GPA |
| POST | /Student/AddStudent | Add new student |
| POST | /Student/GetStudentStatistics | Get statistics |
| POST | /Student/GetStudentsWithFields | Get students with specific fields |
curl -X POST "https://localhost:7000/Student/GetAllStudents" \
-H "Content-Type: application/json"
curl -X POST "https://localhost:7000/Student/AddStudent" \
-H "Content-Type: application/json" \
-d '{
"id": 7,
"firstName": "Alice",
"lastName": "Johnson",
"dateOfBirth": "2002-04-15",
"email": "alice.j@university.edu",
"gpa": 3.85,
"major": "Computer Science"
}'
curl -X POST "https://localhost:7000/Student/GetStudentsByMajor" \
-H "Content-Type: application/json" \
-d '"Computer Science"'
public class Student
{
public int Id { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public DateTime DateOfBirth { get; set; }
public string Email { get; set; }
public double GPA { get; set; }
public string Major { g
... [View full README on GitHub](https://github.com/srijonchakraborty/dot-net-sse-mcp-server#readme)