
Medicus CRM MCP Server
Enables management of companies, contacts, and related CRM data through the Medicus CRM system. Provides 18 CRM tools with Supabase integration for data persistence and supports both local development and production deployment.
README
Medicus CRM MCP Server
A Model Context Protocol (MCP) server for the Medicus CRM system, supporting both local STDIO and remote HTTP access.
Features
- 18 CRM tools for managing companies, contacts, and related data
- Supabase integration for data persistence
- Local STDIO transport for development (full functionality)
- Remote HTTP transport for production deployment (tool listing + basic protocol)
- Token-based authentication for security
Local Development
Prerequisites
- Node.js 18+
- Supabase project with service role key
Setup
-
Install dependencies:
npm install
-
Create environment file:
cp env.example .env.local
-
Configure your environment variables in
.env.local
:SUPABASE_URL=your_supabase_url_here SUPABASE_SERVICE_ROLE_KEY=your_supabase_service_role_key_here MCP_TOKEN=your_long_random_token_here
Running Locally
STDIO Mode (for local MCP clients)
npm run mcp:stdio
HTTP Mode (for testing remote access)
npm run dev
Then test with MCP Inspector:
npx @modelcontextprotocol/inspector http://localhost:3000/api/mcp?token=your_token
Note: The HTTP endpoint currently supports tool listing and basic MCP protocol. For full tool execution, use the STDIO mode locally.
Deployment to Vercel
-
Install Vercel CLI:
npm i -g vercel
-
Deploy:
vercel
-
Set environment variables in Vercel dashboard:
SUPABASE_URL
SUPABASE_SERVICE_ROLE_KEY
MCP_TOKEN
(optional)
-
Your MCP server will be available at:
https://your-app.vercel.app/api/mcp?token=your_token
Adding to Claude
In Claude Desktop or Web:
- Go to Settings → Connectors
- Add custom connector
- Enter your Vercel URL:
https://your-app.vercel.app/api/mcp?token=your_token
Tool Registration
The main tool registration logic is in lib/register-crm-tools.js
. This file contains:
- Helper functions for error handling and data manipulation
- All 18 CRM tool registrations
- Supabase integration logic
To add new tools or modify existing ones, edit this file. The changes will be available in both STDIO and HTTP modes.
Security
- The server uses Supabase service role key for database access
- Optional token-based authentication prevents unauthorized access
- For production, consider implementing OAuth instead of simple tokens
Architecture
├── lib/
│ ├── register-crm-tools.js # Shared tool registration logic
│ └── supabase.js # Supabase client factory
├── bin/
│ └── stdio.mjs # Local STDIO server
├── app/
│ └── api/
│ └── mcp/
│ └── route.ts # HTTP MCP endpoint
└── package.json # Dependencies and scripts
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.
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.
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.

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.