πŸ”— MODEL CONTEXT PROTOCOL

πŸ₯’Pickle
Memory MCP

Project management and session memory for AI agents. Provides 9 MCP tools for tracking projects, tasks, and context during chat sessions. Improves agent workflow precision by maintaining structured context and eliminating repetitive explanations.

Pure session memory with fast performance. Agents stay focused and efficient by referencing your ongoing work and priorities.

IDE / Claude Code / Kilo / etc.
App.tsx
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import React from 'react';
import { useState } from 'react';
function TodoApp() {
const [tasks, setTasks] = useState([]);
return (
<div>
<h1>My App</h1>
</div>
);
}
export default TodoApp;
AGENT
YOU:
Help me build a todo app
AGENT
I'll track this project!
πŸ₯’ memory-pickle:
βœ“ create_project("Todo App")
βœ“ create_task("Setup React")
βœ“ remember_this("React hooks")
βœ“ get_project_status()
β†’ 33% complete, 3 sessions
β†’ Memory: useState hooks
β†’ Blocker: API design
AGENT
thinking...
Ask agent...
🎯 CAPABILITIES

What It Does

9 MCP tools for project management, task tracking, and session memory. Use handoff summaries for session continuity.

🧠 REMEMBERS YOUR WORK

Pure session memory - data exists only while chatting.

$ get_project_status
πŸ“Š Todo App - 40% complete
βœ… Set up React project

πŸ“‹ TRACKS TASKS AUTOMATICALLY

Creates tasks when you mention things to do. Shows progress with completion percentages.

  • Hierarchical tasks with subtasks
  • Priority levels (critical/high/medium/low)
  • Progress tracking (0-100%)
  • Automatic completion detection
create_task()
Auto-detects priority levels

🀝 HANDLES HANDOFFS

Get summaries to continue work in new chats. Seamless session transitions.

Session 1:
Created Todo App project
Added 3 initial tasks
Session 2:
Completed React setup
Started task component
Session 3:
Continue from 67% complete

πŸ› οΈ 9 MCP TOOLS

Complete toolkit for project management, task tracking, session memory, and session handoffs.

Project Management (3 tools)
Task Management (2 tools)
Memory System (2 tools)
Session Management (2 tools)
get_project_status
Auto-loads at session start
πŸš€ INSTALLATION

Quick Start

Add Memory Pickle MCP to your agent configuration and instantly improve workflow precision. Your agent will maintain structured context, eliminate repetitive explanations, and stay focused on your priorities.
Pro tip : just mention "pickle" in conversations for optimal results. or say "handoff" to get session summaries.

different conversation examples ↻
You:"Help me build an e-commerce API with Node.js"
System:"[PROJECT_CREATED] E-commerce API β€’ Status: Active"
mcp-config.json
1{ 2 "mcpServers": { 3 "memory-pickle": { 4 "command": "npx", 5 "args": [ 6 "-y", 7 "@cabbages/memory-pickle-mcp" 8 ] 9 } 10 } 11}