Execute an MCP tool through SLOP
Executes MCP tools through SLOP with flexible argument formats and auto-discovery.
/plugin marketplace add standardbeagle/standardbeagle-tools/plugin install slop-mcp@standardbeagle-toolsExecute any tool from any SLOP-managed MCP server using a unified interface.
/slop-exec <server>.<tool> [arguments...]
/slop-exec <tool> [arguments...] # Auto-discovers server
/slop-exec filesystem.read_file path=/etc/hosts
/slop-exec lci.search '{"pattern": "function", "max": 10}'
/slop-exec filesystem.read_file /etc/hosts
# Read a file
/slop-exec filesystem.read_file path=/home/user/README.md
# Search code
/slop-exec lci.search pattern="TODO" max=20
# Get GitHub issues
/slop-exec github.list_issues owner=anthropics repo=claude-code state=open
# Execute with JSON
/slop-exec brave.search '{"query": "MCP protocol", "count": 5}'
If server is not specified, SLOP searches all servers for the tool:
# These are equivalent if only filesystem has read_file
/slop-exec filesystem.read_file path=/etc/hosts
/slop-exec read_file path=/etc/hosts
If multiple servers have the same tool name, you'll be prompted to choose.
Executes via SLOP's /tools endpoint:
POST /tools
{
"tool": "filesystem.read_file",
"arguments": {"path": "/etc/hosts"}
}