refined-mcp-servers

promplate/refined-mcp-servers
★ 0 stars Python AI/LLM Updated 1d ago
A collection of well-designed MCP servers optimized for LLMs.
View on GitHub → Try with Claude — $10 free →

Quick Install

Copy the config for your editor. Some servers may need additional setup — check the README.

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "refined-mcp-servers": {
      "command": "uvx",
      "args": [
        "refined-mcp-servers"
      ]
    }
  }
}

Or install with pip: pip install refined-mcp-servers

README Excerpt

A collection of well-designed MCP servers optimized for LLMs. MCP server design often falls into two extremes: 1. **Atomized tools** (like GitHub's official MCP server): exposes hundreds of low-level tools that sound reusable in theory, but are impractical in reality—wasteful, slow, and prone to errors.