Skip to main content
Glama
BigfootBytes

threatlocker-mcp-server

by BigfootBytes

ThreatLocker Computers

computers
Destructive

Query ThreatLocker endpoints by user, IP, or group, review protection status and check-in history, and run maintenance actions like isolation, lockdown, or restart.

Instructions

Query and inspect ThreatLocker computers.

Common workflows:

  • Find computers by logged-in user: action=list, searchBy=2, searchText="username"

  • Find computers by IP: action=list, searchBy=4, searchText="192.168.1.100"

  • List computers needing review: action=list, kindOfAction="NeedsReview"

  • Get computer details by ID: action=get, computerId="..."

  • View check-in history: action=checkins, computerId="..."

  • Get installation info for new deployments: action=get_install_info

  • Rename / re-group a computer: action=edit, computerId="...", computerGroupId="...", name="..."

  • Move a computer to another org: action=move_org, computerId="...", computerGroupId="...", organizationId="...", osType=1, targetComputerGroupId="...", targetOrganizationId="..."

  • Remove computers from the Portal: action=delete, deleteComputers=[{computerId, computerName, organizationId}] (same org; does NOT uninstall)

  • Restart every agent in the org: action=restart_org (includeChildOrganizations=true also hits child orgs)

  • Remove duplicate records: action=remove_duplicate

Pitfalls:

  • get returns the editable computer record, not live protection state; read current mode/isolation from list results or maintenance_mode history.

  • This is the triage entry point: find a box here, grab its computerId/organizationId/computerGroupId, then hand off to maintenance_mode, approval_requests, or action_log.

Permissions: View Computers, Edit Computers (for modifications), Install Computers (for install info). Pagination: list and checkins actions are paginated (use fetchAllPages=true to auto-fetch all pages). Key response fields: computerId, computerName, computerGroupName, lastCheckin, action (Secure/Installation/Learning/MonitorOnly), threatLockerVersion.

Related tools: computer_groups (manage groups), maintenance_mode (maintenance history), action_log (audit events)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNoNew computer name (required for edit action).
actionYeslist=search computers, get=details by ID, checkins=connection history, get_install_info=deployment info, isolate=cut network (Detect+Agent>=8.2), lockdown=block executions+isolate, enable_protection=re-secure / clear isolation, baseline_rescan=re-profile system files, restart_service=restart the ThreatLocker agent service, edit=rename/move-group/proxy settings, move_org=move a computer to another organization, delete=remove computers from the Portal (does NOT uninstall), restart_org=restart every computer in the org, remove_duplicate=remove duplicate computer records
osTypeNomove_org: OS type of the computer (1=Windows, 2=macOS, 3=Linux, 5=Windows XP).
endDateNoIsolation/lockdown window end (ISO 8601 UTC).
optionsNoedit: ThreatLocker option names to set on the computer.
orderByNoField to sort by (default: computername)
pageSizeNoResults per page (default: 25, max: 500)
proxyURLNoedit: full proxy URL (proxyServerOption + proxyUrlEntry).
searchByNoField to search by: 1=Computer/Asset Name, 2=Username, 3=Computer Group Name, 4=Last Check-in IP, 5=Organization Name
permitEndNoRe-secure automatically at window end (default: true).
startDateNoIsolation/lockdown window start (ISO 8601 UTC).
computerIdNoComputer GUID (required for get, checkins, isolate, lockdown, enable_protection). Find via list action first.
pageNumberNoPage number (default: 1)
searchTextNoSearch text for list action
isAscendingNoSort ascending (default: true)
kindOfActionNoAdditional filter for computer state
action_filterNoFilter by computer mode for list action
applicationIdNoApplication scope for isolation: "autocomp" (default), "autogroup", or an application GUID.
computerGroupNoComputer group GUID for list action. Find via computer_groups first.
fetchAllPagesNoFetch all pages automatically (max 10 pages). Default: false (single page).
hideHeartbeatNoHide heartbeat entries for checkins action
proxyUrlEntryNoedit: proxy host, e.g. "proxy.example.com".
enableLearningNoEnable a learning window during baseline_rescan (default: false).
organizationIdNoOwning organization GUID (required for isolate/lockdown/enable_protection).
useProxyServerNoedit: enable a proxy server (default: false).
computerGroupIdNoComputer group GUID for isolate/lockdown/enable_protection (optional).
deleteComputersNodelete: computers to remove from the Portal. ALL must be in the same organization. Removes from Portal only — does not uninstall the agent.
response_formatNoOutput format: markdown (default, human-readable) or json (structured)markdown
proxyServerOptionNoedit: proxy protocol, e.g. "https://".
childOrganizationsNoInclude child organizations (default: false)
enableLearningRescanNomove_org: enable Learning + baseline rescan after the move (default: false).
targetOrganizationIdNomove_org: destination organization GUID.
targetComputerGroupIdNomove_org: destination computer group GUID.
includeChildOrganizationsNorestart_org/remove_duplicate: also affect child organizations (default: false).

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
dataNoResponse data — shape varies by action
errorNo
successYes
paginationNo
Install Server

TDQS

A4.9/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already flag destructive/non-readOnly behavior, and the description reinforcees and expands this with critical nuances: delete removes from Portal but does NOT uninstall, get returns editable record not live protection state, restart_org can hit child orgs, and remove_dupicate is for duplicate records. No contradiction with annotations; the description adds material safety-relevant behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Well-organized into labeled sections: Common workflows, Pitfalls, Permissions, Pagination, Key response fields, Related tools. Front-loaded with the primary purpose, then bullet lists that are easy to scan. It is long, but appropriate for a 34-parameter multi-action tool where every section adds load-bearing information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the large parameter count, output schema, and annotations, the description covers the essential operational context: how to find computers, what each major action does, permissions needed, pagination behavior, key response fields, and related tools. No critical gap that would leave an agent guessing how to invoke the tool for common workflows.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the baseline is 3, but the description adds real value by combining parameters into workflows (e.g. deleteComputers all in same org, fetchAllPages for paginated list/checkins, move_org requires osType + target ids). It doesn't fully enumerate every action's required parameter set, but the workflows and pitfalls cover the most important combinations.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Opens with a clear verb + resource ('Query and inspect ThreatLocker computers') and the workflow list gives concrete action+parameter combinations for each major operation. The Related tools section explicitly names computer_groups, maintenance_mode, and action_log, distinguishing this tool from its siblings. Although the opening phrase 'Query and inspect' slightly undersells the mutating/delete actions, the workflow list quickly disambiguates.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides explicit when-to-use guidance with exact action+parameter recipes, e.g. 'Find computers by logged-in user: action=list, searchBy=2, searchText="username"'. Pitfalls direct agents away from get for live state and toward list or maintenance_mode history. It also positions the tool as the triage entry point and recommends hand-off to maintenance_mode, approval_requests, or action_log.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/BigfootBytes/threatlocker-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server