trackmcp
Back to directory
abhishekbhakat

mcp_server_code_assist

View on GitHub

Code Assistant

2 stars PythonOthers Updated Aug 22, 2025

Documentation

mcp-server-code-assist: A Code Assistant MCP Server

Overview

A Model Context Protocol server for code modification and generation. This server provides tools to create, modify, and delete code via Large Language Models.

Tools

1. `create`

    2. `modify`

      3. `rewrite`

        4. `delete`

          XML Format

          xml
          Describe approach and reasoning
          
            
              What this change does
              
          ===
          Original code for modification
          ===
              
              
          ===
          New or modified code
          ===

          Installation

          bash
          uvx mcp-server-code-assist

          Using pip

          bash
          pip install mcp-server-code-assist
          python -m mcp_server_code_assist

          Configuration

          Usage with Claude Desktop

          Using uvx

          json
          "mcpServers": {
            "code-assist": {
              "command": "uvx",
              "args": ["mcp-server-code-assist"]
            }
          }

          Using docker

          json
          "mcpServers": {
            "code-assist": {
              "command": "docker",
              "args": ["run", "--rm", "-i", "--mount", "type=bind,src=/Users/username,dst=/Users/username", "mcp/code-assist"]
            }
          }

          Usage with Zed

          Add to settings.json:

          json
          "context_servers": {
            "mcp-server-code-assist": {
              "command": {
                "path": "uvx",
                "args": ["mcp-server-code-assist"]
              }
            }
          },

          Development

          bash
          cd src/code-assist
          uvx mcp-server-code-assist
          
          # For docker:
          docker build -t mcp/code-assist .

          License

          MIT License. See LICENSE file for details.

          Frequently asked questions

          What is mcp_server_code_assist?

          mcp_server_code_assist is Code Assistant

          How do I install mcp_server_code_assist?

          Open the GitHub repository and follow its README. Most MCP servers are added to your client's MCP config, then called by your agent.

          Is mcp_server_code_assist open source?

          Yes — it is hosted on GitHub at https://github.com/abhishekbhakat/mcp_server_code_assist and has 2 stars.

          Related MCP tools

          Run your own MCP server? See who uses it and what to fix.

          Measure it with TrackMCP