Package Exports
- mcp-session-saver
- mcp-session-saver/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (mcp-session-saver) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
đ MCP Session Saver
An MCP service for saving session records. Session content can be saved to a specified directory and stored as Markdown files organized by IDE name, date, and session description.
⨠Key Features
- đ Save Session Records - Save AI conversations as Markdown files
- đ Smart Organization - Automatically categorized by IDE/date/description
- đ Session Management - Read, search, and delete sessions
- đ Multi-IDE Support - Compatible with Qoder, Cursor, Claude Desktop, Windsurf, Trae, Codebuddy, Lingma, Continue, Aider, and more
đ Quick Start
Method 1: Using npx (Recommended)
No installation required. Simply add to your IDE's MCP configuration:
{
"mcpServers": {
"session-saver": {
"command": "npx",
"args": ["-y", "mcp-session-saver"]
}
}
}Method 2: Global Installation
npm install -g mcp-session-saverMCP Configuration:
{
"mcpServers": {
"session-saver": {
"command": "mcp-session-saver"
}
}
}Method 3: Local Installation
npm install mcp-session-saverđ Custom Storage Path (Optional)
Add environment variable in MCP configuration:
{
"mcpServers": {
"session-saver": {
"command": "npx",
"args": ["-y", "mcp-session-saver"],
"env": {
"MCP_SESSION_BASE_DIR": "D:\\MyProjects\\sessions"
}
}
}
}đ¯ How to Use
After configuration, simply say in your IDE:
Save current session
List all sessions
Search session contentđ Documentation
- Quick Setup Tools - One-click configuration scripts
- Detailed Usage Guide - Complete usage instructions
- Multi-IDE Setup - Configuration for Cursor, Claude, and other IDEs
- Qoder Configuration - Qoder-specific guide
- Internationalization - Multi-language support guide
đ ī¸ Tech Stack
- JavaScript (ES Module)
- @modelcontextprotocol/sdk
- Node.js >= 16.0.0
đ License
MIT
đ Contributing
Issues and Pull Requests are welcome!