# Labs64 NetLicensing — how to use (mcp.ai)

Connect your Labs64 NetLicensing account and use 2 tools for developer tools straight from your AI agent. Connect with your own API key. Labs64 NetLicensing is a license management software designed to help software vendors and developers efficiently manage their software licenses and distribution.

## Option A — via MCP (recommended)
Remote MCP endpoint (HTTP, streamable): `https://api.mcp.ai/p_labs64_netlicensing?ms=1787293620000`
Add it as a custom/remote MCP connector in your client (Claude, Cursor, VS Code…), then authenticate when prompted. Once connected, ask the agent to use the server's tools (e.g. `labs64_netlicensing_license_list`).

## Option B — via direct REST API
Base URL: `https://api.mcp.ai/api/labs64_netlicensing`
Auth: `Authorization: Bearer sk_live_…` — create a workspace API key at https://mcp.ai/settings/api-keys
Discover endpoints: `GET https://api.mcp.ai/api/labs64_netlicensing/_endpoints`

### Endpoints
- `POST https://api.mcp.ai/api/labs64_netlicensing/license/list` — Tool to list all licenses. Use when you need to retrieve license records with optional filtering and pagination.
  - body: { filter?: string, pageSize?: integer, pageNumber?: integer, licenseType?: string, productNumber?: string, licenseeNumber?: string }
- `POST https://api.mcp.ai/api/labs64_netlicensing/product/list` — Tool to retrieve a list of all products. Use after authenticating with NetLicensing.
  - body: { filter?: string, pageSize?: integer, pageNumber?: integer }

## Example prompts
- "What can I do in Labs64 NetLicensing?"
- "Show me a summary of my Labs64 NetLicensing account"

## More
- Page: https://mcp.ai/labs64_netlicensing
- Agent spec (llms.txt): https://mcp.ai/labs64_netlicensing/llms.txt
- Postman collection: https://mcp.ai/labs64_netlicensing/postman.json
