Skip to main content

Installation

SLOP MCP can be installed via pip, npm, or as a standalone binary.

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:

PlatformArchitectureDownload
Linuxx64slop-mcp-linux-amd64
LinuxARM64slop-mcp-linux-arm64
macOSx64 (Intel)slop-mcp-darwin-amd64
macOSARM64 (Apple Silicon)slop-mcp-darwin-arm64
Windowsx64slop-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:

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