Skip to content
Cursor

samplemcp server for Cursor

io.github.quangsumi/samplemcp-server

A sample MCP server that returns random weather descriptions.

client:Cursor transport:stdio runtime:nuget

Install samplemcp server in Cursor

~/.cursor/mcp.json · windows: %USERPROFILE%\.cursor\mcp.json

Held in this page only — never stored, logged, or sent anywhere but back to your screen.

{
  "mcpServers": {
    "samplemcp-server": {
      "type": "stdio",
      "command": "dnx",
      "args": [
        "Quangsumi.SampleMcpServer",
        "--yes"
      ],
      "env": {
        "WEATHER_CHOICES": "<WEATHER_CHOICES>"
      }
    }
  }
}

Use .cursor/mcp.json in a project root instead to scope it to that project. Cursor merges both. Cursor docs

samplemcp server in other clients