three.ws Autopilot
NPM · @THREE-WS/AUTOPILOT-MCP · SCANNED AUG 3
Set autopilot scopes and a daily SOL spend cap, then propose, execute, and undo agent actions.
Available components
How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →
Supply Chain Security87
- No malware found by supply-chain analysis.Pass
- Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.Partial
- No install/post-install scripts declared.Pass
- Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
- Source repository is publicly reachable at the declared URL. View diagnostics → Pass
- Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
- Clear OSI-approved license (Apache-2.0).Pass
- Actively maintained (last published 39 days ago).Pass
- Disclosure check failed: no security disclosure policy was found in the source repository. See how to fix → Fail
Schema Quality & AI Usability63
- AI-judged instruction clarity (excellent).Pass
- Context-footprint check failed: tool/resource definitions use about 2376 tokens (~216/item across 11 items; 11 tools + 0 resources), over budget; trim descriptions and params. See how to fix → Fail
- Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management23
- Stability observed for 7 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage100
- 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
- 100% of tool parameters carry a description.Pass
Capabilities100
- Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.
npm · @three-ws/autopilot-mcp
claude mcp add nirholas-autopilot-mcp -- npx -y @three-ws/autopilot-mcp
codex mcp add nirholas-autopilot-mcp -- npx -y @three-ws/autopilot-mcp
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"nirholas-autopilot-mcp": {
"type": "local",
"command": [
"npx",
"-y",
"@three-ws/autopilot-mcp"
],
"enabled": true
}
}
} openclaw mcp add nirholas-autopilot-mcp --command npx --arg -y --arg @three-ws/autopilot-mcp
mcp_servers:
nirholas-autopilot-mcp:
command: "npx"
args: ["-y", "@three-ws/autopilot-mcp"] {
"mcpServers": {
"nirholas-autopilot-mcp": {
"command": "npx",
"args": [
"-y",
"@three-ws/autopilot-mcp"
]
}
}
} Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.
- 2 Aug 26 +48
- Provenance: unverified → fail ▼ security
- Install scripts: unverified → pass ▲ security
- Known CVEs: unverified → partial ▲ security
- Malware scan: unverified → pass ▲ security
- License: unverified → pass ▲ functional
- Dependency health: unverified → partial ▲ functional
- Stability: unverified → 0.20 ▲ functional
- Maintenance: unverified → pass ▲ functional
- MCP protocol: unverified → pass ▲ functional
- Schema quality: unverified → excellent ▲ functional
- Licence: Apache-2.0 functional
- 1 Aug 26 +13
- Tool coverage: unverified → 100 ▲ functional
- 31 Jul 26 −38
- We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
- 27 Jul 26 43
First indexed and scored.
Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.
Captured 3 Aug 2026 · Analysed npm/@three-ws/[email protected]
Provenance none
Ecosystem: npm · Outcome: none
Dependencies 95 packages
95 packages in the resolved dependency tree · 95 deprecated · 29 stale.
The dependency tree was only partially resolved, so these counts may be incomplete.
The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.
adjust_proposal Adjust a pending autopilot proposal ~264
Edit a pending proposal's params before executing it — tune a threshold, swap a briefing cadence, correct a transfer amount/recipient. The new params are validated SERVER-SIDE against the proposal kind and shape: create_alert → { asset:"three"|<mint>, condition:"price_above"|"price_below"|"graduation"|"whale_buy", threshold_usd?|threshold_sol? }; briefing → { summary, cadence:"once"|"daily"|"weekly", topic }; wallet_transfer → { recipient:<solana addr>, amount_sol:number, reason? }. An invalid edit is rejected with the reason and nothing changes. Only a pending proposal can be adjusted. WRITE but idempotent (no action taken; re-applying the same params is a no-op). For alerts the only coin is $THREE (asset:"three"); wallet_transfer sends SOL only and never sells or sends $THREE. Returns the updated proposal.
| Name | Type | Req | Description |
|---|---|---|---|
| agentId | string | yes | UUID of the agent that owns the proposal. Must be an agent owned by the credential. |
| params | object | yes | The full replacement params object for the proposal, matching its kind (see description). Validated server-side. |
| proposalId | string | yes | UUID of the pending proposal to adjust. |
No output schema declared.
No examples provided.
compute_trust Compute autopilot trust level ~130
The agent's earned trust level, computed from its REAL autopilot history. Returns level (sandbox → trusted → autonomous), a 0+ score (net kept executions weighted by reliability), the underlying stats (executed / undone / dismissed / pending counts + reliability %), and what it takes to reach the next level. Trust rises as the owner keeps the agent's actions and falls when they undo or dismiss them — it is not configurable, only earned. Read-only.
| Name | Type | Req | Description |
|---|---|---|---|
| agentId | string | yes | UUID of the three.ws agent whose trust to compute. Must be an agent owned by the credential. |
No output schema declared.
No examples provided.
dismiss_proposal Dismiss a pending autopilot proposal ~126
Dismiss a pending proposal the agent decided not to act on. Marks it dismissed and records a feedback memory ("don't propose this again") so future generate_proposals steers away from it — this is how the agent learns the owner's boundaries. WRITE. Only a pending proposal can be dismissed (executed/undone/dismissed ones are rejected). Returns the updated proposal and trust.
| Name | Type | Req | Description |
|---|---|---|---|
| agentId | string | yes | UUID of the agent that owns the proposal. Must be an agent owned by the credential. |
| proposalId | string | yes | UUID of the pending proposal to dismiss. |
No output schema declared.
No examples provided.
dryrun_proposal Dry-run an autopilot proposal ~152
Preview exactly what executing a proposal WOULD do, without taking any action. Returns the kind, a plain-language "willDo" sentence, and a checklist of guard checks (scope granted? params valid? within the daily SOL cap? wallet balance covers a transfer?) plus a `blocked` flag if any check fails. Always dry-run an irreversible wallet_transfer before executing it. Performs a live balance read but no write and no spend — safe to call freely. Read-only.
| Name | Type | Req | Description |
|---|---|---|---|
| agentId | string | yes | UUID of the agent that owns the proposal. Must be an agent owned by the credential. |
| proposalId | string | yes | UUID of the proposal to preview (from list_proposals or generate_proposals). |
No output schema declared.
No examples provided.
execute_proposal Execute an autopilot proposal (moves real value) ~256
EXECUTE a proposal for real, within the owner-granted scope. ⚠️ This is the funds-touching action: a `wallet_transfer` proposal sends REAL SOL on Solana mainnet and is IRREVERSIBLE — you MUST pass confirm:true for it (unless the owner durably pre-authorized that scope), and it is capped by the daily SOL budget. It sends native SOL only — never $THREE. `create_alert` and `briefing` are real writes but reversible via undo_action. Always dryrun_proposal first. Scope, confirmation, and spend caps are enforced SERVER-SIDE; this tool cannot override them — an out-of-scope, over-budget, or unconfirmed call is denied (no action taken). Returns the updated proposal, a human receipt, the signed action-log id, and updated trust.
| Name | Type | Req | Description |
|---|---|---|---|
| agentId | string | yes | UUID of the agent that owns the proposal. Must be an agent owned by the credential. |
| confirm | boolean | — | Must be true to execute an irreversible SOL wallet_transfer (when require_confirm is on). Ignored for reversible kinds. |
| proposalId | string | yes | UUID of the pending proposal to execute (from list_proposals or generate_proposals). |
No output schema declared.
No examples provided.
generate_proposals Generate autopilot proposals ~171
Run the agent's mind: read its high-salience memories and pending reflections and synthesize real, concrete autopilot proposals — each citing the exact memories that justify it. New proposals are persisted to the queue (see list_proposals). WRITE: any reversible proposal the owner has scoped for auto-execution may run immediately and is reported under `autoRan`; irreversible SOL transfers never auto-run — they stay pending for explicit execute_proposal. Returns the created proposals, the autoRan receipts, the generation `source` (reflection | memory | heuristic), what was `scanned`, and updated trust. Deduped server-side, so calling it repeatedly will not enqueue duplicates.
| Name | Type | Req | Description |
|---|---|---|---|
| agentId | string | yes | UUID of the three.ws agent to generate proposals for. Must be an agent owned by the credential. |
No output schema declared.
No examples provided.
get_autopilot_config Get autopilot config ~143
Read the agent's autopilot permission model: whether autopilot is enabled, which capability scopes the owner granted (create_alert, briefing, wallet_transfer), which reversible scopes may auto-execute, the daily SOL spend ceiling (in SOL; 0 = no spending), and whether irreversible actions require explicit confirmation. Also returns the live trust level (sandbox → trusted → autonomous) computed from real action history. Nothing the agent can do exists outside these owner-granted scopes — read this before proposing or executing. Read-only.
| Name | Type | Req | Description |
|---|---|---|---|
| agentId | string | yes | UUID of the three.ws agent whose autopilot config to read. Must be an agent owned by the credential. |
No output schema declared.
No examples provided.
list_autopilot_activity List autopilot activity (signed receipts) ~199
Read the append-only log of every autonomous action the agent has taken, newest first — the real agent_actions trail. Each receipt carries the kind (alert created / briefing authored / wallet transfer), its rationale, the outcome (created rule id / notification id / on-chain signature), the source memories it was grounded in, and the cryptographic signature + signer address when the action was signed by the agent's wallet. Use it to audit what the agent did and why. Omit agentId to aggregate across every agent the credential owns. Paginate with the returned next_cursor. Read-only.
| Name | Type | Req | Description |
|---|---|---|---|
| agentId | string | — | UUID of a specific agent (must be owned by the credential). Omit to aggregate across all your agents. |
| cursor | string | — | Pagination cursor: pass the next_cursor from a previous call to fetch the next page. |
| limit | integer | — | Max receipts per page (1–200, default 50). |
No output schema declared.
No examples provided.
list_proposals List autopilot proposals ~178
List the agent's autopilot proposals — candidate actions it generated, each grounded in cited memories (provenance hydrated). Each proposal carries its id (needed for dryrun/execute/dismiss/undo/adjust), kind (create_alert | briefing | wallet_transfer), title, plain-language rationale (the receipt), params, confidence, requiresConfirmation, status, result, and the source memories. Filter by status to find what is actionable. Also returns the current config + trust for context. Read-only.
| Name | Type | Req | Description |
|---|---|---|---|
| agentId | string | yes | UUID of the three.ws agent whose proposals to list. Must be an agent owned by the credential. |
| limit | integer | — | Max proposals to return (1–200, default 50). |
| status | string | — | Filter to one lifecycle status. Omit to return all statuses (newest first). |
No output schema declared.
No examples provided.
set_autopilot_config Set autopilot config ~317
Update the agent's autopilot guardrails. A partial patch — only the fields you pass change; the rest are preserved. Set `enabled` to arm/disarm autopilot, `scopes` to grant/revoke each capability (create_alert, briefing, wallet_transfer), `autoExecute` to let reversible scopes run without review, `dailySpendSol` for the daily SOL outflow ceiling (in SOL; 0 disables spending), and `requireConfirm` to force explicit confirmation on irreversible actions. WRITE but idempotent: it changes only the boundaries, takes no action, and re-applying the same values is a no-op. Returns the full updated config. Scopes are enforced server-side at execution time — granting one here is what makes a later execute_proposal possible.
| Name | Type | Req | Description |
|---|---|---|---|
| agentId | string | yes | UUID of the three.ws agent to configure. Must be an agent owned by the credential. |
| autoExecute | object | — | Reversible scopes allowed to auto-execute on generation (wallet_transfer can never auto-run). |
| dailySpendSol | number | — | Daily ceiling on autonomous SOL outflow, in SOL (fractional allowed). 0 means no spending. The agent spends SOL, never $THREE. |
| enabled | boolean | — | Master switch — autopilot can only act when this is true. |
| requireConfirm | boolean | — | When true (default), irreversible actions need explicit confirm:true at execution. |
| scopes | object | — | Per-capability grants. Omitted keys keep their current value. |
No output schema declared.
No examples provided.
undo_action Undo a reversible autopilot action ~145
Reverse a reversible executed proposal: deletes the real artifact the execution created — the alert rule (create_alert) or the briefing notification (briefing) — and records a feedback memory so the agent learns to be more conservative next time. WRITE. NOTE: an irreversible SOL wallet_transfer is on-chain and cannot be undone — the server rejects that with `irreversible`; to send value back you would have to execute a new transfer. Returns the updated proposal (status → undone) and trust.
| Name | Type | Req | Description |
|---|---|---|---|
| agentId | string | yes | UUID of the agent that owns the proposal. Must be an agent owned by the credential. |
| proposalId | string | yes | UUID of the executed proposal to undo. |
No output schema declared.
No examples provided.