Skip to content
VS Code

NOC.McpServer for VS Code

io.github.nice-one-code/noc.mcpserver

MCP server exposing NiceOneCode's JSON-to-C# converter as an AI-callable tool.

client:VS Code transport:stdio runtime:nuget

Install NOC.McpServer in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "noc-userid",
      "description": "NOC_USERID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "noc-password",
      "description": "NOC_PASSWORD",
      "password": true
    }
  ],
  "servers": {
    "noc.mcpserver": {
      "type": "stdio",
      "command": "dnx",
      "args": [
        "NOC.McpServer",
        "--yes"
      ],
      "env": {
        "NOC_USERID": "${input:noc-userid}",
        "NOC_PASSWORD": "${input:noc-password}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

NOC.McpServer in other clients