Access all MCP servers through a single unified gateway. MCP360 provides seamless access to 100+ MCP tools from the Marketplace plus support for your custom MCPs, allowing you to discover and execute tools from any connected MCP server through one simple interface.
- 🔍 Search & Execute - Check available tools across all connected MCP servers and execute them dynamically
- 🌐 Universal Access - Single gateway to marketplace MCPs and your custom MCPs
- 🔐 Secure - API key authentication
- 📦 Easy Setup - Works with Claude Desktop and any MCP-compatible client
- ⚡ Fast - Instant tool discovery and execution
- 🔌 Extensible - Add unlimited custom MCP servers
Once configured, you can interact with all your MCP tools through natural language:
You: "Execute verify_email with email test@example.com"
→ Returns: Email validation results
You: "can you do keyword research for "AI Agent" related keywords using MCP360"
→ Returns: Keyword research results
You: "Find cryptocurrency tools"
→ Returns: get_crypto_price, crypto_market_data...
You: "Get Bitcoin price"
→ Returns: Current BTC price and market data
npm install -g @mcp360ai/unified-gatewaynpm install @mcp360ai/unified-gateway- Sign up at mcp360.ai
- Navigate to Settings → API Keys
- Generate a new API key
Edit your Claude Desktop config file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"mcp360": {
"command": "npx",
"args": ["@mcp360ai/unified-gateway"],
"env": {
"MCP360_API_KEY": "your_api_key_here"
}
}
}
}Or if installed globally:
{
"mcpServers": {
"mcp360": {
"command": "mcp360-gateway",
"env": {
"MCP360_API_KEY": "your_api_key_here"
}
}
}
}Restart Claude Desktop to load the gateway.
The Universal Gateway provides access to:
- Keyword Research - SEO keyword research and search volumes
- OnPage SEO Checker - Analyze website SEO elements
- Email Verification - Validate email addresses
- Web Scraping - Extract content from websites
- Google Trends - Search trends and interest data
- Cryptocurrency - Real-time crypto prices and market data
All custom MCP servers you've created in your MCP360 account.
- Execute the tool:
User: Verify email "john@example.com" is valid using MCP360
MCP360_API_KEY(required): Your MCP360 API keyMCP360_GATEWAY_URL(optional): Custom gateway URL (defaults tohttps://connect.mcp360.ai/v1/mcp360/mcp)
git clone <repository-url>
cd mcp360-package
npm install
npm run buildnpm run devnpm run type-checkClaude Desktop
↓
@mcp360ai/unified-gateway (this package)
↓
MCP360 Universal Gateway API
↓
┌─────────────────────────────────┐
│ Marketplace MCPs │
│ - Keyword Research │
│ - Email Verification │
│ - Web Scraping │
│ - etc. │
└─────────────────────────────────┘
+
┌─────────────────────────────────┐
│ Your Custom MCPs │
│ - Custom integrations │
│ - Private tools │
└─────────────────────────────────┘
The gateway:
- Authenticates with your API key
- Aggregates all available tools from marketplace and custom MCPs
- Exposes them through 2 simple meta-tools:
searchandexecute
- Check that your
claude_desktop_config.jsonis valid JSON - Verify your API key is correct
- Restart Claude Desktop completely
- Check Claude Desktop logs for errors
- Verify your API key is valid and not expired
- Ensure you have the correct permissions in your MCP360 account
- Check that the API key hasn't been revoked
- Use
searchfirst to discover the correct tool name - Check that all required parameters are provided
- Verify parameter types match what the tool expects
- Review Claude Desktop logs for detailed error messages
For detailed API documentation, visit: help.mcp360.ai
- 📚 Documentation: help.mcp360.ai
- 🐛 Issues: github.com/mcp360/unified-gateway-mcp/issues
- 📧 Email: support@mcp360.ai
- 💬 Discord: discord.gg/mcp360
MIT
Contributions are welcome! Please read our contributing guidelines before submitting pull requests.
Made with ❤️ by MCP360