MCP Cursor

Enhance your development workflow with AI-powered MCP tools and extensions for Cursor IDE.

Product

  • MCP Servers
  • Getting Started
  • Documentation
  • Open Source

Resources

  • MCP Specification
  • Cursor IDE
  • MCP GitHub
  • Contributing

Legal

  • Privacy Policy
  • Terms of Service
  • Cookie Policy
Made withfor the developer community
© 2026 MCP Cursor. All rights reserved.
MCP Logo
MCP Cursor
IntroductionMCPs
IntroductionMCPs
3D MCP Cursor Visualization
  1. Home
  2. Servers
  3. Memory Plugin (SQLite) MCP
Memory Plugin (SQLite) MCP Logo

Memory Plugin (SQLite) MCP

Model Context Protocol Integration

Overview

Provides SQLite-based persistent memory storage for maintaining context across conversations, enabling long-term recall and knowledge management.

Memory Plugin (SQLite)

Provides SQLite-based persistent memory storage for maintaining context across conversations, enabling long-term recall and knowledge management.

Installation Instructions


README: https://github.com/mekanixms/mcp_memory_plugin

Memory Plugin

A Python-based memory plugin that uses SQLite for persistent storage.

Overview

This plugin provides memory storage functionality using SQLite as the backend database. It's designed to store and manage data persistently across sessions.

Setup

  1. Environment Configuration

    Create a .env file in the root directory with the following configuration:

    MEMORY_DB_PATH=/path/to/your/memory.sqlite
    
    

    You can use the provided .env.example as a template:

    cp .env.example .env
    
  2. Dependencies

    The project requires Python and uses SQLite for data storage. Make sure you have Python installed on your system.

Configuration

  1. rename .env.example to .env and edit the values to your needs:

  2. Locate claude_desktop_config.json and use the template below to add "MQTT Bridge" to the mcpServers section. MacOs: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: C:\Users<username>\AppData\Roaming\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "memory_recall": {
      "command": "/path/to/python3",
      "args": [
        "/path/2/your/cloned/repository/memory_plugin.py"
      ]
    }
  }
}

The SQLite database path is configured through the MEMORY_DB_PATH environment variable. This should point to where you want the SQLite database file to be stored.

Current configuration:

MEMORY_DB_PATH=/path/to/your/dabatase.sqlite

Usage

Basic Usage

Refer to the @mcp.resource and @mcp.tool decorated functions in the memory_plugin.py file

Examples to type in the chat:

  • memory://load to load the saved memories at new chat start
  • Save into the memory, under aNewName category, the following: a new message with important info to remember
  • Save the relevant points of the conversation into the memory under aNewName category

Development

When contributing to this project:

  1. Make sure to not commit sensitive information
  2. Keep your .env file private
  3. Use .env.example for sharing template configurations

License

This project is licensed under the MIT License.

Featured MCPs

Github MCP - Model Context Protocol for Cursor IDE

Github

This server provides integration with Github's issue tracking system through MCP, allowing LLMs to interact with Github issues.

Sequential Thinking MCP - Model Context Protocol for Cursor IDE

Sequential Thinking

An MCP server implementation that provides a tool for dynamic and reflective problem-solving through a structured thinking process. Break down complex problems into manageable steps, revise and refine thoughts as understanding deepens, and branch into alternative paths of reasoning.

Puppeteer MCP - Model Context Protocol for Cursor IDE

Puppeteer

A Model Context Protocol server that provides browser automation capabilities using Puppeteer. This server enables LLMs to interact with web pages, take screenshots, execute JavaScript, and perform various browser-based operations in a real browser environment.