FleetWP Docs
Developers

Automate FleetWP

Drive your fleet programmatically with the REST API, the CLI, and the MCP server for AI agents.

Everything you can do in the dashboard, you can do programmatically. FleetWP exposes three surfaces, all backed by the same token-authenticated REST API:

Base URL and auth

All three read the same two settings:

SettingDefaultPurpose
FLEETWP_URLhttps://app.fleetwp.ioBase URL of the FleetWP app
FLEETWP_TOKENYour API token (Bearer)

The REST API lives under ${FLEETWP_URL}/api/v1. Requests authenticate with a Bearer token — see Authentication to issue one.

API requests have no user session. Every request is scoped to the workspace that owns the token, and tokens carry a read or write scope — write actions require the write scope.

On this page