MCPist
A gateway service that connects AI assistants to numerous external tools like Notion, GitHub, and Google Workspace through a single Model Context Protocol endpoint. It provides a centralized hub for managing multiple tool integrations with secure authentication and a unified API architecture.
README
MCPist
MCP (Model Context Protocol) gateway service — Connect AI assistants to external tools through a single endpoint.
Usage
Add to your MCP client configuration (Claude Code, Cursor, etc.):
{
"mcpServers": {
"mcpist": {
"url": "https://mcp.mcpist.app/v1/mcp",
"headers": {
"Authorization": "Bearer <your-api-key>"
}
}
}
}
Get your API key at mcpist.app.
Supported Modules
Notion, GitHub, Jira, Confluence, Google Workspace (Sheets, Docs, Drive, Calendar, Tasks), Todoist, TickTick, Microsoft Todo, Asana, Trello, Airtable, Dropbox, PostgreSQL, Grafana, and more.
Architecture
Console (Next.js / Vercel)
↓
Worker (Cloudflare Workers) — Auth + Routing
↓
Server (Go / Render) — MCP Handler + REST API
↓
PostgreSQL
Authentication
- User auth: Clerk (JWT) via Console
- API keys: Ed25519 JWT issued by Server
- Gateway auth: Worker signs short-lived JWT for Server-to-Server trust
Tech Stack
| Layer | Technology |
|---|---|
| Frontend | Next.js 16, React 19, Tailwind CSS, Radix UI |
| API Gateway | Cloudflare Workers, Hono, TypeScript |
| Backend | Go 1.24, GORM |
| Database | PostgreSQL |
| Auth | Clerk, Ed25519 JWT |
| Billing | Stripe |
| Observability | Grafana Loki |
| Monorepo | pnpm workspaces, Turborepo |
Development
Prerequisites
- Node.js 20+
- pnpm 9
- Go 1.24+
- Docker Desktop
Setup
pnpm install
cp .env.example .env.local # Edit with your values
pnpm env:sync
Run
pnpm dev
Starts PostgreSQL (Docker), Console, Server, and Worker concurrently.
| Service | URL | Description |
|---|---|---|
| PostgreSQL | localhost:57432 | Database (Docker) |
| Console | http://localhost:3000 | Web UI |
| Server | http://localhost:8089 | MCP Server |
| Worker | http://localhost:8787 | API Gateway |
pnpm db:down # Stop PostgreSQL container
Scripts
| Command | Description |
|---|---|
pnpm dev |
Start DB + all apps |
pnpm db:up |
Start PostgreSQL only |
pnpm db:down |
Stop PostgreSQL |
pnpm dev:console |
Console only |
pnpm dev:server |
Go Server only (Air hot reload) |
pnpm dev:worker |
Worker only (Wrangler) |
pnpm build |
Build all apps (Turbo) |
pnpm lint |
Lint all apps |
pnpm test |
Run tests |
pnpm env:sync |
Distribute .env.local to each app |
pnpm erd:build |
Generate ER diagram from schema |
Project Structure
mcpist/
├── apps/
│ ├── console/ # Web UI
│ ├── server/ # MCP Server + REST API
│ └── worker/ # API Gateway
├── database/
│ └── migrations/ # PostgreSQL schema
├── docs/ # Specifications & design docs
├── scripts/ # Dev utilities
└── .github/workflows/ # CI
Deployment
| App | Platform | Domain |
|---|---|---|
| Console | Vercel | mcpist.app |
| Worker | Cloudflare Workers | mcp.mcpist.app |
| Server | Render | mcpist.onrender.com |
| Database | Neon | — |
API Specification
OpenAPI 3.1 spec: GET /openapi.json
Source: apps/worker/src/openapi.yaml
Recommended Servers
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.
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.
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.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
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.
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.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
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.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.