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

Local-First Movie Recap Pipeline Using Whisper + CLIP + Ollama
A fully local pipeline that auto-generates narrated movie recap videos using Whisper, CLIP, Ollama, Edge TTS, and FFmpeg. Drop in a movie file, get a narrated recap in ~15 minutes.

Custom Output Styles Collection for Claude Code
A developer has created 13 custom output styles for Claude Code that modify the AI's behavior through system prompts. The styles include Roast for brutal code critique, Socratic for guided questioning, Breaker for adversarial testing, Ship It for pragmatic solutions, Paranoid for security focus, and TDD for test-driven development.

Clawdwatch: Open-source OSINT tool for real-time flight tracking, news scraping, and alerts
Clawdwatch is a CLI tool that pulls live flight data from OpenSky Network, scrapes news from Al Jazeera and AP, and can send Telegram alerts for military aircraft or emergency squawks. It runs locally with npm install and tracks 204+ flights over the Middle East in real-time.

MCP Server Connects Claude to Agent-to-Agent Marketplace
A developer built an MCP server that exposes five tools and two resources, allowing Claude to search, invoke, and pay for capabilities from other AI agents in a marketplace. The server includes persistent storage in an agent vault and was largely implemented using Claude Code.