trackmcp
Back to directory
mcp360

unified-gateway-mcp

View on GitHub

Unified MCP Gateway Platform, Marketplace & Custom MCPs

21 stars TypeScriptOthers Updated Jun 30, 2026
agent-toolsagentic-aiai-agentsclaudedeveloper-toolsmcpmcp360model-context-protocolno-codeworkflow-automation

Documentation


๐ŸŽฏ What is MCP360?

MCP360 is a unified MCP gateway that gives AI agents access to 100+ external tools, including prebuilt MCPs and custom MCP servers. You can connect your agents once and immediately run searches, research tasks, SEO workflows, and other operational actions. Instead of spending days integrating multiple APIs, connect to 100+ tools easily with a simple setup, or add your own Custom MCPs when you need specific logic or data.


โœจ Key Features

Smart Discovery

Find the perfect tool across all connected MCP servers

Universal Execution

Run any tool from any MCP server with a single command

Enterprise Security

API key authentication with secure token handling

Universal Access

Single gateway to marketplace MCPs and custom integrations

Lightning Fast

Optimized for performance with global CDN delivery

Universal Compatibility

Works with Claude Desktop, Cursor, Windsurf, VS Code & more


๐Ÿš€ Quick Start

Step 1: Get Your API Key

1. Sign up at mcp360.ai ๐ŸŽ‰

2. Navigate to Settings โ†’ API Keys โš™๏ธ

3. Click Generate New Key ๐Ÿ”‘

4. Copy your API key securely ๐Ÿ“‹

Step 2: Choose Your Platform

๐Ÿ–ฅ๏ธ Claude Desktop (Click to expand)

Configuration File Locations:

  • macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
  • Windows: `%APPDATA%\Claude\claude_desktop_config.json`

Add this configuration:

json
{
  "mcpServers": {
    "mcp360": {
      "command": "npx",
      "args": ["-y", "@mcp360/universal-gateway"],
      "env": {
        "MCP360_API_KEY": "your_api_key_here"
      }
    }
  }
}

Restart Claude Desktop and you're ready! ๐ŸŽŠ

๐ŸŽฏ Cursor

1. Open Cursor Settings: `Cmd/Ctrl + Shift + J`

2. Navigate to the MCP section

3. Add server configuration:

json
{
  "mcpServers": {
    "mcp360": {
      "command": "npx",
      "args": ["-y", "@mcp360/universal-gateway"],
      "env": {
        "MCP360_API_KEY": "your_api_key_here"
      }
    }
  }
}

Restart Cursor to activate! ๐Ÿš€

๐Ÿ’ป Claude Code

Configuration File Locations:

  • macOS/Linux: `~/.config/claude-code/mcp_settings.json`
  • Windows: `%APPDATA%\claude-code\mcp_settings.json`

Add this configuration:

json
{
  "mcpServers": {
    "mcp360": {
      "command": "npx",
      "args": ["-y", "@mcp360/universal-gateway"],
      "env": {
        "MCP360_API_KEY": "your_api_key_here"
      }
    }
  }
}

Restart Claude Code to load the gateway! โœจ

๐ŸŒŠ Windsurf

Configuration File Locations:

  • macOS: `~/Library/Application Support/Windsurf/mcp_config.json`
  • Windows: `%APPDATA%\Windsurf\mcp_config.json`

Add this configuration:

json
{
  "mcpServers": {
    "mcp360": {
      "command": "npx",
      "args": ["-y", "@mcp360/universal-gateway"],
      "env": {
        "MCP360_API_KEY": "your_api_key_here"
      }
    }
  }
}

Restart Windsurf to activate! ๐ŸŒŸ

๐Ÿ”ง VS Code (Cline Extension)

1. Install the Cline extension

2. Open Cline settings

3. Add MCP server configuration:

json
{
  "mcpServers": {
    "mcp360": {
      "command": "npx",
      "args": ["-y", "@mcp360/universal-gateway"],
      "env": {
        "MCP360_API_KEY": "your_api_key_here"
      }
    }
  }
}

Reload VS Code to activate the gateway! ๐Ÿ’ก

๐Ÿค– YourGPT

1. Go to your YourGPT Dashboard

2. Select Functions from the sidebar

3. Choose the MCP Server option

4. You'll see two options:

    Use MCP360 in YourGPT:

    • Select Add MCP
    • Enter the server details:
      • Name: `mcp360`
      • URL: `https://connect.mcp360.ai/v1/mcp360/mcp?token=YOUR_API_KEY`

    Save and activate to start using MCP360 in YourGPT! ๐ŸŽ‰

    ๐Ÿฆ€ OpenClaw

    OpenClaw is an open-source, self-hosted agent runtime that treats AI agents as long-lived managed processes with state, health, tooling, and execution boundaries. MCP360 connects to OpenClaw as a unified tool gateway.

    Step 1: Install OpenClaw globally

    bash
    npm i -g openclaw
    
    openclaw --version

    Step 2: Run initial configuration

    bash
    openclaw configure

    Step 3: Start the gateway and verify health

    bash
    openclaw gateway
    
    openclaw gateway status
    
    openclaw doctor

    > All health checks must pass before proceeding.

    Step 4: Install MCP tooling for inspection

    bash
    npm i -g mcporter
    
    mcporter --version

    Step 5: Create a stable MCP configuration directory

    bash
    mkdir -p ~/mcp
    
    cd ~/mcp

    Step 6: Register MCP360 as an MCP server

    bash
    mcporter config add mcp360 \
    --command 'npx mcp-remote "https://connect.mcp360.ai/v1/mcp360/mcp?token=YOUR_API_KEY"'

    Step 7: Confirm registration and verify tool access

    bash
    mcporter config list
    
    mcporter list

    If `mcporter list` returns structured tool definitions, your MCP360 connection is working correctly. โœ…

    > Tip: Use `openclaw tui` to run OpenClaw in the terminal instead of the dashboard.

    ๐Ÿ“– For a full walkthrough, see the OpenClaw + MCP360 setup guide.

    ๐Ÿš„ Pro Tip: Global Installation

    For faster startup times, install globally:

    bash
    npm install -g @mcp360/universal-gateway

    Then update your config to use the global command:

    json
    {
      "mcpServers": {
        "mcp360": {
          "command": "mcp360-gateway",
          "env": {
            "MCP360_API_KEY": "your_api_key_here"
          }
        }
      }
    }

    ๐Ÿ› ๏ธ Core Tools

    The gateway provides 2 powerful meta-tools that unlock access to 100+ services:

    1๏ธโƒฃ `search` - Discover Available Tools

    Find the perfect tool for your task across all connected MCP servers.

    Parameters:

    • `query` *(optional)*: Search term to filter by name or description

    Examples:

    bash
    ๐Ÿ’ฌ "Search for email tools"
    ๐Ÿ’ฌ "Show me all available tools"
    ๐Ÿ’ฌ "Find tools for SEO"
    ๐Ÿ’ฌ "What tools can help with keyword research?"

    Returns: Comprehensive list of matching tools with names, descriptions, and parameters.


    2๏ธโƒฃ `execute` - Run Any Tool

    Execute any tool from any connected MCP server with dynamic parameters.

    Parameters:

    • `tool_name` *(required)*: Name of the tool to execute
    • `arguments` *(optional)*: Tool-specific parameters as an object

    Examples:

    bash
    ๐Ÿ’ฌ "Execute verify_email with email 'test@example.com'"
    ๐Ÿ’ฌ "Run keyword_research with keyword 'AI tools'"
    ๐Ÿ’ฌ "Execute get_crypto_price for Bitcoin"

    Returns: Tool-specific results tailored to your request.


    ๐ŸŒŸ Available Services

    ServiceDescriptionUse Cases
    ๐Ÿ” Keyword ResearchSEO keyword analysis & search volumesContent strategy, SEO optimization
    ๐Ÿ“Š OnPage SEO CheckerWebsite SEO element analysisSite audits, optimization
    โœ‰๏ธ Email VerificationValidate email addressesList cleaning, form validation
    ๐Ÿ•ท๏ธ Web ScrapingExtract content from websitesData collection, monitoring
    ๐Ÿ“ˆ Google TrendsSearch trends & interest dataMarket research, trending topics
    ๐Ÿ’ฐ CryptocurrencyReal-time crypto prices & market dataPrice tracking, portfolio management

    All custom MCP servers you've created in your MCP360 account are automatically available through the Universal Gateway!


    ๐Ÿ“– Typical Workflow

    mermaid
    graph LR
        A[๐Ÿ” Discover Tools] --> B[๐Ÿ“‹ Check Parameters]
        B --> C[โšก Execute Tool]
        C --> D[๐Ÿ“Š Get Results]
        D --> E{Need More?}
        E -->|Yes| A
        E -->|No| F[โœ… Done]

    Example Session

    bash
    # Step 1: Discover
    User: "Search for email tools"
    โ†’ Returns: verify_email, send_email, email_lookup, etc.
    
    # Step 2: Check Details
    โ†’ See: verify_email requires { email: string }
    
    # Step 3: Execute
    User: "Execute verify_email with email 'john@example.com'"
    โ†’ Returns: { valid: true, deliverable: true, ... }

    How it works:

    1. ๐Ÿ” Authenticate with your API key

    2. ๐Ÿ”„ Aggregate all available tools from marketplace and custom MCPs

    3. ๐ŸŽฏ Expose them through 2 simple meta-tools: `search` and `execute`

    4. โšก Execute tools dynamically based on your requests


    ๐Ÿ”ง Configuration

    Environment Variables

    VariableDescriptionURL
    `MCP360_TOOL_URL`Your MCP360 API key`https://connect.mcp360.ai/v1/mcp360/_tool_name_/mcp`
    `MCP360_UNIVERSAL_GATEWAY`Custom gateway URL`https://connect.mcp360.ai/v1/mcp360/mcp`

    Custom Gateway URL

    For enterprise deployments or custom configurations:

    json
    {
      "mcpServers": {
        "mcp360": {
          "command": "npx",
          "args": ["-y", "@mcp360/universal-gateway"],
          "env": {
            "MCP360_API_KEY": "your_api_key_here",
            "MCP360_GATEWAY_URL": "https://your-custom-gateway.com/mcp"
          }
        }
      }
    }

    ๐Ÿš€ Quick Start

    Step 1: Get Your API Key (Optional)

    MCP360 supports flexible authentication to get you started quickly:

    ๐Ÿ”‘ Option 1: Manual API Key Setup

    1. Sign up at mcp360.ai ๐ŸŽ‰

    2. Navigate to Settings โ†’ API Keys โš™๏ธ

    3. Click Generate New Key ๐Ÿ”‘

    4. Copy your API key and add it to your configuration ๐Ÿ“‹

    ๐Ÿ” Option 2: Skip API Key - Use OAuth 2.0 (Automatic Fallback)

    No API key? No problem! Simply connect MCP360 without an API key, and our OAuth 2.0 flow will automatically activate:

    1. ๐ŸŒ Your browser opens to the MCP360 sign-in page

    2. ๐Ÿ”“ You grant permission to access your MCP360 account

    3. ๐Ÿ“‚ You select your project and API key

    4. โœ… Authentication completes seamlessly

    Benefits:

    • โšก Zero manual API key management
    • ๐Ÿ”„ Easy project switching
    • ๐Ÿ”’ Secure token-based authentication
    • ๐ŸŽฏ Granular permission control

    > Note: If you don't provide an API key in your configuration, OAuth 2.0 authentication will trigger automatically on first use.


    ๐Ÿ”’ Enterprise-Grade Security

    ๐Ÿ‡ช๐Ÿ‡บ GDPR Compliant

    Full compliance with European data protection regulations

    โœ“ Data Privacy

    โœ“ User Consent

    โœ“ Right to Delete

    ๐Ÿ” SOC 2 Type II

    Rigorous security, availability, and confidentiality controls

    โœ“ Security Controls

    โœ“ Availability

    โœ“ Confidentiality

    ๐Ÿ† ISO 27001

    International standard for information security management

    โœ“ Risk Management

    โœ“ Asset Protection

    โœ“ Continuous Improvement

    MethodSecurity LevelBest For
    OAuth 2.0๐Ÿ”’๐Ÿ”’๐Ÿ”’ HighestProduction environments, team access
    API Key๐Ÿ”’๐Ÿ”’ HighDevelopment, personal projects

    Security Features:

    • ๐Ÿ” Encrypted Communication: All data transmitted over TLS 1.3
    • ๐Ÿ”„ Token Rotation: Automatic OAuth token refresh
    • ๐Ÿ“Š Audit Logs: Complete activity tracking
    • ๐Ÿšซ Rate Limiting: Protection against abuse
    • ๐Ÿ›ก๏ธ DDoS Protection: Enterprise-grade infrastructure
    • ๐Ÿ” Anomaly Detection: AI-powered security monitoring

    ๐Ÿ“š Resources

    Learn how to set up, test, and manage MCP servers and functions using MCP360:

    ๐Ÿš€ MCP360 Integration with N8N

    Step-by-step installation, configuration, and your first tool execution. Perfect for beginners!

    โšก Building Real MCP Workflows

    Deep dive into powerful features, custom MCPs, and advanced workflows for power users.

    Help Center

    Comprehensive guides, API references, and best practices

    Dev.to Tutorial

    Build an Amazon Price Alert system with n8n integration

    Code Examples

    Ready-to-use code snippets and integration samples


    ๐Ÿ’ฌ Support & Community

    ๐Ÿ› Bug Reports & Features

    Report bugs, request features

    Issue Tracking โ€ข Feature Requests

    ๐Ÿ“ง Direct Support

    Assistance from our support team

    24-hr Response โ€ข Priority Support

    ๐Ÿ“„ License

    This project is licensed under the MIT License - see the LICENSE file for details.


    ๐Ÿ™ Acknowledgments

    Built with โค๏ธ by the team at MCP360

    Special thanks to:

    • ๐ŸŒŸ All our contributors
    • ๐Ÿ’ก The Anthropic team for Claude Desktop
    • ๐Ÿš€ The open-source community

    Frequently asked questions

    What is unified-gateway-mcp?

    unified-gateway-mcp is Unified MCP Gateway Platform, Marketplace & Custom MCPs

    How do I install unified-gateway-mcp?

    Open the GitHub repository and follow its README. Most MCP servers are added to your client's MCP config, then called by your agent.

    Is unified-gateway-mcp open source?

    Yes โ€” it is hosted on GitHub at https://github.com/mcp360/unified-gateway-mcp and has 21 stars.

    Related MCP tools

    Run your own MCP server? See who uses it and what to fix.

    Measure it with TrackMCP