Simple Language Operations Protocol

SLOP

530+ tools. One API. Zero friction.

Persistent memory that gets smarter overnight. Dream Engine synthesis. Multiplayer team intelligence. MCP server, REST API, and CLI — one key for all of it. Self-hostable on SQLite. Free to start.

Quick Start
$ npm install -g slopshop-cli # install CLI copy
$ slop auth login # get your API key copy
$ slop run crypto-uuid # call any tool instantly copy
$ slop mcp serve # start MCP server for Claude / Cursor copy
530+
Tools
50+
Categories
Free
Core Memory
<1ms
p95 Handler
SQLite
Self-hostable
Platform Capabilities

Everything you need — in one API key

Memory that outlives any session. Tools that just work. Dream Engine that synthesizes overnight. Multiplayer memory for teams. One platform, not a stack of glue.

Free · Always

Persistent Memory

SQLite-backed key-value store with namespaces, semantic search, counters, and GraphRAG. Cross-LLM, cross-session. Core memory APIs are 0 credits forever.

POST /v1/memory-set {"namespace":"project","key":"findings","value":"..."} → {"status":"stored","credits_used":0}
North Star

Dream Engine

REM-cycle memory synthesis. Schedule a dream session — the engine reads all memories in a namespace, runs 9 synthesis strategies, and writes evolved insights back.

POST /v1/memory/dream/start {"namespace":"my-agent","strategy":"synthesize"} GET /v1/memory/dream/report/:id # intelligence score
Teams

Multiplayer Memory

Shared memory spaces with collaborator invites. Real-time team intelligence — your whole team's agents share knowledge, findings, and context in one living namespace.

POST /v1/memory/share/create {"space_name":"team-research"} POST /v1/memory/collaborator/invite {"email":"alice@co.com"} POST /v1/memory-search {"namespace":"team-research/shared"}
530+ Handlers

Tools

600+ deterministic handlers across 50+ categories: crypto, text, math, validation, finance, DevOps, AI utilities, network, code execution. Every handler benchmarked, p95 <1ms.

slop call crypto-hash-sha256 --data hello POST /v1/crypto-hash-sha256 {"data":"hello world"}
DAG + Cron

Scheduling & Workflows

Cron-style recurring execution with webhook callbacks. Visual DAG workflows. Batch processing and parallel fan-out. Your agent runs on schedule, not just on demand.

POST /v1/schedules {"slug":"dream-nightly","interval":"24h","body":{"namespace":"my-agent"}} POST /v1/batch {"calls":[...]}
MCP Native

MCP Server

One command makes all 530+ tools and memory APIs available inside Claude Code, Cursor, Goose, Cline, and every MCP-compatible client. Zero glue code.

slop mcp serve npx -y slopshop slopshop-mcp # Claude Code one-liner
5 Providers

Planet Research

Fan out to Grok/X, DeepSeek, Yandex, OpenAI, and Claude in parallel. Cross-synthesis for planet tier. 30-min cache, language-aware routing.

POST /v1/research {"topic":"AI trends","tier":"planet"} → Grok/X · DeepSeek · Yandex · Claude
Open Source

Self-Hostable

SQLite backend. Zero vendor lock-in. node server-v2.js and you own the entire stack. Air-gapped mode, your hardware, your infrastructure.

git clone https://github.com/slopshop/slopshop node server-v2.js # starts on :3000 DB_PATH=/data/slop.db node server-v2.js
Dream Engine v9

9-Stage REM Cycle Memory Synthesis

The first neuroscience-grounded memory consolidation pipeline for AI agents. Your agents sleep. They consolidate. They wake up smarter — with an Intelligence Score to prove it.

Stage 1
ORIENT
Scans the memory space. Identifies recency, decay scores, and priority weights to determine what needs consolidation.
Stage 2
GATHER
Pulls candidate memories by semantic similarity clusters. Groups related facts, decisions, and observations into consolidation batches.
Stage 3
CONSOLIDATE
Synthesizes batches into compressed, high-value insight nodes. Merges redundant memories and elevates signal above noise.
Stage 4
VALIDATE
Cross-checks synthesized insights against source memories. Flags contradictions, assigns confidence scores, marks uncertain nodes.
Stage 5
EVOLVE
Runs Bayesian belief updates on validated insights. Strengthens frequently-confirmed patterns and weakens stale associations.
Stage 6
FORECAST
Projects likely future query patterns from evolved insights. Pre-caches high-probability answers and flags likely knowledge gaps.
Stage 7
EXTRACT
Pulls structured facts, entities, relationships, and skills into the agent's long-term knowledge graph and skills registry.
Stage 8
STORE
Persists all evolved nodes, snapshots the memory state with a Merkle hash for branching, writes episodic chain entries.
Stage 9
REFLECT
Generates the Dream Report: what changed, what was learned, what surprised the engine, and the final Intelligence Score delta.
Intelligence Score
(insights × strategy_depth × 10) / duration_sec
A single scalar measuring how much smarter your agent got per second of dream time. Tracked across every session — visible in Dream Reports.
94.2
Example score
Open Dream Studio View Dream Reports API Docs ↗
MCP · Model Context Protocol

Add to Claude, Cursor, or any MCP client

One command gives every supported AI client access to 530+ tools, persistent memory, and Dream Engine. No glue code, no extra configuration.

Option A — Global CLI bash
# Install once
$ npm install -g slopshop-cli
$ slop auth login
$ slop mcp serve

# Runs MCP server on stdio — add to your
# claude_desktop_config.json or cursor settings
Option B — npx one-liner bash
# Zero install — runs directly
$ npx -y slopshop slopshop-mcp

# Claude Code ~/.claude/settings.json:
{
  "mcpServers": {
    "slop": {
      "command": "npx",
      "args": ["-y", "slopshop", "slopshop-mcp"],
      "env": { "SLOP_KEY": "sk-slop-..." }
    }
  }
}
REST API — any language curl
# Call any tool with one HTTP request
curl -X POST https://slopshop.gg/v1/crypto-hash-sha256 \
  -H "Authorization: Bearer sk-slop-..." \
  -H "Content-Type: application/json" \
  -d '{"data":"hello world"}'

# Response
{ "hash": "b94d27b9...", "credits_used": 1 }
Claude Code Claude Desktop Cursor Goose Cline OpenCode Aider LangChain CrewAI AutoGen LangGraph Any MCP client
API Catalog

530+ tools across 50+ categories

Every handler is deterministic, benchmarked, and available instantly. Filter by category or search by name.

API Playground

Try it live — no signup needed

Select a tool, supply input, hit Run. Real API call, real result.

slopshop.gg / playground
live
Tools
// Select a tool and press Run // Or click an example above
Recent Calls
Install & Auth

Get started in 60 seconds

Three ways to connect — CLI, MCP server, or raw REST. Same tools, same memory, three interfaces.

CLI

npm install -g slopshop-clicopy
slop auth logincopy
slop run crypto-uuidcopy
slop memory set mykey "hello"copy

MCP Server

slop mcp servecopy
npx -y slopshop slopshop-mcpcopy

Add to Claude Code, Cursor, Goose, Cline, or any MCP-compatible client. All 530+ tools available immediately.

REST API

POST /v1/{tool-slug}copy
POST /v1/memory-setcopy
POST /v1/memory/dream/startcopy

Any language. Standard HTTP. Bearer token auth. JSON in, JSON out.

Self-Host

git clone slopshop/slopshopcopy
node server-v2.jscopy
DB_PATH=/data/slop.db node ...copy

Your hardware, your data, your SQLite file. Air-gapped mode available.

How we stack up

SLOP vs The Field

Nobody else ships Dream Engine. Nobody else ships TMR. Nobody else ships 530+ tools with a free tier, self-hosting, and full multi-model support.

Feature Slopshop Mem0 Zep Letta AutoGPT Mem
Dream Engine (9-stage REM)
Targeted Memory Reactivation
Intelligence Score
Multiplayer Memorypartial
Self-hostablepartialpartial
Multi-model (4+ models)partialpartial
Free tier
Open source
530+ Deterministic Tools
Pricing

Simple credit-based pricing. Memory is always free.

No subscription, no seat fees. Core memory APIs are 0 credits forever. Buy credits when you need compute.

Start Free
500 credits on signup
No card required. Full access to all 530+ tools. Test everything before you pay.
Sign Up Free
Pay as You Build
From $9 / 1K credits
Buy in bulk. Volume discounts up to 78% off. No expiration. No subscription.
Free Core Memory
Always 0 credits
memory-set, memory-get, memory-search, memory-list, memory-delete, counter-get. Forever free.
500
Free
on signup
Starter
1K
$9
$0.009/cr
Builder
10K
$49
$0.0049/cr
Pro
100K
$299
$0.00299/cr
Scale
1M
$1,999
$0.002/cr
Enterprise
Custom
volume
Contact

Your agent deserves a real memory.

Dream Engine. Multiplayer Memory. 530+ tools. Self-hostable forever.

$ npm install -g slopshop-cli && slop auth login copy
Start for Free — No Card Open App ↗ Read the Docs → Developer Console →
500 free credits · No subscription · Core memory always free · Your SQLite, forever