Skip to content
VS Code

SN MCP Server for VS Code

io.github.imjaineel/sn-mcp-server

Multi-instance read-only MCP server for ServiceNow

client:VS Code transport:stdio runtime:npm

Install SN MCP Server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "sn-instance-config",
      "description": "SN_INSTANCE_CONFIG",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sn-mcp-server-verbose",
      "description": "SN_MCP_SERVER_VERBOSE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sn-log-dir",
      "description": "SN_LOG_DIR",
      "password": true
    },
    {
      "type": "promptString",
      "id": "github-token",
      "description": "GITHUB_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "sn-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@imjaineel-dev/sn-mcp-server"
      ],
      "env": {
        "SN_INSTANCE_CONFIG": "${input:sn-instance-config}",
        "SN_MCP_SERVER_VERBOSE": "${input:sn-mcp-server-verbose}",
        "SN_LOG_DIR": "${input:sn-log-dir}",
        "GITHUB_TOKEN": "${input:github-token}"
      }
    }
  }
}

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

SN MCP Server in other clients