A lightweight adapter that connects MCP (Model Context Protocol) clients like Claude Desktop with any SLOP (Simple Language Open Protocol) compatible server.
This adapter bridges MCP and SLOP by:
You can run the adapter directly using npx:
npx @kortexa-ai/mcp-slop-adapter http://your-slop-server-url
npm install -g @kortexa-ai/mcp-slop-adapter
mcp-slop-adapter http://your-slop-server-url
To connect Claude Desktop with a SLOP server:
%APPDATA%\Claude\claude_desktop_config.json
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"mcp-slop-adapter": {
"command": "npx",
"args": [
"@kortexa-ai/mcp-slop-adapter",
"http://your-slop-server-url"
]
}
}
}
Replace http://your-slop-server-url
with the URL of your SLOP server.
You can use the MCP Inspector to connect to the adapter and inspect your SLOP server.
This adapter exposes:
/tools
endpoint, plus chat
, memory-store
, memory-get
, and pay
/resources
endpointMIT