MCP Search Server with Feedback-Driven Ranking for Claude Desktop

An MCP (Model Context Protocol) search server has been built for Claude Desktop that implements feedback-driven ranking. The server runs two search engines—Exa and Tavily—in parallel, and no API key is required for use.
Setup and Configuration
To add this server to your Claude Desktop configuration, use the following JSON snippet:
{
"mcpServers": {
"meyhem": {
"command": "npx",
"args": ["mcp-remote", "https://api.rhdxm.com/mcp/"]
}
}
}
Tool Workflow
The server provides three tools that follow a specific sequence:
search→select→outcome
After using a search result, users report whether it worked via the outcome tool. This feedback signal is then fed back into the ranking algorithm, causing URLs that help agents succeed to rise in priority for all users. The system is designed to improve as more people use it.
The server is accessible at https://api.rhdxm.com and was shared on the r/ClaudeAI subreddit by user /u/Dashcamvideo.
📖 Read the full source: r/ClaudeAI
👀 See Also

Building a Sub-500ms Voice Agent: Architecture and Performance Insights
A developer built a voice agent from scratch achieving ~400ms end-to-end latency with full STT → LLM → TTS streaming. Key insights include treating voice as a turn-taking problem, using semantic end-of-turn detection, and colocating all components for minimal latency.

LetMeWatch: Python Plugin Adds Video Analysis to Claude via FFmpeg Scene Detection
A developer built a ~200-line Python plugin called LetMeWatch that enables Claude to analyze videos by using FFmpeg for scene detection, extracting only frames where visuals change, timestamping them, and feeding batches to Claude's multimodal vision.

The Companies Cutting Headcount for AI Will Lose to the Ones Who Didn't
AI headcount cuts trade long-term institutional knowledge for short-term savings. Retaining teams and using AI to amplify their capability is the winning strategy.

ByteRover Memory Plugin for OpenClaw: Native Integration with Semantic Hierarchy
ByteRover Memory Plugin for OpenClaw provides native, structured long-term memory via a three-layer architecture and semantic hierarchy stored in Markdown files. It achieves 92.2% retrieval accuracy and requires OpenClaw v2026.3.22+.