Unified MCP Gateway, Marketplace & Custom MCPs

by mcp360

379 downloads
Not rated
GitHub

About

Unified MCP gateway that gives AI agents access to 100+ tools, marketplace MCPs, and custom MCP servers through simple search and execute workflows.

Details

Author
mcp360
Downloads
379
Categories
Developer Tools, API, Automation, AI, Other

- Single integration point for 100+ pre-integrated tools
- Two core meta-tools: search and execute
- Automatic failover and standardized response formatting
- Future-proof design: new tools added without redeployment
- Enterprise-grade security (SOC 2 Type II, GDPR, ISO 27001)
- Supports Claude, n8n, OpenAI Agent Builder, custom AI agents

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name Unified MCP Gateway, Marketplace & Custom MCPs
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Install the gateway locally using npm or npx, configure it with the provided configuration blocks, then start the gateway and connect your MCP clients. No credit card is required to begin.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "unified mcp gateway, marketplace & custom mcps": {
            "mcp360": {
                "command": "npx",
                "args": [
                    "-y",
                    "@mcp360/universal-gateway"
                ],
                "env": {
                    "MCP360_API_KEY": "your_api_key_here"
                }
            }
        }
    }
}

McpServers

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

Get Started•Features•Documentation•Support

MCP360 is a unified MCP gatewaythat gives AI agents access to100+ 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 ownCustom MCPswhen you need specific logic or data.
- Sign upat
mcp360.ai🎉
- Navigate toSettings → API Keys⚙️
- ClickGenerate New Key🔑
- Copy your API key securely 📋

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

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

Restart Claude Desktopand you're ready! 🎊
- Open Cursor Settings:Cmd/Ctrl + Shift + J
- Navigate to theMCPsection
- Add server configuration:

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

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

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

Restart Claude Codeto load the gateway! ✨

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

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

- Install theCline extension
- OpenCline settings
- Add MCP server configuration:

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

Reload VS Codeto activate the gateway! 💡
- Go to yourYourGPT Dashboard
- SelectFunctionsfrom the sidebar
- Choose theMCP Serveroption
- You'll see two options:

- Browse Marketplace MCP- Select from pre-configured MCP servers
- Add Custom MCP- Add your own MCP server configuration

- SelectAdd MCP
- Enter the server details:

- Name:mcp360
- URL:https://connect.mcp360.ai/v1/mcp360/mcp?token=YOUR_API_KEY

Save and activateto start using MCP360 in YourGPT! 🎉

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 3: Start the gateway and verify health

openclaw gateway openclaw gateway status openclaw doctor

All health checks must pass before proceeding.

Step 4: Install MCP tooling for inspection

Step 5: Create a stable MCP configuration directory

Step 6: Register MCP360 as an MCP server

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

Ifmcporter listreturns structured tool definitions, your MCP360 connection is working correctly. ✅

Tip:Useopenclaw tuito run OpenClaw in the terminal instead of the dashboard.

📖 For a full walkthrough, see theOpenClaw + MCP360 setup guide.

Forfaster startup times, install globally:

npm install -g @mcp360/universal-gateway

Then update your config to use the global command:

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

The gateway provides2 powerful meta-toolsthat unlock access to 100+ services:

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

- query(optional): Search term to filter by name or description

💬 "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.

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

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

💬 "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.

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

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]
# 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, ... }

- 🔐Authenticatewith your API key
- 🔄Aggregateall available tools from marketplace and custom MCPs
- 🎯Exposethem through 2 simple meta-tools:searchandexecute
- ⚡Executetools dynamically based on your requests

For enterprise deployments or custom configurations:

{ "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" } } } }

MCP360 supportsflexible authenticationto get you started quickly:
- Sign upatmcp360.ai🎉
- Navigate toSettings → API Keys⚙️
- ClickGenerate New Key🔑
- Copy your API key and add it to your configuration 📋

No API key? No problem!Simply connect MCP360 without an API key, and our OAuth 2.0 flow will automatically activate:
- 🌐 Your browser opens to the MCP360 sign-in page
- 🔓 You grant permission to access your MCP360 account
- 📂 You select your project and API key
- ✅ Authentication completes seamlessly

- ⚡ 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.

🛡️ Security Compliance & Certifications

MCP360 is built with enterprise security at its core, ensuring your data is protected with industry-leading standards.

- 🔐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

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

This project is licensed under theMIT License- see theLICENSEfile for details.

- 🌟 All our contributors
- 💡 The Anthropic team for Claude Desktop
- 🚀 The open-source community

If you find MCP360 Universal Gateway helpful, please consider giving us a star ⭐

This is a web browser that enables your coding agent, such as Claude Code, to visit websites on your behalf and assist you in identifying bugs or creating UI test cases.

Agent-native developer Q&A API with MCP + A2A endpoints for citations, job pickup, and answer submission.

Agent-first skill marketplace — search, evaluate, and install skills across 7 AI platforms via MCP. Features Supply Loop where agents become contributors.

Open-source, self-hosted AI gateway with built-in MCP client and server support for connecting MCP tools to AI applications.

Integrate with the Flowise API to create predictions and manage chatflows and assistants.

a complete and intuitive SDK for building MCP Servers, MCP Agents, and LLM integrations (OpenAI, Claude, Gemini) with minimal effort. It abstracts all the complexity of the MCP protocol, provides an intelligent agent with automatic model routing, and includes a universal client for external APIs all through a single, simple, and powerful interface. Perfect for chatbots, enterprise automation, internal system integrations, and rapid development of MCP-based ecosystems.

Meta-MCP gateway: search ~75k MCP servers from the public registries via five meta-tools and call any of them on the fly — local-first, with SSRF guard and stdio allowlist.

A Node.js server for AI agents to discover, install, and manage new capabilities on demand via the MCP protocol.

Autonomous API discovery and subscription — agents browse APIs, get live keys, and make calls with no human involvement.

Curated MCP connector marketplace for industry verticals — Construction, Finance, Healthcare, and Logistics with full docs, curl examples and sandbox testing.

A web app for managing MCP servers, offering a unified interface to discover, configure, and utilize AI tools.

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.