AIConductor
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@AIConductorrefine user onboarding flow"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
hybrid-retrieval
A local daemon plus a Claude Code UserPromptSubmit hook that retrieves the files most relevant
to your prompt and injects them into context before the model sees it.
Dense (sqlite-vec) + sparse (FTS5 BM25) + AST import expansion, fused with RRF, reranked by a LightGBM model trained on your repo's own git history. Everything runs locally.
Design:
docs/SPEC.mdHow it is proven to save tokens and time:
docs/BENCHMARK.md
Status
Pre-alpha. See the milestone table in docs/SPEC.md §10.
Related MCP server: BMAD-MCP
Try it
uv run hybrid-retrieval doctor # check the environment
uv run hybrid-retrieval index /path/repo # build the sparse index (seconds)
uv run hybrid-retrieval embed /path/repo # build embeddings (slow, GPU-bound)
uv run hybrid-retrieval query --repo /path/repo "add jitter to retry backoff"
uv run hybrid-retrieval serve # resident daemon
uv run hybrid-retrieval dashboard # web UI on http://127.0.0.1:5111Dashboard
hybrid-retrieval dashboard serves four tabs:
Overview — index contents, embedder, and the reranker's held-out metrics.
Pipeline — type a prompt and watch it move through every stage. The request goes through the daemon, so what you see is exactly what the hook does, including the skip rule and the trace it writes. Each stage card shows whether it ran, how long it took, and what it produced.
Traces — every recent request, including skipped ones, with the gate decision and token cost.
Config — every setting, with defaults shown and only changed values written to disk. Saves to the repo's
.retrieval/config.tomlor globally.
It binds to localhost and has no authentication: it exposes repo contents and writes config files, so do not put it on a network interface. Restart the daemon after saving config, since it holds its settings in memory.
Installing the hook
Add to .claude/settings.json in any repo you want it active for:
{
"hooks": {
"UserPromptSubmit": [
{ "hooks": [{ "type": "command", "command": "python3 /ABS/PATH/TO/hook/shim.py" }] }
]
}
}Invoke it through python3 rather than relying on the file's executable bit. A hook that cannot
exec fails silently: you get no context and no error, which is indistinguishable from the hook
simply deciding to skip. Confirm it is live with hybrid-retrieval trace — every request writes a
row, including skipped ones.
The shim autostarts the daemon on first use and fails open: if anything is wrong it injects nothing and exits 0, so a broken index can never break a session.
Development
uv sync --all-groups # install, including dev tools
uv run pytest # tests
uv run ruff check . # lintThis server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityDmaintenanceStreamlines development workflows through AI-assisted codebase analysis, comprehensive planning, task breakdown with dependencies, and automated implementation verification. Enables systematic approach to complex development tasks like framework migrations and feature implementation.525MIT
- AlicenseBqualityDmaintenanceOrchestrates complete agile development workflows from product requirements to QA testing through role-based stages (PO → Architect → SM → Dev → Review → QA). Manages workflow state, generates role-specific prompts, and saves artifacts while integrating with multiple AI engines for comprehensive project delivery.13519MIT
- Flicense-qualityCmaintenanceOrchestrates multiple AI agents (Product Manager, Software Architect, Engineer, QA, Reviewer) to collaboratively plan, design, implement, review, and improve software development projects via MCP tools.
- Alicense-qualityDmaintenanceEnables AI assistants to manage complex development workflows by creating structured handoffs between strategic planning and tactical implementation, with project management, task tracking, and intelligent scaffolding.8MIT
Related MCP Connectors
Turns vague automation requests into tool stacks, prompts, QA checks, and human boundaries.
Adaptive plan/build/review cycles for AI coding assistants, persisted across sessions.
The team layer for AI coding agents: shared contracts, collision alerts, E2EE sessions.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/MohanTn/hybrid-retrieval-pipeline'
If you have feedback or need assistance with the MCP directory API, please join our Discord server