Cursor Buddy

v1.0.0Developer Toolsstable

🤖 MCP server that gives AI agents deep context about your project - coding standards, knowledge base, todos, database schema & history. Keep your AI assistant consistent and context-aware.

aicluadecursorcursor-aimcp
Share:
12
Stars
0
Downloads
0
Weekly
0/5

What is Cursor Buddy?

Cursor Buddy is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to 🤖 mcp server that gives ai agents deep context about your project - coding standards, knowledge base, todos, database schema & history. keep your ai assistant consistent and context-aware.

🤖 MCP server that gives AI agents deep context about your project - coding standards, knowledge base, todos, database schema & history. Keep your AI assistant consistent and context-aware.

This server falls under the Developer Tools category on MCPgee, the world's largest MCP server directory with 33,000+ servers.

Features

  • 🤖 MCP server that gives AI agents deep context about your pr

Use Cases

Provide AI agents project context
Maintain coding standards and knowledge base
omar-haris

Maintainer

LicenseMIT
Languagego
Versionv1.0.0
UpdatedMay 18, 2026
Statushealthy
Maintenanceactive

Works with

ClaudeOpenAIwindowsmacoslinux

Installation

Manual Installation

npx cursor-buddy

Configuration

Configuration Details

Config File

claude_desktop_config.json

Performance

Response Metrics

Response Time< 200ms
ThroughputMedium

Resource Usage

Memory UsageLow
CPU UsageLow

How to Set Up and Use Cursor Buddy

Cursor Buddy MCP is a Go-based MCP server that runs in Docker and provides AI coding assistants with persistent, structured context about a software project — including coding standards, a searchable knowledge base, todo tracking, database schema information, and implementation history. By mounting a .buddy folder in your project directory, the server gives any MCP-compatible client (Cursor, Claude Desktop, VS Code) a consistent view of project conventions so AI suggestions stay aligned with your team's practices across sessions.

Prerequisites

  • Docker installed and running (no local Go build required for normal use)
  • Go 1.23+ if building from source
  • An MCP-compatible client: Cursor IDE, Claude Desktop, or VS Code with MCP support
  • A project directory where you can create the .buddy folder structure
1

Pull the Docker image

Pull the latest pre-built Cursor Buddy image from the GitHub Container Registry.

docker pull ghcr.io/omar-haris/cursor-buddy-mcp:latest
2

Create the .buddy directory structure

Inside your project root, create the folder hierarchy that Cursor Buddy uses to store context files.

mkdir -p .buddy/{rules,knowledge,todos,database,history,backups}
3

Populate your context files

Add Markdown files in each subdirectory: coding standards in .buddy/rules/, documentation in .buddy/knowledge/, task lists in .buddy/todos/, and schema files in .buddy/database/. These files become the AI's project knowledge base.

4

Configure your MCP client

Add the server to your Cursor or Claude Desktop MCP config. The volume mount maps your project's .buddy folder into the container. Replace /path/to/your/project with the absolute path to your project root.

{
  "mcpServers": {
    "cursor-buddy": {
      "command": "docker",
      "args": [
        "run", "--rm", "-i",
        "-v", "/path/to/your/project/.buddy:/home/buddy/.buddy",
        "-e", "BUDDY_PATH=/home/buddy/.buddy",
        "ghcr.io/omar-haris/cursor-buddy-mcp:latest"
      ]
    }
  }
}
5

Restart your MCP client

Restart Cursor or Claude Desktop to load the new server configuration. The six Cursor Buddy tools will appear and be available for your AI assistant to call.

Cursor Buddy Examples

Client configuration

Cursor mcp.json config block using Docker to run Cursor Buddy with a volume mount.

{
  "mcpServers": {
    "cursor-buddy": {
      "command": "docker",
      "args": [
        "run", "--rm", "-i",
        "-v", "/Users/you/myproject/.buddy:/home/buddy/.buddy",
        "-e", "BUDDY_PATH=/home/buddy/.buddy",
        "ghcr.io/omar-haris/cursor-buddy-mcp:latest"
      ]
    }
  }
}

Prompts to try

Example prompts to leverage Cursor Buddy's project context tools.

- "What are our coding standards for error handling in this project?"
- "Show me all open todos for the authentication feature"
- "What is the database schema for the users table?"
- "How did we implement JWT token refresh in this codebase?"
- "Search the knowledge base for anything related to rate limiting"

Troubleshooting Cursor Buddy

Docker container exits immediately or tools are not visible in the client

Ensure Docker is running and the image was pulled successfully with 'docker images'. Verify the volume mount path exists on your host machine. The container requires the -i flag to stay attached via stdin/stdout for JSON-RPC communication.

buddy_search_knowledge returns no results for known files

Confirm that Markdown files exist inside .buddy/knowledge/ and that the volume mount path in your config matches the actual .buddy folder location exactly (absolute paths required). Rebuilding from source and checking container logs can reveal file permission issues.

Changes to .buddy files are not reflected after editing

Since files are volume-mounted, changes should be visible immediately without restarting. If stale results appear, check whether your editor created a temp file instead of modifying in place, and confirm the file was saved to the mounted path.

Frequently Asked Questions about Cursor Buddy

What is Cursor Buddy?

Cursor Buddy is a Model Context Protocol (MCP) server that 🤖 mcp server that gives ai agents deep context about your project - coding standards, knowledge base, todos, database schema & history. keep your ai assistant consistent and context-aware. It connects AI assistants to external tools and data sources through a standardized interface.

How do I install Cursor Buddy?

Follow the installation instructions on the Cursor Buddy GitHub repository. Clone the repo, install dependencies, and add the server config to your AI client.

Which AI clients work with Cursor Buddy?

Cursor Buddy works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.

Is Cursor Buddy free to use?

Yes, Cursor Buddy is open source and available under the MIT license. You can use it freely in both personal and commercial projects.

Browse More Developer Tools MCP Servers

Explore all developer tools servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.

Quick Config Preview

{ "mcpServers": { "cursor-buddy": { "command": "npx", "args": ["-y", "cursor-buddy"] } } }

Add this to your claude_desktop_config.json or .cursor/mcp.json

Read the full setup guide →

Ready to use Cursor Buddy?

Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.

33,000+ ServersFree & Open SourceStep-by-Step Guides