MCP Server  ·  Claude Code  ·  600+ Tools  ·  Dream Engine

Slopshop in
Claude Code

Add 600+ battle-tested tools to Claude Code in 30 seconds.
Memory, Dream Engine, crypto, network, code execution — all as native tools.
One JSON snippet. Claude already knows how to use them.

600+
Native Tools
30s
To Deploy
MCP
Protocol
0
Extra Config

Quickstart

Three steps. Claude has 1,400 real tools.

The fastest path from zero to a Claude that can hash data, query memory, dream-synthesize knowledge, and run code — all in the same conversation.

1 Step 01 — API Key

Get your Slopshop key

Create a free account at slopshop.gg. Your API key starts with sk-slop-. Free tier includes memory, crypto, and network tools with no credit card required.

Create Free Account →
2 Step 02 — Configure

Add to settings.json

Open ~/.claude/settings.json and add the mcpServers block. Claude Code reads this at startup and registers all tools automatically.

$ npx -y slopshop slopshop-mcp
3 Step 03 — Launch

Restart Claude Code & ask

Restart Claude Code. The tools auto-register. Try it immediately:

> Hash "hello" with SHA256
> Store this context in memory
> Start a Dream Engine cycle
Settings Config

Add to ~/.claude/settings.json

This is the full configuration block. Paste it into your settings file (merge with existing content if you already have other MCP servers configured).

~/.claude/settings.json
JSON
{
  "mcpServers": {
    "slopshop": {
      "command": "npx",
      "args": ["-y", "slopshop", "slopshop-mcp"],
      "env": {
        "SLOPSHOP_KEY": "sk-slop-xxx"
      }
    }
  }
}
Tip: Replace sk-slop-xxx with your actual API key from slopshop.gg/signup. If you already have a mcpServers block, just add the "slopshop" entry inside it alongside your other servers.

Alternative

Local install (global npm)

If you prefer a globally installed binary rather than npx, install once and point Claude Code directly at the server file.

Option A — Global npm install

Install slopshop globally so slopshop-mcp is available as a binary on your PATH.

$ npm install -g slopshop

Then use this settings block instead:

~/.claude/settings.json (global binary)
{
  "mcpServers": {
    "slopshop": {
      "command": "slopshop-mcp",
      "env": {
        "SLOPSHOP_KEY": "sk-slop-xxx"
      }
    }
  }
}
Option B — Direct node path (self-hosted)

Clone the repo or point at a local checkout. Useful for customisation or air-gapped environments.

~/.claude/settings.json (local path)
{
  "mcpServers": {
    "slopshop": {
      "command": "node",
      "args": ["/path/to/slopshop/mcp-server.js"],
      "env": {
        "SLOPSHOP_KEY": "sk-slop-xxx",
        "SLOPSHOP_BASE": "https://slopshop.gg"
      }
    }
  }
}

What You Get

600+ tools Claude can actually call

Every tool is a real computation with real results — not a hallucinated function. Claude calls them as native MCP tools and gets verified outputs back.

🧠

Memory & Dream Engine

Persistent agent memory with REM-cycle synthesis. Store, retrieve, and evolve knowledge across sessions. The crown jewel.

slop-memory-set slop-memory-get slop-dream-start slop-dream-status slop-memory-share
🔒

Crypto & Hashing

SHA-256, MD5, bcrypt, HMAC, UUID generation, base64, hex encode/decode, random bytes. All client-side compute.

slop-crypto-hash-sha256 slop-crypto-hash-md5 slop-crypto-hmac slop-crypto-uuid slop-encode-base64
🌐

Network & DNS

DNS lookups, SSL certificate inspection, HTTP fetch with custom headers, IP geolocation, port scanning, WHOIS.

slop-dns-lookup slop-ssl-check slop-http-fetch slop-ip-geo slop-whois
🤖

LLM Utilities

Token counting, prompt scoring, summarisation, entity extraction, sentiment analysis, embedding similarity.

slop-llm-token-count slop-llm-summarize slop-llm-extract slop-llm-sentiment slop-llm-think

Code Execution

Run Python, evaluate JavaScript expressions, parse JSON/YAML/TOML, regex matching, AST analysis, lint checks.

slop-code-run-python slop-code-eval-js slop-parse-json slop-regex-match slop-parse-yaml

Dream Engine

REM-cycle memory consolidation. Schedule overnight knowledge synthesis, snapshot branching, Bayesian memory scoring, episodic chains.

slop-dream-schedule slop-memory-snapshot slop-memory-decay slop-memory-cluster slop-knowledge-graph
82 categories total. The six above are highlights. You also get: text processing, math, data transforms, CSV/Excel parsing, image hashing, QR codes, PDF generation, templating, time/date utilities, diff & patch, agent identity, observability, workflow DAGs, marketplace tools, and much more. Browse all tools →

Compatibility

Works everywhere MCP is supported

Slopshop implements the Model Context Protocol spec. Any MCP-compatible editor or agent shell gets your 1,400 tools automatically.

Claude Code
~/.claude/settings.json
Cursor
MCP config panel
VS Code
MCP extension
Goose
block.goose.ai
Cline
VS Code extension
Claude Code is first-class. The slopshop-mcp binary and npx -y slopshop slopshop-mcp one-liner are optimised for Claude Code's settings format. All other MCP hosts use the same JSON config shape.

Auto-Configure

One command. Zero manual edits.

If you have a local checkout, setup-mcp.js reads your environment, finds Claude Code's settings file, and writes the correct config automatically.

What setup-mcp.js does

Run it once from your slopshop directory. It auto-detects your OS, locates ~/.claude/settings.json, and merges the slopshop MCP block without overwriting your existing config.

  • Finds ~/.claude/settings.json on Mac, Linux & Windows
  • Creates the .claude directory if it doesn't exist
  • Merges slopshop config without clobbering other servers
  • Picks up SLOPSHOP_KEY from your environment automatically
  • Idempotent — safe to re-run; updates the path if it changed
terminal
# Set your key first
export SLOPSHOP_KEY=sk-slop-xxx

# Auto-configure Claude Code
node setup-mcp.js
# Output
Slopshop MCP Setup
Found existing Claude Code settings.
Merged slopshop MCP config.
Done. Restart Claude Code to activate.

Give Claude Code 600+ real tools

Memory that persists. A Dream Engine that synthesises. Crypto, network, code execution — all callable from inside any Claude Code conversation. One JSON block away.

Get your API key → Browse All Tools Read the Docs
→ MCP Tools Guide → Slopshop for Cursor → Getting Started → Full Docs → Self-Host MCP