Cursor-history-MCP
Verified Safeby pedrohenrique316
Overview
This server allows users to search their local Cursor IDE chat history using semantic search powered by Ollama embeddings and LanceDB.
Installation
docker run -p 8001:8001 -v /path/to/your/db_data/cursor_chat_history.lancedb:/data/cursor_chat_history.lancedb cursor-chat-search-apiEnvironment Variables
- LANCEDB_URI
- OLLAMA_HOST
Security Notes
The server uses FastAPI's CORSMiddleware with `allow_origins=["*"]`, which allows requests from any origin. While common for local/development environments, this is a security risk if the application were exposed publicly without further restrictions. The application primarily processes user's local data and user-provided search queries via Ollama embeddings, which is generally safe from code execution vulnerabilities. No usage of `eval`, `exec`, or other obvious malicious patterns or hardcoded secrets were found.
Similar Servers
VectorCode
Indexes code repositories to generate relevant contextual information for Large Language Models (LLMs), enhancing their performance on specific or private codebases.
haiku.rag
Opinionated agentic RAG powered by LanceDB, Pydantic AI, and Docling to provide hybrid search, intelligent QA, and multi-agent research over user-provided documents, accessible via CLI, Python API, Web App, TUI, or as an MCP server for AI assistants.
claude-historian-mcp
Provides an MCP server for Claude Code to search and retrieve insights from conversation history, including past solutions, file changes, and tool usage patterns.
claudex
Self-hosted Claude AI chat interface with sandboxed code execution, offering a full IDE experience and support for multiple AI providers and extensible agents/skills.