Memory Context Provider Server
Provides TypeScript support for type safety and enhanced developer experience when working with the MCP server's API.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Memory Context Provider Serveradd 'summarize our last conversation' to my context"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Memory Context Provider (MCP) Server
A server that manages context for LLM interactions, storing and providing relevant context for each user.
Features
In-memory storage of user contexts
Context management with last 5 prompts
RESTful API endpoints
TypeScript support
Related MCP server: RAG Context MCP Server
Setup
Install dependencies:
npm installStart the development server:
npm run dev
API Endpoints
POST /context/:userId
Add a new prompt to user's context and get updated context.
Request body:
{
"prompt": "Your prompt here"
}Response:
{
"context": "Combined context from last 5 prompts"
}GET /context/:userId
Get current context for a user.
Response:
{
"context": "Current context"
}DELETE /context/:userId
Clear context for a user.
Response:
{
"message": "Context cleared"
}Development
npm run dev: Start development server with hot reloadnpm run build: Build TypeScript filesnpm start: Run built files
This server cannot be deployed
Maintenance
Related MCP Connectors
- memoryOAuthcom.leapmemory
Long-term memory for AI assistants. Isolated per-user storage, recall across conversations.
Memory for deep conversational context across any platform
Cross-LLM persistent memory: store context once, recall it from any AI model.
Durable, revision-pinned memory storage and retrieval for AI conversations.
Related MCP Servers
- FlicenseBqualityDmaintenanceA Model Context Protocol server that enables AI assistants to interact with the Omi API for retrieving and creating conversations and memories for users.44-
- AlicenseNot gradedqualityDmaintenanceA lightweight server that provides persistent memory and context management for AI assistants using local vector storage and database, enabling efficient storage and retrieval of contextual information through semantic search and indexed retrieval.2MIT
- AlicenseBqualityDmaintenanceA Model Context Protocol server that provides knowledge graph-based persistent memory for LLMs, allowing them to store, retrieve, and reason about information across multiple conversations and sessions.9114,646 npm2MIT
- AlicenseNot gradedqualityDmaintenanceA Model Context Protocol server that allows saving, retrieving, adding, and clearing memories from LLM conversations with MongoDB persistence.5 npm21MIT