xpander-mcp-remote

The xpander-mcp-remote is a bridge utility that connects MCP clients (like Claude Desktop) to xpander.ai services. It enables MCP clients to access xpander agents and operations through a simple URL-based interface.

Installation

# Install globally (optional, as it's typically used with npx)
npm install -g xpander-mcp-remote

Usage

xpander-mcp-remote is typically used with npx to connect MCP clients like Claude Desktop to xpander.ai services:

npx xpander-mcp-remote https://mcp.xpander.ai/your-mcp-url/

Configuration in Claude Desktop

Add the following to your Claude Desktop configuration:

{
  "mcpServers": {
    "xpander": {
      "command": "npx",
      "args": [
        "xpander-mcp-remote",
        "https://mcp.xpander.ai/your-mcp-url/"
      ]
    }
  }
}

Features

The xpander-mcp-remote package creates a bridge between MCP clients and the xpander.ai platform, enabling:

  • MCP Composition: Selectively expose operations from multiple connectors
  • Agent Access: Trigger AI agents from MCP clients
  • Connector Integration: Connect MCP clients to specific connectors like GitHub, Slack, etc.

Advanced Configuration

Custom Port

You can specify a custom port for the local server:

npx xpander-mcp-remote https://mcp.xpander.ai/your-mcp-url/ --port 3001

Debug Mode

Enable debug mode for verbose logging:

npx xpander-mcp-remote https://mcp.xpander.ai/your-mcp-url/ --debug

For more detailed setup instructions, refer to the MCP Integration documentation.