h-codex

A semantic code search tool for intelligent, cross-repo context retrieval.

GitHub Stars

25

User Rating

Not Rated

Favorites

0

Views

67

Forks

1

Issues

0

Installation
Difficulty
Intermediate
Estimated Time
10-20 minutes

Installation

h-codex can be integrated with AI assistants through the Model Context Protocol. Edit your claude_mcp_settings.json file:
json
{
  "mcpServers": {
    "h-codex": {
      "command": "npx",
      "args": ["@hpbyte/h-codex-mcp"],
      "env": {
        "LLM_API_KEY": "your_llm_api_key_here", 
        "LLM_BASE_URL": "your_llm_base_url_here (default is openai baseurl: https://api.openai.com/v1)",
        "DB_CONNECTION_STRING": "postgresql://postgres:password@localhost:5432/h-codex"
      }
    }
  }
}

Additional Resources