Awesome MCPSoftware Development

cyanheads/git-mcp-server

⭐ 240 TypeScript added to this list on 2025-05-14 repository created 2024-12-16

cyanheads/git-mcp-server is a TypeScript MCP server that gives AI agents structured access to Git. It publishes 28 tools grouped into seven areas: repository management (git_init, git_clone, git_status, git_clean), staging and commits (git_add, git_commit, git_diff), history and inspection (git_log, git_show, git_blame, git_reflog), analysis (git_changelog_analyze, which gathers git context and instructions for LLM-driven changelog work), branching and merging (git_branch, git_checkout, git_merge, git_rebase, git_cherry_pick), remote operations (git_remote, git_fetch, git_pull, git_push) and advanced workflows (git_tag, git_stash, git_reset, git_worktree, the session helpers git_set_working_dir and git_clear_working_dir, and git_wrapup_instructions). It also exposes one resource, git://working-directory, reporting the working directory set for the session, and one prompt, Git Wrap-up, describing a protocol for reviewing, documenting, committing and tagging at the end of a session. The server speaks both STDIO and Streamable HTTP; transport, log level, base directory, log directory and git identity are set through environment variables, and commit signing can be enabled. It runs on Node.js 20 or later and Bun 1.2 or later, detecting the runtime automatically and choosing the matching process spawning method. It is published on npm as @cyanheads/git-mcp-server and is normally launched with npx or bunx from an MCP client configuration file. The implementation builds on the mcp-ts-template project by the same author and inherits declarative tool definitions, a unified McpError type for structured errors, authentication modes for none, JWT and OAuth, pluggable storage backends including in-memory, filesystem, Supabase and Cloudflare KV or R2, structured Pino logging with optional OpenTelemetry traces and metrics, and dependency injection through tsyringe. Git access goes through a pluggable provider layer that currently shells out to the git CLI. It targets developers who want coding agents to run version control operations directly.

https://github.com/cyanheads/git-mcp-server

gitversion-controlmcp-servertypescriptdeveloper-toolsstdiostreamable-http

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...