MemFlow MCP
Enables Large Language Models to store and retrieve persistent memories with intelligent search capabilities.
memflow-mcp
A Model Context Protocol (MCP) server that enables Large Language Models to store and retrieve persistent memories with intelligent search capabilities.
Description
MemFlow MCP provides seamless integration between LLMs like Claude and your Memory Bank API, allowing for persistent memory management across conversations. The server supports adding memories with tags, semantic search, and flexible memory retrieval.
Installation
npx memflow-mcp
Or install globally:
pnpm add -g memflow-mcp
Configuration
Environment Variables
MEMBANK_API_URL=http://localhost:3000
MEMBANK_API_KEY=your-api-key # optional
Claude Desktop
See CLAUDE_DESKTOP_CONFIG.md for detailed configuration options for different Node.js installations.
Quick start - Find your npx path and use it:
which npx
Then configure Claude Desktop:
{
"mcpServers": {
"memflow": {
"command": "/your/npx/path",
"args": ["-y", "memflow-mcp"],
"env": {
"MEMBANK_API_URL": "http://localhost:3000"
}
}
}
}
Available Tools
- addMemory - Store content with optional tags
- searchMemory - Search memories with semantic matching
- listMemories - Browse stored memories with filtering
Usage
Once configured, you can use these commands in Claude:
Add this to memory: "Claude can now remember things across conversations"
Search my memories for "conversations"
List my recent memories
Requirements
- Node.js 18+
- Memory Bank API server running
Troubleshooting
"spawn npx ENOENT" Error
-
Find your npx path:
which npxUse this full path in your Claude Desktop config.
-
Common paths:
- asdf:
/Users/username/.asdf/shims/npx - Homebrew (Intel):
/usr/local/bin/npx - Homebrew (Apple Silicon):
/opt/homebrew/bin/npx - System:
/usr/bin/npx
- asdf:
-
Test it works:
/your/npx/path -y memflow-mcp
"Unexpected token" JSON Errors
- Ensure
MEMBANK_API_URLis set correctly - Check that your Memory Bank API is running
- Restart Claude Desktop after config changes
API Endpoints
Your Memory Bank API should support:
POST /memory- Create memoryGET /memory- List/search memories
License
MIT
Máy chủ liên quan
GraphRAG
Query a hybrid graph (Neo4j) and vector (Qdrant) database for powerful semantic and graph-based document retrieval.
Seoul Public Data
Provides public data for Seoul, South Korea, including subway ridership and cultural event information, via the Seoul Public Data API.
PostgreSQL MCP
Transforms PostgreSQL databases from "I have tables and I don't know what they do" into "I understand the entire database structure, relationships, and best practices"
Supabase Memory Service
A memory service using Supabase PostgreSQL with pgvector for semantic search and knowledge graph storage.
CData Bing Ads
A read-only MCP server to query live Bing Ads data using CData's JDBC driver.
MySQL Server
A server for accessing and managing MySQL databases.
Gremlin
Interact with any Gremlin-compatible graph database using natural language, with support for schema discovery, complex queries, and data import/export.
Quick Data for Windows MCP
A Windows-optimized server for performing data analytics on JSON and CSV files, designed for Claude Desktop integration.
Nile Postgres
Manage and query databases, tenants, users, auth using LLMs
memory-mcp
A simple MCP server that stores and retrieves memories from multiple LLMs.