Context-Persistance
Verified Safeby jayasimhag1reddy
Overview
Enables cross-window context sharing for AI conversations in VS Code by persistently storing and linking discussions across different repositories.
Installation
node /Users/j0k0h1v/Documents/AI/McpServerPoc/dist/index.jsSecurity Notes
The server uses `better-sqlite3` with prepared statements for database operations, which effectively prevents common SQL injection vulnerabilities. Communication occurs via standard I/O (`StdioServerTransport`), meaning no network ports are directly exposed by this server instance. Entity extraction and search queries rely on regex and FTS5 `MATCH` clauses, treating user input as literal search terms rather than executable code. The database is stored locally in the user's home directory. While FTS5 queries with very complex syntax could potentially be used for local resource exhaustion, the overall design for a local-only server interacting with Copilot appears robust against common remote attack vectors and data manipulation.
Similar Servers
CodeGraphContext
An AI pair programmer that provides real-time, accurate, context-aware assistance by indexing and analyzing codebases (local projects and dependencies) using a graph database, facilitating code understanding, writing, and refactoring across multiple programming languages.
savecontext
Provides persistent memory, issue tracking, and project planning for AI coding assistants via the Model Context Protocol (MCP).
mcp-server
Provides AI tools with persistent context, semantic code search, and team knowledge sharing across sessions.
local-history-mcp
Access Cursor/VS Code Local History through the Model Context Protocol for AI-powered data recovery and enhanced context awareness.