mcp-server-code-assist: A Code Assistant MCP Server
Overview
mcp-server-code-assist is a Model Context Protocol server designed for code modification and generation using Large Language Models. It provides tools to create, modify, and delete code efficiently.
To use mcp-server-code-assist, you can install it via pip or uv, and then configure it according to your development environment. You can interact with the server using XML instructions to perform various code operations.
- Create new files with specified content. - Modify existing files using search and replace functionality. - Completely rewrite files with new content. - Delete files as needed.
- Automating code generation for new projects.
- Refactoring existing codebases by modifying specific parts of the code.
- Managing code files in a collaborative development environment.
Add to your AI client
Use these steps to connect mcp-server-code-assist: A Code Assistant MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-server-code-assist-abhishekbhakat": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-code-assist-abhishekbhakat"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-server-code-assist-abhishekbhakat": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-code-assist-abhishekbhakat"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-server-code-assist-abhishekbhakat": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-code-assist-abhishekbhakat"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-server-code-assist-abhishekbhakat": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-code-assist-abhishekbhakat"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-server-code-assist-abhishekbhakat": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-code-assist-abhishekbhakat"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-server-code-assist-abhishekbhakat": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-code-assist-abhishekbhakat"
]
}
}
}FAQ
What programming languages does mcp-server-code-assist support?
It supports any programming language as long as the code is provided in the correct XML format.
Is mcp-server-code-assist free to use?
Yes! It is open-source and available under the MIT License.
How do I report issues or contribute to the project?
You can report issues or contribute by visiting the project's GitHub repository.