Skip to main content
The /add-parallel skill adds web research capabilities to NanoClaw through Parallel AI MCP servers. The agent can perform quick web lookups or in-depth research without leaving the conversation.

Tools

The skill adds two MCP servers:
MCP ServerToolCostDescription
parallel-searchQuick searchFreeFast web lookups for simple queries
parallel-taskDeep researchPaid (asks permission)Comprehensive multi-source analysis
Deep research costs money per query. The agent asks for confirmation before running a deep research task, so you won’t be charged unexpectedly.

Non-blocking design

Deep research tasks can take time. The skill uses NanoClaw’s scheduler to poll for results instead of blocking the agent:
  1. Agent submits a deep research task
  2. Task ID is stored and the agent continues with other work
  3. NanoClaw’s scheduler periodically checks for results
  4. When results arrive, the agent is notified and can respond
This means the agent stays responsive during long-running research.

Prerequisites

Installation

Via Claude Code:
/add-parallel
Or manually:
git fetch upstream skill/add-parallel
git merge upstream/skill/add-parallel

Configuration

Add your Parallel AI API key to .env:
PARALLEL_API_KEY=your-api-key

Usage examples

@Andy search the web for NanoClaw reviews
@Andy do a deep research on Claude Agent SDK best practices
Last modified on March 19, 2026