Nexian MCP Hub

Nexian MCP Hub

A multi-tenant integration platform that connects MSP systems like HaloPSA, Microsoft 365, and HubSpot to a single remote MCP server. It provides normalized, AI-safe tools for managing third-party services with built-in security policies and audit logging.

Category
Visit Server

README

Nexian MCP Hub

Nexian MCP Hub is a multi-tenant MSP integration platform that lets each tenant connect third-party systems and expose normalized, AI-safe tools through a single remote MCP server.

Monorepo layout

  • apps/web: Next.js admin and end-user app
  • apps/api: backend API for auth, tenant management, connectors, OAuth callbacks, and audit APIs
  • apps/mcp: remote MCP server with bearer-token protected HTTP endpoints
  • packages/core: shared domain types, security primitives, MCP models, validation helpers
  • packages/connectors: provider adapters and normalized tool implementations
  • prisma: Postgres schema and seed-ready models
  • docker: local container assets
  • docs: architecture, deployment, and security notes

Local setup

  1. Install Node.js 22+ and pnpm.
  2. Copy .env.example to .env and fill in provider credentials.
  3. Start infrastructure:
docker compose up -d
  1. Install dependencies:
pnpm install
  1. Generate Prisma client and run migrations:
pnpm db:generate
pnpm db:migrate
  1. Start the stack:
pnpm dev

Vercel deployment

Deploy the apps/web Next.js app as the Vercel project.

Recommended Vercel settings:

  • Root Directory: apps/web
  • Install Command: pnpm install
  • Build Command: pnpm build
  • Output Directory: leave empty for Next.js auto-detection

Environment variables to set in Vercel:

  • NEXT_PUBLIC_API_URL
  • NEXT_PUBLIC_MCP_URL
  • API_URL
  • APP_URL

This repo keeps apps/api and apps/mcp as separate Node services. For production, deploy those on a container host and point the Vercel frontend to them via environment variables.

Railway deployment

Use Railway for the backend split:

  • apps/api on Railway
  • apps/mcp on Railway
  • apps/web on Vercel

The practical setup guide is in:

  • docs/railway-vercel-deploy.md

Important production env relationships:

  • APP_URL should be your Vercel web URL
  • API_URL should be your Railway API URL
  • MCP_URL should be your Railway MCP URL
  • HALOPSA_REDIRECT_URI should point to the Railway API callback URL
  • NEXT_PUBLIC_API_URL in Vercel should point to the Railway API URL
  • NEXT_PUBLIC_MCP_URL in Vercel should point to the Railway MCP endpoint URL
  • SESSION_SECRET must match between the API and MCP services

Product architecture

  • Web users authenticate with the platform and act within a tenant workspace.
  • Connected accounts are stored per tenant and user, with access and refresh tokens encrypted at rest.
  • The API owns OAuth callback handling, token refresh, policy checks, audit logging, and connector lifecycle.
  • The MCP server validates Authorization: Bearer <token> on every HTTP request and routes each tool call through tenant-aware policies.
  • Provider-specific logic stays inside adapters; only normalized tools are exposed externally.

Version 1 connector scope

  • HaloPSA
  • Microsoft 365 / SharePoint
  • HubSpot as CRM
  • IT Glue as documentation / KB

Guardrails

  • Read-heavy tools first
  • Safe writes only for low-risk workflows such as draft ticket creation and internal notes
  • No destructive writes in v1
  • All tool invocations generate audit events

Next implementation milestones

  1. Wire real auth and persistence into the API module skeletons.
  2. Add Prisma migrations and database client bootstrapping.
  3. Replace connector placeholders with live provider SDK or REST integrations.
  4. Add integration tests for OAuth, token refresh, and MCP tool execution.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured