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.
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.
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.
Open ~/.claude/settings.json and add the mcpServers block. Claude Code reads this at startup and registers all tools automatically.
Restart Claude Code. The tools auto-register. Try it immediately:
This is the full configuration block. Paste it into your settings file (merge with existing content if you already have other MCP servers configured).
{ "mcpServers": { "slopshop": { "command": "npx", "args": ["-y", "slopshop", "slopshop-mcp"], "env": { "SLOPSHOP_KEY": "sk-slop-xxx" } } } }
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.
If you prefer a globally installed binary rather than npx, install once and point Claude Code directly at the server file.
Install slopshop globally so slopshop-mcp is available as a binary on your PATH.
Then use this settings block instead:
{ "mcpServers": { "slopshop": { "command": "slopshop-mcp", "env": { "SLOPSHOP_KEY": "sk-slop-xxx" } } } }
Clone the repo or point at a local checkout. Useful for customisation or air-gapped environments.
{ "mcpServers": { "slopshop": { "command": "node", "args": ["/path/to/slopshop/mcp-server.js"], "env": { "SLOPSHOP_KEY": "sk-slop-xxx", "SLOPSHOP_BASE": "https://slopshop.gg" } } } }
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.
Persistent agent memory with REM-cycle synthesis. Store, retrieve, and evolve knowledge across sessions. The crown jewel.
SHA-256, MD5, bcrypt, HMAC, UUID generation, base64, hex encode/decode, random bytes. All client-side compute.
DNS lookups, SSL certificate inspection, HTTP fetch with custom headers, IP geolocation, port scanning, WHOIS.
Token counting, prompt scoring, summarisation, entity extraction, sentiment analysis, embedding similarity.
Run Python, evaluate JavaScript expressions, parse JSON/YAML/TOML, regex matching, AST analysis, lint checks.
REM-cycle memory consolidation. Schedule overnight knowledge synthesis, snapshot branching, Bayesian memory scoring, episodic chains.
Slopshop implements the Model Context Protocol spec. Any MCP-compatible editor or agent shell gets your 1,400 tools automatically.
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.
If you have a local checkout, setup-mcp.js reads your environment, finds Claude Code's settings file, and writes the correct config automatically.
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.
# Set your key first export SLOPSHOP_KEY=sk-slop-xxx # Auto-configure Claude Code node setup-mcp.js