MCP Hub
Back to servers

brd-enhancer-mcp

Enhances developer tasks by retrieving relevant context from project documentation via a backend API. It enables users to generate enriched task descriptions and prompts by automatically integrating specific technical details from their project documents.

Updated
Feb 17, 2026

brd-enhancer-mcp

An MCP server that enhances developer tasks with context pulled from your project documentation.

Installation

Install directly from GitHub using pip:

pip install git+https://github.com/arushsingh17/mcp.git

Required Environment Variables

VariableRequiredDefaultDescription
API_KEY✅ YesYour API key for the backend
PROJECT_ID✅ YesThe project ID/GUID to search within
API_URL❌ Nohttp://localhost:8000Your backend URL

Usage

Run directly

export API_KEY=your_api_key
export PROJECT_ID=your_project_id
export API_URL=https://your-backend.com

brd-enhancer-mcp

Claude Desktop Config

Add this to your claude_desktop_config.json:

{
  "mcpServers": {
    "brd-enhancer": {
      "command": "brd-enhancer-mcp",
      "env": {
        "API_KEY": "your_api_key",
        "PROJECT_ID": "your_project_id",
        "API_URL": "https://your-backend.com"
      }
    }
  }
}

Claude Code Config (~/.claude.json)

{
  "mcpServers": {
    "brd-enhancer": {
      "command": "brd-enhancer-mcp",
      "env": {
        "API_KEY": "your_api_key",
        "PROJECT_ID": "your_project_id",
        "API_URL": "https://your-backend.com"
      }
    }
  }
}

What it does

Exposes two MCP capabilities:

  • enhance_task (tool) — Takes a task description, queries your project docs backend, and returns an enhanced prompt with relevant context.
  • enhance (prompt) — Same functionality exposed as an MCP prompt.

Reviews

No reviews yet

Sign in to write a review