Awesome MCPSoftware Development

williamfzc/gossiphs

⭐ 102 Rust added to this list on 2025-03-16 repository created 2024-04-08

Gossiphs builds a relationship graph of the files in a source repository and exposes that graph through several interfaces, one of which is a Model Context Protocol server shipped in the mcp directory of the repository. The analysis combines tree-sitter parsing with git commit history. It first extracts the symbols each file imports and exports, then connects candidate definition and reference nodes, then refines the resulting edges using commit histories, so files that change together are treated as more strongly related. This deliberately omits the scope analysis that approaches such as stack-graphs perform, trading some precision for the ability to run on almost any repository with no per-project configuration and a low cost to add a new language. Supported languages are Rust, Python, TypeScript, JavaScript, Go, Java, Kotlin, Swift and C#, each described by query rules in src/rule.rs. Beyond the file graph, developers can query what a given file declares and then search for references to those declarations across the whole codebase, which supports impact analysis of a change. Access is available through a command line interface that can export CSV or start an HTTP service, a Python package published as gossiphs that returns a graph object suited to loading into networkx, an agent skill definition under skills, and the MCP server that lets an AI assistant query code relationships directly. The stated motivation is a code navigation index that is cheap to build, accurate enough for practical use and broadly applicable, aimed at uses such as supplying context during development in an IDE, browsing code on a website and assessing the blast radius of a change in continuous integration. It suits teams that want structural code context for agents or CI without standing up language servers or LSIF indexers.

https://github.com/williamfzc/gossiphs

mcp-servercode-analysistree-sittergitrustcode-navigationimpact-analysispython-sdk

Also in Software Development

Graphify-Labs/graphify

Graphify transforms codebases, documentation, and other files into queryable knowledge graphs, enhancing developer productivity with local AST parsing and detailed edge explanations.

upstash/context7

Context7 MCP Server is an MCP server that delivers up-to-date, version-specific code documentation and examples to enhance LLMs and AI code editors, ensuring accurate and current code generation.

DeusData/codebase-memory-mcp

High-performance Model Context Protocol (MCP) server that indexes codebases into a persistent knowledge graph for AI coding agents, supporting 158 languages, lightning-fast queries, and various dev...

github/github-mcp-server

GitHub MCP Server is an official Model Context Protocol server that integrates with GitHub APIs to enable advanced automation and AI-powered interactions with GitHub repositories and workflows.

tirth8205/code-review-graph

Code-review-graph is a local-first code intelligence solution that builds a persistent structural map of your codebase to provide precise context to AI coding tools, significantly reducing token us...

oraios/serena

Serena is a free and open-source coding agent toolkit that uses the Model Context Protocol to enable LLMs to autonomously perform semantic code retrieval and editing with IDE-like precision on complex codebases.

eyaltoledano/claude-task-master

Claude Task Master is an AI-powered task management system designed for AI-driven development that integrates seamlessly with various editors via the Model Control Protocol (MCP).

mksglu/context-mode

Context Mode is an MCP server designed to optimize context window usage for AI coding agents by sandboxing tool output, tracking session continuity with SQLite, and promoting LLMs as code generator...