.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/alioshr/memory-bank-mcp
home/mcp-servers/alioshr/memory-bank-mcp
alioshr avatar

memory-bank-mcp

byalioshr· 1 MCP server

Installs

1.7k

Stars

916

Forks

84

Category

Agent Meta & Communication

View on GitHub

TL;DR

A Model Context Protocol (MCP) server implementation for remote memory bank management, inspired by Cline Memory Bank.

How to install memory-bank-mcp?

alioshr/memory-bank-mcp
$git clone https://github.com/alioshr/memory-bank-mcp

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install memory-bank-mcp by running `git clone https://github.com/alioshr/memory-bank-mcp`, then use it for the current task and follow its documentation at https://github.com/alioshr/memory-bank-mcp.

Files · 1

View on GitHub
README.md
1# Memory Bank MCP Server
2 
3[![smithery badge](https://smithery.ai/badge/@alioshr/memory-bank-mcp)](https://smithery.ai/server/@alioshr/memory-bank-mcp)
4[![npm version](https://badge.fury.io/js/%40allpepper%2Fmemory-bank-mcp.svg)](https://www.npmjs.com/package/@allpepper/memory-bank-mcp)
5[![npm downloads](https://img.shields.io/npm/dm/@allpepper/memory-bank-mcp.svg)](https://www.npmjs.com/package/@allpepper/memory-bank-mcp)
6 
7<a href="https://glama.ai/mcp/servers/ir18x1tixp"><img width="380" height="200" src="https://glama.ai/mcp/servers/ir18x1tixp/badge" alt="Memory Bank Server MCP server" /></a>
8 
9A Model Context Protocol (MCP) server implementation for remote memory bank management, inspired by [Cline Memory Bank](https://github.com/nickbaumann98/cline_docs/blob/main/prompting/custom%20instructions%20library/cline-memory-bank.md).
10 
11## Overview
12 
13The Memory Bank MCP Server transforms traditional file-based memory banks into a centralized service that:
14 
15- Provides remote access to memory bank files via MCP protocol
16- Enables multi-project memory bank management
17- Maintains consistent file structure and validation
18- Ensures proper isolation between project memory banks
19 
20## Features
21 
22- **Multi-Project Support**
23 
24 - Project-specific directories
25 - File structure enforcement
26 - Path traversal prevention
27 - Project listing capabilities
28 - File listing per project
29 
30- **Remote Accessibility**
31 
32 - Full MCP protocol implementation
33 - Type-safe operations
34 - Proper error handling
35 - Security through project isolation
36 
37- **Core Operations**
38 - Read/write/update memory bank files
39 - List available projects
40 - List files within projects
41 - Project existence validation
42 - Safe read-only operations
43 
44## Installation
45 
46To install Memory Bank Server for Claude Desktop automatically via [Smithery](https://smithery.ai/server/@alioshr/memory-bank-mcp):
47 
48```bash
49npx -y @smithery/cli install @alioshr/memory-bank-mcp --client claude
50```
51 
52This will set up the MCP server configuration automatically. Alternatively, you can configure the server manually as described in the Configuration section below.
53 
54## Quick Start
55 
561. Configure the MCP server in your settings (see Configuration section below)
572. Start using the memory bank tools in your AI assistant
58 
59## Using with Cline/Roo Code
60 
61The memory bank MCP server needs to be configured in your Cline MCP settings file. The location depends on your setup:
62 
63- For Cline extension: `~/Library/Application Support/Cursor/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json`
64- For Roo Code VS Code extension: `~/Library/Application Support/Code/User/globalStorage/rooveterinaryinc.roo-cline/settings/mcp_settings.json`
65 
66Add the following configuration to your MCP settings:
67 
68```json
69{
70 "allpepper-memory-bank": {
71 "command": "npx",
72 "args": ["-y", "@allpepper/memory-bank-mcp"],
73 "env": {
74 "MEMORY_BANK_ROOT": "<path-to-bank>"
75 },
76 "disabled": false,
77 "autoApprove": [
78 "memory_bank_read",
79 "memory_bank_write",
80 "memory_bank_update",
81 "list_projects",
82 "list_project_files"
83 ]
84 }
85}
86```
87 
88### Configuration Details
89 
90- `MEMORY_BANK_ROOT`: Directory where project memory banks will be stored (e.g., `/path/to/memory-bank`)
91- `disabled`: Set to `false` to enable the server
92- `autoApprove`: List of operations that don't require explicit user approval:
93 - `memory_bank_read`: Read memory bank files
94 - `memory_bank_write`: Create new memory bank files
95 - `memory_bank_update`: Update existing memory bank files
96 - `list_projects`: List available projects
97 - `list_project_files`: List files within a project
98 
99## Using with Cursor
100 
101For Cursor, open the settings -> features -> add MCP server -> add the following:
102 
103```shell
104env MEMORY_BANK_ROOT=<path-to-bank> npx -y @allpepper/memory-bank-mcp@latest
105```
106## Using with Claude
107 
108- Claude desktop config file: `~/Library/Application Support/Claude/claude_desktop_config.json`
109- Claude Code config file: `~/.claud

Preview

alioshr/memory-bank-mcpalioshr/memory-bank-mcp

# Memory Bank MCP Server

[![smithery badge](https://smithery.ai/badge/@alioshr/memory-bank-mcp)](https://smithery.ai/server/@alioshr/memory-bank-mcp)

[![npm version](https://badge.fury.io/js/%40allpepper%2Fmemory-bank-mcp.svg)](https://www.npmjs.com/package/@allpepper/memory-bank-mcp)

[![npm downloads](https://img.shields.io/npm/dm/@allpepper/memory-bank-mcp.svg)](https://www.npmjs.com/package/@allpepper/memory-bank-mcp)

Repoalioshr/memory-bank-mcp
TypeMCP Servers
CategoryAgent Meta & Communication
UpdatedAug 2025
LicenseMIT
First seenJul 26, 2026

Tags

MCPantrophicclaude

Related

6 picks
Type
  1. cdeust avatarcortexScientifically-grounded persistent memory for Claude — local-first, hybrid retrieval, 72 references.MCP ServersJul 20262.7k68
  2. samanhappy avatarmcphubA hub server for mcp serversMCP ServersJul 20262.7k2.3k
  3. loonghao avatarwecom-bot-mcp-serverWeCom Bot MCP Server - A Python server for WeCom (WeChat Work) bot following the Model Context Protocol (MCP)MCP ServersJul 20262.5k98
  4. toolprint avatarhypertool-mcpDynamically expose tools from proxied servers based on an Agent PersonaMCP ServersOct 20252.0k155
  5. arindam200 avatarreddit-mcpReddit MCP ServerMCP ServersDec 20252.0k296
  6. raysonmeng avataragent-bridgeBridge between Claude Code and Codex — bidirectional agent communication via MCP Channel + JSON-RPCMCP ServersJul 20261.8k270