Installation
SLOP MCP can be installed via pip, npm, or as a standalone binary.
Recommended: pip
pip install slop-mcp
This installs the slop-mcp binary globally.
Alternative: npm/npx
# Run directly without installing
npx @standardbeagle/slop-mcp serve
# Or install globally
npm install -g @standardbeagle/slop-mcp
Binary Download
Download pre-built binaries from the GitHub Releases page:
| Platform | Architecture | Download |
|---|---|---|
| Linux | x64 | slop-mcp-linux-amd64 |
| Linux | ARM64 | slop-mcp-linux-arm64 |
| macOS | x64 (Intel) | slop-mcp-darwin-amd64 |
| macOS | ARM64 (Apple Silicon) | slop-mcp-darwin-arm64 |
| Windows | x64 | slop-mcp-windows-amd64.exe |
# Example: Linux x64
curl -L https://github.com/standardbeagle/slop-mcp/releases/latest/download/slop-mcp-linux-amd64 -o slop-mcp
chmod +x slop-mcp
sudo mv slop-mcp /usr/local/bin/
Build from Source
git clone https://github.com/standardbeagle/slop-mcp.git
cd slop-mcp
make build
# Binary at ./build/slop-mcp
Verify Installation
slop-mcp --version
# slop-mcp v0.3.0
Claude Code Integration
To use SLOP MCP with Claude Code, add it to your MCP configuration:
Using the Marketplace (Recommended)
Install the slop-mcp plugin from the standardbeagle-tools marketplace:
claude mcp install standardbeagle/slop-mcp
Manual Configuration
Add to your Claude Code settings (~/.claude/settings.json):
{
"mcpServers": {
"slop-mcp": {
"command": "slop-mcp",
"args": ["serve"]
}
}
}
Or if using npx:
{
"mcpServers": {
"slop-mcp": {
"command": "npx",
"args": ["-y", "@standardbeagle/slop-mcp", "serve"]
}
}
}
Windows users: Claude Code on Windows may corrupt scoped package names (converting / to \). Use cmd /c to wrap the npx call:
{
"mcpServers": {
"slop-mcp": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@standardbeagle/slop-mcp@latest", "serve"]
}
}
}
Next Steps
- Quick Start Guide - Add your first MCP
- Configuration - Learn about KDL config files