code-trajectory-mcp
Verified Safeby SynTaek
Overview
Provides LLMs with persistent memory of coding history by tracking code evolution in a shadow git repository, enabling session continuity and flow-based development.
Installation
uvx --from git+https://github.com/SynTaek/code-trajectory-mcp.git code-trajectory-mcpSecurity Notes
The server primarily interacts with the local filesystem and a hidden Git repository (.trajectory) via the gitpython library. It does not contain direct use of 'eval', obfuscation, or hardcoded secrets. Network interactions are confined to the local MCP server communication. The primary security consideration is the potential for a compromised AI client to instruct the server to track arbitrary paths, though the system's design (requiring a local `git init` and tracking only specified project paths) limits broader system-level exploitation from the MCP server's side itself.
Similar Servers
cclsp
Integrate LLM-based coding agents with Language Server Protocol (LSP) servers to enable robust code navigation, symbol resolution, and refactoring across various programming languages.
git-mcp-server
A Model Context Protocol (MCP) server that provides Git-specific tools and resources for AI/LLM agents to interact with version control systems.
codegraph-rust
Transforms codebases into a semantically searchable knowledge graph, enabling AI agents to reason about code relationships, architecture, and impact rather than just performing text-based searches.
context-engine
Provides an agent-agnostic local context engine via Model Context Protocol (MCP) for coding agents, enabling semantic search, planning, code review, and prompt enhancement with AI integration.