MCP360 - Universal MCP Gateway

Universal gateway to all MCPs - integrate once, access everything

Overview

MCP360 is the central mcp server marketplace — a unified discovery and integration gateway where developers connect AI agents to every tool in the ecosystem through a single authenticated endpoint, without configuring individual servers separately.

It acts as an intelligent router between large language models and the full MCP360 service catalogue. Instead of managing per-service authentication, rate limits, and connection overhead for each mcp server independently, agents register once and gain immediate access to every tool across the platform — from web search and scraping to financial data, maps, email validation, and beyond.

By integrating MCP360, developers enable models such as Claude, GPT-4, Gemini, and open-source LLMs to:

• Dynamically discover and query available tools across all services in the mcp server marketplace • Execute any MCP tool in the ecosystem through a single unified interface • Orchestrate multi-step agentic workflows that span multiple live data sources • Access real-time data from dozens of services without managing per-service credentials

MCP360 handles authentication, credit tracking, rate limiting, and routing centrally — dramatically reducing integration complexity and accelerating agent development. It is the backbone of production AI workflows where a single agent must coordinate multiple data sources in real time, and the fastest path to building sophisticated multi-tool pipelines on the MCP360 platform.

Highlights

Protocol
MCP v1.0
Security
OAuth 2.0
Access
Real-time
Tools
2 Tools

Standardized bridge for real-time model context.

Installation

Connect this server to your local or remote agent environment.

mcp_config.json
{
  "mcpServers": {
    "mcp360": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://connect.mcp360.ai/v1/mcp360/mcp?token=YOUR_API_KEY"
      ]
    }
  }
}
Replace YOUR_API_KEY with your actual key from the dashboard.

Skills & Capabilities

What this MCP server can do for your AI agents.

CAPABILITIES
--- name: mcp360 description: Universal gateway to access all MCP360 services through a single integration point. Search and discover available tools across all services, execute any MCP tool dynamically, and aggregate multiple service calls. Use when users need to discover available tools, integrate with multiple services without separate connections, execute tools dynamically without knowing the exact service, or build meta-applications that orchestrate multiple MCPs. metadata: author: MCP360 version: "1.0.0" tags: - Gateway - Meta Service - Universal Access - Service Discovery - Integration Hub - Orchestration - Aggregation - Proxy keywords: - gateway - universal - mcp - meta - discovery - search - execute - aggregate - proxy - router - hub - marketplace - integration - all-in-one - unified - single-point - orchestrator creditsPerUse: 0 isPremium: false --- # MCP360 - Universal MCP Gateway Meta-service that provides unified access to all MCP360 services through a single integration point. Discover available tools across the entire platform, execute any MCP tool dynamically, and build sophisticated applications that orchestrate multiple services without managing separate connections. ## Core Capabilities - **Service Discovery**: Search and explore all available MCP services and their tools by keywords or categories, and returns comprehensive service catalog with tool listings, descriptions, input schemas, credit costs, and capability summaries for integration planning - **Dynamic Tool Execution**: Execute any tool from any MCP service through a unified interface without pre-configured connections, and returns tool execution results with automatic routing, parameter validation, credit tracking, and error handling for seamless multi-service workflows ## API Access ### MCP360 Connect Endpoints - **Base URL**: `https://connect.mcp360.ai/api/v1` - **Service Path**: `mcp360` - **Authentication**: Bearer token (API key required) ### Service Metadata Endpoint ```bash curl "https://connect.mcp360.ai/api/v1/mcp360" \ -H "Authorization: Bearer YOUR_API_KEY" ``` ### Tool Execution Endpoint ```bash curl -X POST "https://connect.mcp360.ai/api/v1/mcp360/{tool_name}" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{...parameters...}' ``` ## Available Tools ### Search Services and Tools Discover available MCP services and tools across the entire platform with keyword-based filtering. **Tool Name:** `search` **Credits Required:** 0 (free discovery) **Parameters:** - `query` (string, optional): Search keywords to filter tools by name, description, or category like "search", "weather", "seo", "video" - `limit` (number, optional): Maximum number of results to return from 1 to 100 (Default: 50) **Example - Discover All Services:** ```bash curl -X POST "https://connect.mcp360.ai/api/v1/mcp360/search" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "limit": 20 }' ``` **Example - Search for Specific Tools:** ```bash curl -X POST "https://connect.mcp360.ai/api/v1/mcp360/search" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "query": "video search", "limit": 10 }' ``` **Response Format:** ```json { "total_services": 38, "total_tools": 104, "results": [ { "service": "youtube", "service_name": "YouTube Tools", "tool": "search_videos", "description": "Find videos using keywords with filters", "credits": 1, "input_schema": { "query": {"type": "string", "required": true}, "country": {"type": "string", "optional": true} } }, { "service": "google-search", "service_name": "Google Search Tools", "tool": "search_web", "description": "Perform Google web searches", "credits": 1 } ] } ``` ### Execute Tool Dynamically Execute any tool from any MCP service through the gateway with automatic routing and validation. **Tool Name:** `execute` **Credits Required:** 0 (credits charged by target service) **Parameters:** - `service` (string, required): Target service path like "youtube", "google-search", "weather", "amazon-search" - `tool` (string, required): Tool name to execute like "search_videos", "get_current_weather", "search_products" - `parameters` (object, required): Tool-specific parameters as JSON object with keys and values matching the tool's input schema **Example - Execute YouTube Search:** ```bash curl -X POST "https://connect.mcp360.ai/api/v1/mcp360/execute" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "service": "youtube", "tool": "search_videos", "parameters": { "query": "machine learning tutorial", "country": "us" } }' ``` **Example - Execute Weather Forecast:** ```bash curl -X POST "https://connect.mcp360.ai/api/v1/mcp360/execute" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "service": "weather", "tool": "get_weather_forecast", "parameters": { "city": "London", "country": "UK" } }' ``` **Example - Execute Amazon Product Search:** ```bash curl -X POST "https://connect.mcp360.ai/api/v1/mcp360/execute" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "service": "amazon-search", "tool": "search_products", "parameters": { "query": "wireless headphones", "country": "us", "min_rating": 4.0 } }' ``` **Example - Execute Currency Conversion:** ```bash curl -X POST "https://connect.mcp360.ai/api/v1/mcp360/execute" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "service": "currency-converter", "tool": "convert_currency", "parameters": { "have": "USD", "want": "EUR", "amount": 1000 } }' ``` ## Use Cases ### Meta-Applications Build applications that need access to multiple MCP services without managing separate API connections. ### Dynamic Tool Discovery Allow users to discover and execute tools at runtime without hardcoding service endpoints. ### Service Orchestration Chain multiple service calls together through a single integration point. ### API Aggregation Aggregate results from multiple services in a unified interface. ### Rapid Prototyping Quickly test and integrate new services without changing infrastructure. ## Authentication All API requests require a Bearer token for authentication: ```bash -H "Authorization: Bearer YOUR_API_KEY" ``` ## Rate Limiting - Service discovery (search): 0 credits per request (free) - Tool execution (execute): Credits charged by target service - Rate limit: 1000 requests per hour - Concurrent requests: Up to 10 parallel calls ## Benefits - **Single Integration**: One API key accesses all 38+ services - **Dynamic Discovery**: Find tools at runtime without documentation - **Unified Interface**: Consistent API across all services - **Automatic Routing**: Gateway handles service connections - **Credit Transparency**: Clear credit costs before execution - **Schema Validation**: Automatic parameter validation - **Error Handling**: Standardized error responses ## Support - **Blog & Tutorials**: https://mcp360.ai/blog - **Contact**: https://mcp360.ai/contact
These capabilities are available through the MCP protocol interface.

Available Tools

Technical specifications for the 2 available protocol tools.

2 tools

execute tool

Input Specification
{
  "type": "object",
  "required": [
    "service",
    "tool",
    "parameters"
  ],
  "properties": {
    "tool": {
      "type": "string"
    },
    "service": {
      "type": "string"
    },
    "parameters": {
      "anyOf": [
        {
          "type": "object",
          "additionalProperties": {}
        },
        {
          "type": "string"
        }
      ]
    }
  },
  "additionalProperties": false
}
Output Response

None specified.

Direct API Access

Production-ready REST endpoints for custom integrations.

POSTServer Metadata
/api/v1/mcp360
curl "https://connect.mcp360.ai/api/v1/mcp360" \
  -H "Authorization: Bearer YOUR_API_KEY"
POSTExecute Tool
/api/v1/mcp360/{tool_name}
curl -X POST "https://connect.mcp360.ai/api/v1/mcp360/execute" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "service": "string",
  "tool": "string",
  "parameters": {}
}'
Authentication

To authenticate, include your API key in the Authorization header using the Bearer scheme. Alternatively, you can use the X-API-KEY header.

Infrastructure

Unified MCP Gateway

One hub for 100+ production-ready tools with centralized management.

Unified API Key

Access 100+ MCP servers with a single authentication token.

Instant Testing

Test and debug any MCP server instantly in our integrated environment.

Centralized Billing

One monthly subscription for all your AI tool integrations and credits.

Scenarios

Standard Use Cases

Discover and connect to MCP-compatible AI tools through the mcp server marketplace to extend your AI agent's capabilities instantly
Use MCP360 to browse, install, and manage MCP servers that give AI assistants access to real-time data, APIs, and automation tools
Integrate third-party MCP servers from the marketplace into Claude, GPT, or custom agents to unlock specialized domain knowledge
Build and publish your own MCP server on the MCP360 marketplace to reach developers who need your data or tool as an AI integration
Manage multi-MCP configurations in one place, enabling AI workflows that chain multiple marketplace servers for complex task automation

Frequently Asked Questions

What is MCP360 - Universal MCP Gateway?

MCP360 - Universal MCP Gateway is an MCP server that provides structured access to mcp360 - universal mcp gateway capabilities through a standardized protocol, enabling AI models to retrieve and process real-time data.

Which AI models are supported?

Any model that supports MCP protocol including Claude (via Claude Desktop), GPT-4, Gemini, and open-source LLMs through compatible frameworks.

How do I authenticate?

The server supports OAuth 2.0 authentication with API keys. You'll receive credentials upon registration which can be configured in your MCP client.

Is there rate limiting?

Yes, rate limits apply based on your subscription tier. Free tier includes generous limits for development, with higher limits available in paid plans.

Can I use this in production?

Absolutely. MCP360 - Universal MCP Gateway is designed for production use with enterprise-grade reliability, security, and performance.

Deploy AI agent with MCP360 - Universal MCP Gateway today.

Start building production-ready AI agent integrations in minutes with standardized protocol access.

Enterprise Ready
Secure OAuth
24/7 Support