mcp-settings.json•908 B
{
"mcp.servers": {
"mcp-demo-server": {
"name": "MCP Demo Server",
"description": "A .NET Web API implementing Model Context Protocol server with tools for time, echo, and calculations",
"transport": {
"type": "http",
"baseUrl": "http://localhost:5000",
"auth": {
"type": "basic",
"username": "admin",
"password": "password123"
}
},
"capabilities": {
"tools": true,
"resources": true
},
"tools": [
{
"name": "get_time",
"description": "Get the current date and time"
},
{
"name": "echo",
"description": "Echo back the provided message"
},
{
"name": "calculate",
"description": "Perform basic arithmetic calculations (add, subtract, multiply, divide)"
}
]
}
}
}