home / mcp / my coding buddy mcp server
Provides a local MCP server that connects to coding clients to automate tasks, access your codebase, and speed up software development.
Configuration
View docs{
"mcpServers": {
"ajkeast-coding-buddy-mcp-server": {
"command": "python",
"args": [
"mcp-server.py"
],
"env": {
"API_KEY": "value"
}
}
}
}You can run a local MCP server that acts as your coding companion, connecting to your coding clients to automate tasks, access your codebase, and help you make faster, smarter software decisions.
Start the MCP server in your development environment and connect a compatible MCP client such as Cursor, VS Code, or other MCP-driven tools. Once connected, you can ask the server to automate repetitive tasks, fetch and analyze parts of your codebase, and receive context-aware recommendations that fit your project goals. The server will understand your project context, offer relevant tools, execute commands when appropriate, and return detailed results so you can iterate quickly.
Prerequisites you need before installation are a Python 3 runtime and a working virtual environment manager.
Step 1: Create and activate a virtual environment.
python -m venv venv
./venv/Scripts/Activate.ps1 # On Windows
source venv/bin/activate # On macOS/LinuxStep 2: Install dependencies.
pip install -r requirements.txtThe MCP server can be started with a local Python command. The following configuration snippet shows how a local MCP server can be defined for a Cursor-style setup.
Note: This configuration uses a local Python process to run the MCP server script and can include environment variables needed by the server.
{
"mcpServers": {
"coding_buddy": {
"command": "python",
"args": ["mcp-server.py"],
"env": {
"API_KEY": "value"
}
}
}
}Automates repetitive development tasks to save time and reduce manual effort.
Provides quick access to the current project codebase and relevant tooling.
Offers AI-powered suggestions and context-aware guidance to improve coding decisions.
Manages development environment state and workflow orchestration for your tasks.