mcp-slop-adapter

MCP to SLOP Adapter

A lightweight adapter that connects MCP (Model Context Protocol) clients like Claude Desktop with any SLOP (Simple Language Open Protocol) compatible server.

What is MCP and SLOP?

Features

This adapter bridges MCP and SLOP by:

Installation & Usage

Using npx

You can run the adapter directly using npx:

npx @kortexa-ai/mcp-slop-adapter http://your-slop-server-url

Global Installation

npm install -g @kortexa-ai/mcp-slop-adapter
mcp-slop-adapter http://your-slop-server-url

Configuring Claude Desktop

To connect Claude Desktop with a SLOP server:

  1. Make sure your SLOP server is running
  2. Edit Claude Desktop’s configuration file:
    • Windows: %APPDATA%\Claude\claude_desktop_config.json
    • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  3. Add the following configuration:
{
    "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.

Debugging

You can use the MCP Inspector to connect to the adapter and inspect your SLOP server.

Exposed MCP Capabilities

This adapter exposes:

License

MIT