Quickstart Guide

Get started with MCPHub in just a few minutes. This guide will walk you through discovering, testing, and integrating MCP servers.

🚀 Step 1: Create an Account

Sign up for MCPHub using your Google or GitHub account:

Click Sign In

Use the profile icon in the top right

Choose Provider

Select Google or GitHub

Authorize

Grant permissions to MCPHub

🔍 Step 2: Discover MCP Servers

Browse our curated collection of MCP servers:

📚 Browse All

Explore all available MCP servers with ratings, descriptions, and documentation.

Browse Servers

🏷️ Browse by Tags

Find servers by category: search, database, file-system, web-scraping, etc.

View Tags

🧪 Step 3: Test MCP Servers

Before integrating, test MCP servers in our hosted environment:

Online Inspector

Test Tools Directly

Use the Inspector tab on any MCP server page to test tools with real parameters and see actual responses.

Online Client

Try MCP servers in a full chat interface:

  • Visit the Online Client
  • Install MCP servers from the plugin list
  • Chat with AI assistants that have access to MCP tools
  • See real-time tool usage and responses

⚙️ Step 4: Get Configuration

MCPHub provides ready-to-use configuration for your applications:

Server Config via MCPHub

$ curl https://api.mcphub.com/slug/server-name
> Returns: MCP server endpoint

Path-Based Authentication

For servers requiring credentials, use path-based authentication:

{
  "mcpServers": {
    "server-name": {
      "url": "https://api.mcphub.com/auth/YOUR_API_KEY/server-slug"
    }
  }
}

🔧 Step 5: Integration Examples

Claude Desktop

// claude_desktop_config.json
{
  "mcpServers": {
    "search": {
      "url": "https://api.mcphub.com/slug/mcphub-com-llm-search",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

Custom Integration

// Using @modelcontextprotocol/sdk
import { Client } from '@modelcontextprotocol/sdk/client/index.js';

const client = new Client({
  name: "my-app",
  version: "1.0.0"
});

await client.connect({
  url: "https://api.mcphub.com/slug/server-name",
  headers: {
    "Authorization": "Bearer YOUR_API_KEY"
  }
});

🎉 You're Ready!

You've successfully learned how to use MCPHub. Start exploring MCP servers and building amazing AI applications!
Need help? Check out our FAQ orAPI Reference.