M

Model Context Protocol

Local Gateway Server

Online

Available MCP Tools

These tools are registered and available to any connected Claude Desktop or custom MCP client.

demo_echo Utility

Echoes back the input message. Ideal for testing connectivity and verifying prompt arguments flow correctly.

Expected Arguments:

{
  "message": "string (Required)"
}
demo_calculate Math

Performs basic arithmetic operations (addition, subtraction, multiplication, division) between two numbers.

Expected Arguments:

{
  "a": "number (Required)",
  "b": "number (Required)",
  "op": "string (Optional, defaults to +)"
}

Quickstart Client Integration

Connect to this server using one of the following methods.

{
  "mcpServers": {
    "local-mcp-server": {
      "command": "dotnet",
      "args": [
        "run",
        "--project",
        "c:/Users/varsha.oberoi/Desktop/mylist/McpServerApp.csproj"
      ]
    }
  }
}

Add this snippet to your claude_desktop_config.json under the mcpServers key, then restart Claude.