Skip to main content
Glama
topaisaas-dev

Universal Native MCP Server Hub

Universal Native MCP Server Hub

Universal Model Context Protocol (MCP) Server Hub for Claude Code, Cursor, Windsurf, and Antigravity

Cloudflare Workers License Uptime OpenAPI RapidAPI

With the rise of autonomous coding assistants and agents (Claude Code, Cursor, Windsurf, Antigravity, CrewAI, LangChain), the Model Context Protocol (MCP) has become the universal standard for tool calling.

Instead of installing 10 separate local servers or bloated Docker containers, Universal Native MCP Server Hub bundles 9 production-grade AI primitives into a single serverless edge hub running with 0ms cold-start latency across 300+ global Cloudflare locations.


📦 9 Native Pre-Bundled MCP Tools

  1. topai_web_to_markdown: Extract ad-free, noise-free Markdown from any public URL.

  2. topai_company_enrichment: 70+ technographics, employee range, and B2B firmographics from domain.

  3. topai_ai_web_search: Real-time grounding search engine for LLMs with citations.

  4. topai_math_fact_checker: Deterministic VAT, invoice reconciliation, and business days to stop hallucinations.

  5. topai_techstack_fingerprint: Sub-50ms BuiltWith alternative (Shopify, Stripe, HubSpot, Next.js).

  6. topai_polymarket_arbitrage: Prediction market odds, cross-platform delta vs bookmakers, and Kelly sizing.

  7. topai_token_slimmer: Lossless HTML & JSON compressor to slash input token costs by 30-70%.

  8. topai_prompt_shield: Sub-millisecond firewall against prompt injection, jailbreaks, and PII leaks.

  9. topai_invoice_extractor: Structured financial entity parser (vendor, IBAN, amounts, line items).


Related MCP server: BYOB MCP Server

🚀 Quick Setup in Your IDE

1. Cursor (.cursor/mcp.json)

Add to your project's .cursor/mcp.json or global Cursor settings:

{
  "mcpServers": {
    "topai-hub": {
      "url": "https://mcp-server-hub.topaisaas.workers.dev/sse"
    }
  }
}

2. Claude Desktop (claude_desktop_config.json)

{
  "mcpServers": {
    "topai-hub": {
      "url": "https://mcp-server-hub.topaisaas.workers.dev/sse"
    }
  }
}

3. Windsurf (mcp_config.json)

{
  "mcpServers": {
    "topai-hub": {
      "serverUrl": "https://mcp-server-hub.topaisaas.workers.dev/sse"
    }
  }
}

4. Antigravity (mcp_servers.json)

{
  "topai-hub": {
    "url": "https://mcp-server-hub.topaisaas.workers.dev/sse",
    "description": "TopAI SaaS Universal MCP Hub with 9 production tools"
  }
}

🛠️ Direct REST & JSON-RPC Usage

List Available Tools (GET)

curl "https://mcp-server-hub.topaisaas.workers.dev/v1/mcp/tools"

Execute a Tool via REST (POST)

curl -X POST https://mcp-server-hub.topaisaas.workers.dev/v1/mcp/call \
  -H "Content-Type: application/json" \
  -d '{
    "name": "topai_techstack_fingerprint",
    "arguments": {
      "domain": "gymshark.com"
    }
  }'

Response (Standard MCP Content Block):

{
  "success": true,
  "tool": "topai_techstack_fingerprint",
  "content": [
    {
      "type": "text",
      "text": "{\n  \"domain\": \"gymshark.com\",\n  \"technologies\": [\"Shopify\", \"Klaviyo\", \"Stripe\", \"Cloudflare\"],\n  \"detected_count\": 4,\n  \"sub_50ms\": true\n}"
    }
  ]
}

Standard MCP JSON-RPC 2.0 (POST /mcp)

curl -X POST https://mcp-server-hub.topaisaas.workers.dev/mcp \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": "1",
    "method": "tools/call",
    "params": {
      "name": "topai_math_fact_checker",
      "arguments": {
        "operation": "vat_calculate",
        "amount": 250,
        "rate_percent": 20
      }
    }
  }'

🛡️ Edge Security & SLAs

  • 0ms Cold-Start: Powered by Cloudflare Workers V8 isolates worldwide.

  • 100% Stateless: No user prompts, code, or arguments are logged or stored.

  • Spec Compliance: Fully compliant with the Anthropic Model Context Protocol (2024-11-05).

Related MCP Connectors

Related MCP Servers

  • F
    license
    A
    quality
    C
    maintenance
    Enables AI assistants to control a browser through Cloudflare Workers, allowing them to perform web automation tasks like navigation, typing, clicking, and taking screenshots. Provides 14 browser automation tools that can be used with various AI platforms including Claude Desktop and VS Code.
    7
    4,678 npm
    -
  • F
    license
    Not graded
    quality
    D
    maintenance
    Enables AI agents to dynamically discover and invoke containerized tools that can be registered at runtime without redeployment. Built on Cloudflare Workers with scale-to-zero containers for secure, isolated tool execution.
    -
  • F
    license
    Not graded
    quality
    C
    maintenance
    Enables AI assistants to control a web browser through tools for navigation, clicking, typing, and capturing screenshots using Cloudflare Workers. It allows models to perform complex web automation tasks and interact with live websites through a set of 14 specialized tools.
    4,678 npm
    -
  • F
    license
    Not graded
    quality
    C
    maintenance
    Provides 63 production-ready API tools for AI agents, including web scraping, AI generation, crypto data, OCR, image generation, audio transcription, text-to-speech, email, and domain lookup.
    1
    -