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

Auto-Fix System Uses Claude Code Headless to Detect and Fix Production Errors
A developer built an automated production error-fixing system using Claude Code CLI in headless mode. The system detects errors from logs, creates isolated git worktrees for each issue, prompts Claude to write fixes, and requires manual approval via Telegram before creating PRs.

Mnemos: an MCP server for persistent Claude Code memory
Mnemos is an open-source MCP server that gives Claude Code persistent memory across sessions, recording corrections as structured patterns and pushing ranked context at startup. Single 15 MB Go binary, no Docker or vector DB needed.

Claude Code + MCP generates test suites from source code
Claude Code analyzes source code to generate hierarchical test suites covering modules, features, scenarios, happy paths, edge cases, and error handling, then pushes them to test management systems via MCP.

Local Semantic Memory Search for OpenClaw Agents Using Harrier Embeddings
Run a local embedding server with Microsoft's Harrier model, expose an Ollama-compatible API, and wire OpenClaw's memorySearch config for local semantic memory retrieval without external services.