✓ Verified 💻 Development ✓ Enhanced Data

Masterswarm

Analyze any document with 15 parallel AI engines via the MasterSwarm cloud API.

Rating
4.2 (226 reviews)
Downloads
5,689 downloads
Version
1.0.0

Overview

Analyze any document with 15 parallel AI engines via the MasterSwarm cloud API.

Complete Documentation

View Source →

MasterSwarm AI — 15 Engines. 31 Agents. One Verdict.

MasterSwarm is a cloud-based distributed AI orchestration API that analyzes documents and questions using 15 specialized AI engines running in parallel.

What It Does

Send any text or question to the MasterSwarm API — 15 engines analyze it simultaneously and return a professional multi-page analysis.

Available Engines

Engine IDNameUse Case
chefChef OmegaRecipes, food cost, restaurant consulting
apexAPEX StrategyBusiness strategy, financial projections, crypto
consultNEXUS ConsultingSWOT, roadmaps, systems thinking
researchResearch LabScientific analysis, medical labs, papers
marketMarket IntelCompetitive analysis, TAM/SAM, growth plans
molecularAPEIRON LabMolecular gastronomy, food science
oracleOracleForecasting, predictions, scenario planning
assemblyGAIA BrainMulti-perspective analysis (12 cognitive neurons)
analystData AnalystStatistics, anomaly detection, modeling

Setup

Required Credentials

This skill requires a MasterSwarm API key to authenticate requests. All API calls are sent to https://api.neurodoc.app.

text
MASTERSWARM_API_KEY=your_personal_key_here

How to Get Your API Key

  • Visit https://masterswarm.net and purchase a plan:
  • Explorer (€9.99) — 5 reports
  • Professional (€29.99) — 20 reports
  • Enterprise (€79.99) — 60 reports
  • After purchase, Gumroad emails you a license key
  • Go to https://masterswarm.net/app/ → click Upgrade → paste your license key → Activate
  • Your key is now active — use it as MASTERSWARM_API_KEY

Data Handling & Privacy

  • API Host: api.neurodoc.app (operated by NeuroDoc Pro, same entity as masterswarm.net)
  • Servers: Hetzner, Germany (EU-only)
  • Encryption: TLS 1.3 end-to-end
  • Data Retention: Zero — documents are processed in real-time and immediately discarded
  • GDPR: Compliant — privacy policy at https://masterswarm.net (footer → Privacy Policy)
  • No data is stored, logged, or used for training

How To Use

Single Engine Analysis

bash
curl -s --max-time 120 -X POST https://api.neurodoc.app/aetherlang/execute \
  -H "Content-Type: application/json" \
  -H "X-Aether-Key: MASTERSWARM_API_KEY" \
  -d '{
    "code": "flow Q {\n  using target \"neuroaether\" version \">=0.2\";\n  input text query;\n  node G: guard mode=\"STANDARD\";\n  node E: ENGINE_ID style=\"professional\";\n  G -> E;\n  output text result from E;\n}",
    "query": "USER_QUESTION_OR_DOCUMENT_TEXT"
  }'

Replace:

  • MASTERSWARM_API_KEY — your personal API key
  • ENGINE_ID — one from the table above (e.g. apex, chef, research)
  • USER_QUESTION_OR_DOCUMENT_TEXT — the user's question or extracted document text

Engine Selection Guide

User RequestEngine ID
Recipe, food, restaurant, menuchef
Business strategy, startup, ROIapex
SWOT, consulting, roadmap, KPIsconsult
Research, science, papers, evidenceresearch
Market analysis, competition, pricingmarket
Crypto, trading, DeFi, portfolioapex
Medical labs, blood tests, healthresearch
Legal, contracts, complianceconsult
Financial analysis, P&L, ratiosapex
General or multi-domain questionassembly
Data, statistics, anomaliesanalyst
Molecular gastronomy, food sciencemolecular
Forecasting, predictionsoracle

Multi-Engine Analysis

For comprehensive reports, call multiple engines sequentially:

bash
# Example: Run apex + consult + research on the same query
for ENGINE_ID in apex consult research; do
  curl -s --max-time 120 -X POST https://api.neurodoc.app/aetherlang/execute \
    -H "Content-Type: application/json" \
    -H "X-Aether-Key: MASTERSWARM_API_KEY" \
    -d "{
      \"code\": \"flow M {\n  using target \\\"neuroaether\\\" version \\\">=0.2\\\";\n  input text query;\n  node G: guard mode=\\\"STANDARD\\\";\n  node E: $ENGINE_ID style=\\\"professional\\\";\n  G -> E;\n  output text result from E;\n}\",
      \"query\": \"USER_QUESTION\"
    }"
done

Response Format

json
{
  "status": "success",
  "result": {
    "final_output": "## Full analysis report in markdown...",
    "outputs": {"E": "..."},
    "execution_log": [
      {"node": "G", "status": "OK"},
      {"node": "E", "status": "OK", "duration": 5.2}
    ]
  },
  "duration_seconds": 6.1
}

Extract result.final_output to present the report to the user.

Error responses:

  • "status": "error" — check error field for details
  • "status": "validation_error" — malformed flow code
  • HTTP 429 — rate limited, wait and retry

Important Notes

  • Timeout: Use 120-180 second timeout — multi-engine analysis needs time
  • Credits: Each API call consumes 1 credit from the user's purchased plan
  • Language: Auto-detects input language — reports match the query language
  • Rate Limit: Max 5 concurrent requests per key

Links

ResourceURL
Landing Pagehttps://masterswarm.net
Buy Creditshttps://masterswarm.net (Pricing section)
App Dashboardhttps://masterswarm.net/app/
Telegram Bothttps://t.me/aetherlang_bot
AetherLang Docshttps://aetherlang.net
Privacy Policyhttps://masterswarm.net (footer)
Support Email[email protected]

Installation

Terminal bash

openclaw install masterswarm
    
Copied!

💻Code Examples

MASTERSWARM_API_KEY=your_personal_key_here

masterswarmapikeyyourpersonalkeyhere.txt
### How to Get Your API Key

1. Visit **https://masterswarm.net** and purchase a plan:
   - Explorer (€9.99) — 5 reports
   - Professional (€29.99) — 20 reports
   - Enterprise (€79.99) — 60 reports
2. After purchase, Gumroad emails you a **license key**
3. Go to **https://masterswarm.net/app/** → click Upgrade → paste your license key → Activate
4. Your key is now active — use it as `MASTERSWARM_API_KEY`

### Data Handling & Privacy

- **API Host**: `api.neurodoc.app` (operated by NeuroDoc Pro, same entity as masterswarm.net)
- **Servers**: Hetzner, Germany (EU-only)
- **Encryption**: TLS 1.3 end-to-end
- **Data Retention**: Zero — documents are processed in real-time and immediately discarded
- **GDPR**: Compliant — privacy policy at https://masterswarm.net (footer → Privacy Policy)
- **No data is stored, logged, or used for training**

## How To Use

### Single Engine Analysis

}'

-.txt
**Replace:**
- `MASTERSWARM_API_KEY` — your personal API key
- `ENGINE_ID` — one from the table above (e.g. `apex`, `chef`, `research`)
- `USER_QUESTION_OR_DOCUMENT_TEXT` — the user's question or extracted document text

### Engine Selection Guide

| User Request | Engine ID |
|---|---|
| Recipe, food, restaurant, menu | `chef` |
| Business strategy, startup, ROI | `apex` |
| SWOT, consulting, roadmap, KPIs | `consult` |
| Research, science, papers, evidence | `research` |
| Market analysis, competition, pricing | `market` |
| Crypto, trading, DeFi, portfolio | `apex` |
| Medical labs, blood tests, health | `research` |
| Legal, contracts, compliance | `consult` |
| Financial analysis, P&L, ratios | `apex` |
| General or multi-domain question | `assembly` |
| Data, statistics, anomalies | `analyst` |
| Molecular gastronomy, food science | `molecular` |
| Forecasting, predictions | `oracle` |

### Multi-Engine Analysis

For comprehensive reports, call multiple engines sequentially:
example.sh
curl -s --max-time 120 -X POST https://api.neurodoc.app/aetherlang/execute \
  -H "Content-Type: application/json" \
  -H "X-Aether-Key: MASTERSWARM_API_KEY" \
  -d '{
    "code": "flow Q {\n  using target \"neuroaether\" version \">=0.2\";\n  input text query;\n  node G: guard mode=\"STANDARD\";\n  node E: ENGINE_ID style=\"professional\";\n  G -> E;\n  output text result from E;\n}",
    "query": "USER_QUESTION_OR_DOCUMENT_TEXT"
  }'
example.sh
# Example: Run apex + consult + research on the same query
for ENGINE_ID in apex consult research; do
  curl -s --max-time 120 -X POST https://api.neurodoc.app/aetherlang/execute \
    -H "Content-Type: application/json" \
    -H "X-Aether-Key: MASTERSWARM_API_KEY" \
    -d "{
      \"code\": \"flow M {\n  using target \\\"neuroaether\\\" version \\\">=0.2\\\";\n  input text query;\n  node G: guard mode=\\\"STANDARD\\\";\n  node E: $ENGINE_ID style=\\\"professional\\\";\n  G -> E;\n  output text result from E;\n}\",
      \"query\": \"USER_QUESTION\"
    }"
done
example.json
{
  "status": "success",
  "result": {
    "final_output": "## Full analysis report in markdown...",
    "outputs": {"E": "..."},
    "execution_log": [
      {"node": "G", "status": "OK"},
      {"node": "E", "status": "OK", "duration": 5.2}
    ]
  },
  "duration_seconds": 6.1
}

Tags

#devops_and-cloud #api

Quick Info

Category Development
Model Claude 3.5
Complexity One-Click
Author contrario
Last Updated 3/10/2026
🚀
Optimized for
Claude 3.5
🧠

Ready to Install?

Get started with this skill in seconds

openclaw install masterswarm