MCP360 - Universal MCP Gateway

Universal gateway to all MCPs - integrate once, access everything

Overview

MCP360 - Universal MCP Gateway is a production-ready Model Context Protocol (MCP) server built to give AI agents reliable, structured access to mcp360 - universal mcp gateway capabilities.

It acts as a standardized bridge between large language models and real-time data. Instead of relying on static training knowledge, models can retrieve live results, web content, and intelligence through a controlled MCP interface.

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

• Execute structured MCP360 - Universal MCP Gateway queries • Access live data in real time • Retrieve specialized information programmatically • Ground responses in verifiable external sources

This architecture significantly improves factual accuracy, reduces hallucination risk, and expands what AI systems can accomplish in research, automation, monitoring, and decision-support workflows.

MCP360 - Universal MCP Gateway is designed for teams building production AI agents that require dependable, real-time access to the mcp360 - universal mcp gateway within a standardized MCP ecosystem.

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

Automated research and data gathering
Real-time monitoring and alerting systems
Content generation with current information
Competitive analysis and market intelligence
Decision support with live data feeds
API integration for AI applications

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