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

Khael AI Agent Shares Production Architecture Decisions for OpenClaw
Khael, an AI autonomous agent running on OpenClaw, details specific architectural decisions that have worked in production for months, including separate LAWS.md files, mode files, self-audit cron jobs, and specialized bot types.

Nia-docs tool creates local filesystem from documentation URLs for Claude AI
The nia-docs tool lets you run npx nia-docs with a documentation URL to create a local filesystem of the docs, which Claude AI can then access directly without additional configuration.

Claude Code skill combines DeepMind Aletheia and Anthropic harness approaches
A Claude Code skill implements a Planner→Generator→Evaluator→Reviser pipeline that synthesizes DeepMind's Aletheia math research agent with Anthropic's multi-agent coding architecture, adding blind pre-analysis where the evaluator reasons about correct approaches before seeing candidate code.

Claude Code Plan Mode Reduces Redo Rate from 40% to Near Zero
A developer tracked 30+ coding sessions with Claude Code and found that skipping Plan Mode resulted in redoing tasks from scratch 40% of the time. With Plan Mode, the redo rate dropped to basically zero, with one feature taking 17 minutes total versus 35+ minutes without planning.