Plori MCP Server

Create and drive plori cloud agents (each an AI agent on its own cloud computer) over MCP.

Local serverstdio

What is the Plori MCP server?

If you already use Plori, the plori mcp server is the piece that lets your assistant work with it directly. Create and drive plori cloud agents (each an AI agent on its own cloud computer) over MCP.

What the server does

plori provides the agent: each one gets a persistent machine with a real disk, real tools, and memory of its own. Idle agents scale to zero. You talk to your agents in the web app, or drive them from your own tools over MCP and REST.

Installation

The server ships on npm as plori-mcp, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • Agents — list, inspect, create, and delete agents; pick the model an agent runs
  • Runs — invoke an agent and read its reply (blocking or fire-and-forget), list
  • Human-in-the-loop — list an agent's pending questions and answer them
  • Scheduling — schedule a deferred run so an agent works while you are away
  • Workflows — list every workflow or filter by holding agent / the unassigned bucket

Worth knowing first

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Where it fits

This sits in the developer tooling group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Plori's toolset — Agents, Runs, Human-in-the-loop and 2 more — is a fair guide to whether it matches your workflow. It is maintained by ai.plori; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Plori's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Available tools

ToolWhat it does
Agentslist, inspect, create, and delete agents; pick the model an agent runs.
Runsinvoke an agent and read its reply (blocking or fire-and-forget), list
Human-in-the-looplist an agent's pending questions and answer them.
Schedulingschedule a deferred run so an agent works while you are away.
Workflowslist every workflow or filter by holding agent / the unassigned bucket

How to install the Plori MCP server

{
  "mcpServers": {
    "plori": {
      "command": "npx",
      "args": ["-y", "plori-mcp"]
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Example prompts to try

  • Use Plori to Agents.
  • Use Plori to Runs.
  • Use Plori to Human-in-the-loop.

Frequently asked questions

It connects Plori to MCP-compatible AI assistants such as Claude and Cursor, exposing 5 tools (Agents, Runs, Human-in-the-loop, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Plori directly.