Skip to main content
Glama
flu012
by flu012

MindReader MCP Server

Connect MindReader to Claude Code, Cursor, or any MCP-compatible client. Gives your AI assistant persistent memory backed by a knowledge graph.

Prerequisites

Related MCP server: 2BToRePensieve

Install

git clone https://github.com/flu012/mindreader-mcp.git
cd mindreader-mcp
npm install

Setup with Claude Code

Add to your Claude Code settings (~/.claude/settings.json or project .claude/settings.json):

{
  "mcpServers": {
    "mindreader": {
      "command": "node",
      "args": ["/path/to/mindreader-mcp/src/index.js"],
      "env": {
        "MINDREADER_URL": "http://localhost:18900"
      }
    }
  }
}

If MindReader has authentication enabled, add your token:

{
  "mcpServers": {
    "mindreader": {
      "command": "node",
      "args": ["/path/to/mindreader-mcp/src/index.js"],
      "env": {
        "MINDREADER_URL": "http://localhost:18900",
        "MINDREADER_TOKEN": "your-api-token"
      }
    }
  }
}

Setup with Cursor

Add to Cursor's MCP settings (~/.cursor/mcp.json):

{
  "mcpServers": {
    "mindreader": {
      "command": "node",
      "args": ["/path/to/mindreader-mcp/src/index.js"],
      "env": {
        "MINDREADER_URL": "http://localhost:18900"
      }
    }
  }
}

Tools

Tool

Description

memory_search

Search the knowledge graph for entities, facts, and relationships

memory_store

Store information using LLM preprocessing (auto-extracts entities)

memory_create

Create/update entities directly without LLM (precise control)

memory_entities

List entities in the knowledge graph

memory_recall

Recall relevant memories for a given context

memory_stats

Get knowledge graph statistics

Examples

Once configured, Claude Code can use the tools naturally:

  • "Remember that Alice is a senior engineer at Acme Corp"

  • "What do you know about the payments project?"

  • "List all the entities in my knowledge graph"

  • "Create an entity for the new API gateway project with tags backend, infrastructure"

Environment Variables

Variable

Default

Description

MINDREADER_URL

http://localhost:18900

MindReader API base URL

MINDREADER_TOKEN

(empty)

Bearer token for authentication

License

MIT

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

No tool schema history has been recorded yet.

Maintenance

ActivityInactive
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    D
    maintenance
    Builds a persistent knowledge graph from notes and conversations, enabling semantic search, entity exploration, and GTD task management from any MCP-compatible AI assistant.
    3
    -
  • A
    license
    Not graded
    quality
    B
    maintenance
    Knowledge-graph memory server for MCP-compatible AI tools, providing persistent, connected memory with typed relationships and auto-consolidation.
    71
    MIT
  • A
    license
    A
    quality
    A
    maintenance
    Provides persistent, graph-based memory for AI agents via MCP, enabling semantic search, wikilink traversal, reminders, and injection protection.
    9
    30
    Apache 2.0

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/flu012/mindreader-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server