MCP.so
ログイン

Cline Memory Bank

@dazeb

Cline Memory Bank について

A memory system for Cline that tracks progress between conversations. Avoid large token usage!

基本情報

カテゴリ

メモリとナレッジ

ランタイム

node

トランスポート

stdio

公開者

dazeb

設定

以下の設定を使って、このサーバーを MCP 対応クライアントに追加してください。

{
  "mcpServers": {
    "memory-bank": {
      "command": "node",
      "args": [
        "/path/to/memory-bank-server/build/index.js"
      ]
    }
  }
}

ツール

ツールは検出されませんでした

ツールは README から自動的に抽出されます。メンテナーは ## Tools という見出しの下に記載することで、このタブに反映できます。

概要

What is Cline Memory Bank?

A Model Context Protocol server that provides persistent project context management for AI-assisted development. It integrates with the Cline VSCode extension to maintain consistent project understanding across coding sessions.

How to use Cline Memory Bank?

Clone the repository, install dependencies with npm install, build with npm run build, then configure the server in Cline MCP settings with the path to the built index.js. Use tools like initialize_memory_bank to create the memory structure, update_context to track session state, record_decision to log architectural choices, and track_progress for milestones. Resources such as memory://project/context are accessed via access_mcp_resource.

Key features of Cline Memory Bank

  • Initialize a persistent project memory structure
  • Update active context with current session information
  • Record technical decisions with rationale
  • Track project progress and milestones
  • Access project context via MCP resources
  • Seamless integration with Cline VSCode extension

Use cases of Cline Memory Bank

  • Maintain project context across multiple development sessions without re-explaining
  • Log architectural decisions and rationale for future reference
  • Track ongoing tasks, blockers, and completed milestones
  • Enable consistent AI assistance by preserving project history
  • Onboard new team members by providing a documented development journey

FAQ from Cline Memory Bank

What are the prerequisites for using Cline Memory Bank?

Node.js v16 or later, VS Code with the Cline extension installed, and TypeScript for development.

How is project context stored?

The server creates a memory-bank/ directory in the project root containing markdown files: projectContext.md, activeContext.md, progress.md, and decisionLog.md.

How do I initialize a Memory Bank for a project?

Use the initialize_memory_bank tool via Cline, providing the project path. The server then creates the required file structure with initial templates.

Can the Memory Bank maintain context across sessions?

Yes, it persists context across sessions so the AI assistant remembers previous discussions, decisions, and progress without needing re-explanation.

コメント

「メモリとナレッジ」の他のコンテンツ