MCPist MCP Server

1

Add it to Claude Code

Run this in a terminal.

Run in terminal
claude mcp add --transport http -H "Authorization: Bearer <your-api-key>" mcpist https://mcp.mcpist.app/v1/mcp
Required:Authorization
README.md

Connect AI assistants to external tools through a single endpoint.

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

  1. User auth: Clerk (JWT) via Console
  2. API keys: Ed25519 JWT issued by Server
  3. 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

Environment Variables

AuthorizationrequiredBearer token for API authentication

Configuration

claude_desktop_config.json
{"mcpServers": {"mcpist": {"url": "https://mcp.mcpist.app/v1/mcp", "headers": {"Authorization": "Bearer <your-api-key>"}}}}

Try it

Fetch my recent tasks from Notion and summarize them.
List the open pull requests in my GitHub repository.
Find the latest events from my Google Calendar for today.
Search for documents in my Google Drive related to the project proposal.

Frequently Asked Questions

What are the key features of MCPist?

Centralized gateway for multiple external tool integrations. Unified API architecture for AI assistants. Secure authentication via Clerk and Ed25519 JWT. Support for Notion, GitHub, Jira, Google Workspace, and more.

What can I use MCPist for?

Managing tasks across multiple platforms like Todoist and Asana from one AI interface. Querying project documentation in Confluence and Notion simultaneously. Automating Google Workspace workflows like Sheets and Calendar updates via AI. Centralizing developer tool access including GitHub and Jira.

How do I install MCPist?

Install MCPist by running: pnpm install && cp .env.example .env.local && pnpm env:sync

What MCP clients work with MCPist?

MCPist works with any MCP-compatible client including Claude Desktop, Claude Code, Cursor, and other editors with MCP support.

Turn this server into reusable context

Keep MCPist docs, env vars, and workflow notes in Conare so your agent carries them across sessions.

Need the old visual installer? Open Conare IDE.
Open Conare