MCP Catalogs
Home

grimoire-mcp vs memory

Side-by-side comparison to help you pick between these two MCP servers.

grimoire-mcp
by Linell
memory
by modelcontextprotocol
Stars★ 0★ 85,748
30d uses
Score3077
Official
Categories
AI / LLM ToolsOther
Knowledge GraphAI / LLM ToolsProductivity
LanguageTypeScriptTypeScript
Last commit10 mo agothis month

grimoire-mcp · Summary

An MCP server providing D&D 5e spell information through search tools and detailed spell data.

memory · Summary

An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.

grimoire-mcp · Use cases

  • Game masters looking up spell details during D&D sessions
  • Players researching available spells for character building
  • AI assistants accessing D&D 5e spell data in RPG contexts

memory · Use cases

  • Personalizing AI assistant interactions by remembering user preferences, history, and relationships
  • Building context-aware chat applications that maintain conversation history
  • Creating knowledge bases that persist across AI model sessions

grimoire-mcp · Install

Installation

  1. Clone the repository:
git clone https://github.com/Linell/grimoire-mcp.git
cd grimoire-mcp
  1. Install dependencies:
npm install
  1. Start the development server:
npm run dev

For Claude Desktop, add to claude_desktop_config.json:

{
  "mcpServers": {
    "grimoire": {
      "command": "node",
      "args": ["dist/index.js"]
    }
  }
}

memory · Install

Installation

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "memory": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-memory"
      ]
    }
  }
}

VS Code

Use one-click installation buttons or manually configure in .vscode/mcp.json:

{
  "servers": {
    "memory": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-memory"
      ]
    }
  }
}

Docker

{
  "mcpServers": {
    "memory": {
      "command": "docker",
      "args": ["run", "-i", "-v", "claude-memory:/app/dist", "--rm", "mcp/memory"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.