-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
44 lines (44 loc) · 1.36 KB
/
server.json
File metadata and controls
44 lines (44 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-09-29/server.schema.json",
"name": "io.github.Labs64/netlicensing-mcp",
"title": "NetLicensing MCP Server",
"description": "Labs64 NetLicensing MCP server for AI-driven software license lifecycle management.",
"version": "${VERSION}",
"homepage": "https://github.com/Labs64/NetLicensing-MCP",
"license": "Apache-2.0",
"packages": [
{
"registryType": "pypi",
"identifier": "netlicensing-mcp",
"version": "${VERSION}",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "NETLICENSING_API_KEY",
"description": "Your NetLicensing API key (leave empty to use demo credentials)",
"required": false
},
{
"name": "NETLICENSING_BASE_URL",
"description": "Override the NetLicensing API base URL",
"required": false,
"default": "https://go.netlicensing.io/core/v2/rest"
},
{
"name": "MCP_TRANSPORT",
"description": "Transport mode: stdio (default) or http",
"required": false,
"default": "stdio"
},
{
"name": "MCP_VERBOSE",
"description": "Enable verbose debug logging (true/false)",
"required": false,
"default": "false"
}
]
}
]
}