IT TrackrDocsAPI & MCPMCP server for AI tools
Back to docs
API & MCP

MCP server for AI tools

How to connect IT Trackr to Claude, Cursor, and other AI tools via the MCP protocol.

IT Trackr includes an MCP (Model Context Protocol) server that lets you query your asset data directly from AI tools like Claude Desktop and Cursor. Available on Pro and Enterprise plans.

Claude Desktop setup

Add the following to your Claude Desktop config file:

claude_desktop_config.json
{
  "mcpServers": {
    "ittrackr": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://www.ittrackr.com/api/mcp"],
      "env": { "AUTHORIZATION": "Bearer <your_read_only_api_key>" }
    }
  }
}

Available tools

  • list_assets — list all assets with filters
  • get_asset — get full details for a single asset
  • list_employees — list all employees
  • get_employee_assets — get all assets assigned to an employee
  • list_licenses — list all software licences
  • list_domains — list all domains
  • get_asset_assignment_history — full assignment history for an asset
  • get_inventory_summary — overview stats for your entire inventory

Use a read-only API key for AI tool integrations. This limits the AI to reading data and prevents accidental writes.

Was this article helpful?