Monica CRM MCP Server

Monica CRM MCP Server

Enables interaction with Monica CRM instances to manage contacts, activities, tasks, notes, relationships, and reminders through natural language, wrapping Monica's REST API with 21 assistant-friendly tools.

Category
Visit Server

README

Monica CRM MCP Server

A Model Context Protocol (MCP) server that lets assistants such as Claude Desktop read from and write to any Monica CRM instance. It wraps Monica's REST API with a handful of assistant-friendly tools and resources so you can search contacts, inspect timelines, capture notes, and keep on top of tasks without leaving the chat.

Features

  • Contact search & summaries – find people by name/email and return normalized details with custom fields.
  • Contact management – create, update, or delete contacts without leaving the assistant.
  • Contact info management – view contact summaries, update profile details, and manage communication fields/addresses from one tool.
  • Activity tracking – capture meetings/outings and review recent shared history.
  • Automatic ID resolution – look up genders, countries, contact field types, activity types, and relationship types by name when executing tools.
  • Metadata browser – inspect Monica catalogs (genders, countries, activity types, etc.) from one consolidated tool when you need raw IDs.
  • Stay-on-track actions – create or update tasks and reminders together without juggling multiple tools.
  • Financial tracking – log Monica gifts and debts through one shared tool.
  • Relationship management – inspect existing links or connect two contacts with the right type.
  • Conversation logging – capture message threads with contacts and keep channel context.
  • Call logging – track phone conversations with quick notes and timestamps.
  • Group management – curate contact groups and review who belongs in them.
  • Reminder scheduling – set recurring nudges so you follow up with people on time.
  • Task management – add follow-ups, update status, or retarget tasks to the right contact.
  • Note capture – create and manage journal notes from assistant prompts.
  • Tag system – organize and categorize contacts with custom tags.
  • Contact resources – stream Monica contact profiles and recent notes as MCP resources.
  • Task visibility – surface open/completed tasks globally or per contact.
  • Connectivity probe – quick health check tool for debugging credentials.

Prerequisites

  • Node.js 18 or newer.
  • A Monica CRM instance (self-hosted or hosted) with an API token.
  • Optional: legacy user token if you still rely on X-Auth-Token/X-User-Token auth.

Installation

npm install

Configuration

Create a .env file (or set environment variables another way) with at least:

MONICA_API_TOKEN=your-token
# Defaults to https://app.monicahq.com; change for self-hosted instances
MONICA_BASE_URL=https://app.monicahq.com
# one of: bearer (default), apiKey, legacy
MONICA_TOKEN_TYPE=bearer
# Required only when MONICA_TOKEN_TYPE=legacy
MONICA_USER_TOKEN=optional-legacy-user-token
# Optional pino log level (fatal|error|warn|info|debug|trace|silent)
LOG_LEVEL=info

Running the server

  • Develop: npm run dev
  • Type-check: npm run typecheck
  • Build: npm run build
  • Start (compiled): npm run start

The dev script launches the MCP server over stdio with live reload for local testing (e.g. using mcp-cli).

Claude Desktop integration

Add the provider to your Claude Desktop ~/.claude-desktop/config.json (or the equivalent per-platform path):

{
  "mcpServers": {
    "monica-crm": {
      "command": "node",
      "args": ["/absolute/path/to/monica-crm-mcp/dist/index.js"],
      "env": {
        "MONICA_API_TOKEN": "your-token",
        "MONICA_BASE_URL": "https://app.monicahq.com"
      }
    }
  }
}

For development, you can swap node dist/index.js with npm run dev --silent to use the TypeScript entry point directly.

Tools exposed

This Monica MCP server provides 17 tools covering the most common CRM operations:

Tool Purpose
Core Contact Management
monica_search_contacts Search Monica CRM contacts by name, nickname, or email. Returns contact IDs and basic info for downstream tools.
monica_manage_contact Retrieve summaries or manage profile fields, communication details, and addresses with a single section parameter.
monica_manage_contact_profile Simplified wrapper to create/update/delete contact profiles (delegates to monica_manage_contact with section="profile").
monica_manage_contact_field Simplified wrapper to list/get/create/update/delete contact fields like email and phone (delegates to monica_manage_contact with section="field").
monica_manage_contact_address Simplified wrapper to list/get/create/update/delete contact addresses (delegates to monica_manage_contact with section="address").
Communication & Interactions
monica_manage_conversation Manage conversations and their messages (list/get/create/update/delete plus message add/update/remove). Channel can be supplied by ID or name.
monica_manage_call Log calls with contacts (list/get/create/update/delete) to capture quick phone notes.
monica_manage_activity Track meetings/events with contacts. Accepts either activityTypeId or activityTypeName.
monica_manage_note List, inspect, create, update, or delete notes attached to a contact.
Planning & Follow-ups
monica_manage_task_reminder Manage Monica tasks and reminders together—choose the item type to list/get/create/update/delete either resource.
monica_manage_financial_record Manage Monica gifts and debts with a single tool (set recordType to "gift" or "debt").
Media & Files
monica_manage_media Manage Monica documents and photos (set mediaType to "document" or "photo"; supports list/get/upload/delete with file path or base64 input).
Relationships & Organization
monica_manage_relationship List, inspect, create, update, or delete relationships between contacts. Accepts either relationshipTypeId or relationshipTypeName.
monica_manage_group List, inspect, create, update, or delete contact groups and review their members.
monica_manage_tag List, inspect, create, update, or delete tags used to categorize contacts.
Metadata & System
monica_browse_metadata Browse Monica catalogs (genders, countries, contact field types, activity types, relationship types) with optional name filtering.
monica_health_check Verify that the configured Monica credentials work.

Resources exposed

Resource URI Description
monica-contact://{contactId} JSON payload containing normalized contact profile data.
monica-contact-notes://{contactId} JSON payload with the latest notes for the contact.

Each resource supports auto-complete on contactId via Monica search so assistants can discover relevant IDs.

Observability & safety

  • Structured logging via pino, with token redaction.
  • Requests run with a 15s timeout by default.
  • Errors from Monica are wrapped as tool outputs (not protocol errors) so assistants can self-correct.

Next steps

  1. Expand tool coverage (activities, reminders, gifts) as needed.
  2. Add caching or rate limiting for heavy workspaces.
  3. Package the server as an executable for easier distribution.

Refer to docs/architecture.md for a deeper design walkthrough and Monica API references pulled from the upstream docs.

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