- Explore MCP Servers
- SAMM-Screamm_AI_Memory-MCP
Samm Screamm Ai Memory Mcp
What is Samm Screamm Ai Memory Mcp
SAMM-Screamm_AI_Memory-MCP is a memory system designed for Cursor IDE that saves AI chat conversations to a memory server and utilizes them to provide better context through the Model Context Protocol (MCP).
Use cases
Use cases include enhancing customer support chatbots by recalling previous interactions, improving AI assistants by providing context from past conversations, and developing applications that require a history of user interactions for better service.
How to use
To use SAMM-Screamm_AI_Memory-MCP, clone the repository and install dependencies using npm. Start the entire system with the command ‘node start.js’, which will launch both the memory server and the MCP server. You can specify a different port for the memory server if needed.
Key features
Key features include saving AI conversations to a local memory server, using previous conversations to enhance context in new discussions, integration with Cursor via MCP, and tools for retrieving relevant past conversations, saving new conversations, and displaying memory statistics.
Where to use
SAMM-Screamm_AI_Memory-MCP can be used in fields such as AI development, chatbots, and any application requiring contextual memory for improved user interactions.
Clients Supporting MCP
The following are the main client software that supports the Model Context Protocol. Click the link to visit the official website for more information.
Overview
What is Samm Screamm Ai Memory Mcp
SAMM-Screamm_AI_Memory-MCP is a memory system designed for Cursor IDE that saves AI chat conversations to a memory server and utilizes them to provide better context through the Model Context Protocol (MCP).
Use cases
Use cases include enhancing customer support chatbots by recalling previous interactions, improving AI assistants by providing context from past conversations, and developing applications that require a history of user interactions for better service.
How to use
To use SAMM-Screamm_AI_Memory-MCP, clone the repository and install dependencies using npm. Start the entire system with the command ‘node start.js’, which will launch both the memory server and the MCP server. You can specify a different port for the memory server if needed.
Key features
Key features include saving AI conversations to a local memory server, using previous conversations to enhance context in new discussions, integration with Cursor via MCP, and tools for retrieving relevant past conversations, saving new conversations, and displaying memory statistics.
Where to use
SAMM-Screamm_AI_Memory-MCP can be used in fields such as AI development, chatbots, and any application requiring contextual memory for improved user interactions.
Clients Supporting MCP
The following are the main client software that supports the Model Context Protocol. Click the link to visit the official website for more information.
Content
SAM - Screamm AI Memory
Ett minnesystem för Cursor IDE som sparar AI-chattarna till en minnesserver och använder dem för att tillhandahålla bättre kontext via Model Context Protocol (MCP).
Funktioner
- Sparar AI-konversationer till lokal minnesserver
- Använder tidigare konversationer för att förbättra kontexten i nya konversationer
- Integrerar med Cursor via Model Context Protocol (MCP)
- Tillhandahåller verktyg för att:
- Hämta relevanta tidigare konversationer baserat på sökfråga
- Spara nya konversationer
- Visa minnesstatistik
Installation
- Klona detta repository
- Installera beroenden med npm:
npm install
Användning
Starta hela systemet med ett enda kommando:
node start.js
Detta startar:
- Minnesservern (sparar konversationer)
- MCP-servern (kommunicerar med Cursor)
För att ange en annan port för minnesservern:
node start.js --port=8080
Cursor-integration
För att integrera med Cursor IDE, skapa filen cursor-mcp-config.json
i din AppData-mapp för Cursor:
Windows: %AppData%\Cursor\cursor-mcp-config.json
Mac: ~/Library/Application Support/Cursor/cursor-mcp-config.json
Linux: ~/.config/Cursor/cursor-mcp-config.json
Med följande innehåll:
{
"mcpServers": {
"sam-memory": {
"command": "node",
"args": [
"SÖKVÄG_TILL_DIN_KATALOG/mcp-server.js"
],
"env": {
"MCP_MEMORY_SERVER": "http://localhost:3000",
"MCP_TRANSPORT": "stdio"
}
}
}
}
Ersätt SÖKVÄG_TILL_DIN_KATALOG
med den absoluta sökvägen till din installation av SAM.
Tillgängliga MCP-verktyg
När servern är ansluten till Cursor, blir följande verktyg tillgängliga:
get-relevant-conversations
- Hämtar relevanta tidigare konversationer baserat på en sökfrågasave-conversation
- Sparar en ny konversation till minnesservernget-conversation
- Hämtar en specifik konversation med ID
Teknisk information
Projektet består av två huvudkomponenter:
- Minnesserver - En Express.js-server som hanterar lagring och hämtning av AI-konversationer
- MCP-server - En MCP-server som integrerar med Cursor IDE och kommunicerar med minnesservern
Systemet använder STDIO-transport för MCP-protokollet för bästa möjliga integration med Cursor.
Utveckling och felsökning
För att övervaka status och loggmeddelanden, kolla mappen logs/
som innehåller loggfiler för alla systemkomponenter.
Webbgränssnittet för minnesservern finns på:
- Dashboard: http://localhost:3000/dashboard
- API-status: http://localhost:3000/api/status
Dev Tools Supporting MCP
The following are the main code editors that support the Model Context Protocol. Click the link to visit the official website for more information.