Local Terminal CRM with Built-in MCP Server for Claude Integration

A developer has created a personal CRM tool that runs entirely in the terminal and stores data locally in SQLite. The key feature is its built-in MCP (Model Context Protocol) server, which allows Claude to directly interact with the CRM data.
Setup and Integration
The setup process is simple: claude mcp add crm -- crm mcp serve. Once configured, Claude gains access to 18 different tools for managing CRM data.
Key Features
- Local storage only - SQLite database at
~/.crm/crm.db - Single binary with no cloud dependencies or accounts required
- Contact summaries that Claude maintains as "living dossiers"
- Claude reads contact summaries before meetings and updates them after
Workflow Example
After a meeting, you can tell Claude: "Had a great call with Jane, she wants to move forward, send proposal by Friday." Claude then:
- Logs the interaction
- Updates the deal stage
- Creates a follow-up task
- Updates Jane's summary with the new context
Available Tools
Claude can use the CRM to:
- Search contacts
- Log interactions
- Create deals
- Set follow-ups
- Maintain contact summaries
The tool is designed for developers who need a lightweight, privacy-focused CRM that integrates directly with their AI coding workflow.
📖 Read the full source: r/ClaudeAI
👀 See Also

Monarch v3: NES-Inspired KV Paging for 78% Faster LLM Inference
Monarch v3 implements NES-inspired memory paging for transformers, achieving 78% faster inference (17.01 to 30.42 tok/sec) on a 1.1B parameter model with nearly zero VRAM overhead. The open-source algorithm splits KV cache into hot and cold regions with compression and promotion mechanisms.

Vibe Hosting: Claude Code MCP Integration for AI-Assisted Deployment
NameOcean's Vibe Hosting platform integrates Claude Code MCP to build and deploy projects through natural language commands. The service offers free SSL, domains, DNS, and VPS setup for static sites, Node.js, Python, Django, and Go applications.

civStation: A VLM System for Playing Civilization VI via Natural Language Commands
civStation is a computer-use VLM harness that plays Civilization VI by translating high-level natural language commands into in-game actions. The system uses a 3-layer architecture separating strategy and execution, with support for human-in-the-loop intervention.

Memento Vault: Local Tool for Persistent Context in Claude Code Sessions
Memento Vault is a set of hooks that automatically captures session transcripts, scores them, and stores atomic notes in a local git repo. It provides zero-cost retrieval via BM25 + vector search with 472ms average latency and injects relevant context at session start, on every prompt, and on file reads.