domain-memory-agent

Featured mcp v1.0.0 by Jeremy Longshore

Knowledge base with TF-IDF semantic search and extractive summarization - no ML dependencies required

6 MCP Tools
MIT License
Free Pricing

Installation

Open Claude Code and run this command:

/plugin install domain-memory-agent@claude-code-plugins-plus

Use --global to install for all projects, or --project for current project only.

What It Does

Knowledge base with semantic search, document storage, and automatic summarization

A lightweight MCP server for domain-specific knowledge management using TF-IDF semantic search (no external ML dependencies). Perfect for building AI memory systems and RAG applications.

Features

  • Document Storage - Store documents with tags and metadata
  • Semantic Search - TF-IDF based search (no external dependencies)
  • Summarization - Automatic extractive summaries with caching
  • Full CRUD - Create, read, update, delete documents
  • Tagging System - Organize knowledge by tags
  • Pagination - Efficient browsing of large knowledge bases

How It Works


// 1. Store knowledge
store_document({
  title: "API Design Best Practices",
  content: "RESTful APIs should be...",
  tags: ["api", "architecture"]
})

// 2. Search knowledge
semantic_search({
  query: "REST API design patterns",
  limit: 5
})

// 3. Get summary
summarize({
  documentId: "doc123",
  maxSentences: 3
})

Use Cases

  1. RAG Systems - Store domain knowledge for AI retrieval
  2. Documentation Search - Index and search project docs
  3. Research Notes - Organize research with semantic search
  4. Customer Support - Build knowledge bases for support agents
  5. Personal Knowledge - Second brain / Zettelkasten system

Ready to use domain-memory-agent?