Skip to content
VS Code

NetLicensing MCP Server for VS Code

io.github.labs64/netlicensing-mcp

Labs64 NetLicensing MCP server for AI-driven software license lifecycle management.

client:VS Code transport:stdio runtime:pypi

Install NetLicensing MCP Server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "netlicensing-api-key",
      "description": "NETLICENSING_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "netlicensing-base-url",
      "description": "NETLICENSING_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mcp-transport",
      "description": "MCP_TRANSPORT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mcp-verbose",
      "description": "MCP_VERBOSE",
      "password": true
    }
  ],
  "servers": {
    "netlicensing-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "netlicensing-mcp"
      ],
      "env": {
        "NETLICENSING_API_KEY": "${input:netlicensing-api-key}",
        "NETLICENSING_BASE_URL": "${input:netlicensing-base-url}",
        "MCP_TRANSPORT": "${input:mcp-transport}",
        "MCP_VERBOSE": "${input:mcp-verbose}"
      }
    }
  }
}

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

NetLicensing MCP Server in other clients