Skip to content

usemcpGive your AI Agent Real-World Context.

Open-source Model Context Protocol (MCP) servers bridging LLMs with local files, AI audio, and validation frameworks.

⭐ Star us on GitHub

Support the project and stay updated with the latest features

Quick Setup

1. Everything Search (Windows)

Add this to your mcpServers configuration:

json
"everything-search": {
  "command": "uv",
  "args": [
    "--directory",
    "/path/to/mcp-everything-search/src/mcp_server_everything_search",
    "run",
    "mcp-server-everything-search"
  ],
  "env": {
    "EVERYTHING_SDK_PATH": "path/to/Everything-SDK/dll/Everything64.dll"
  }
}

2. ElevenLabs

Add this (and your API key) to your configuration:

json
"elevenlabs": {
  "command": "uv",
  "args": [
    "--directory",
    "path/to/elevenlabs-mcp-server",
    "run",
    "elevenlabs-mcp-server"
  ],
  "env": {
    "ELEVENLABS_API_KEY": "your-api-key",
    "ELEVENLABS_VOICE_ID": "your-voice-id",
    "ELEVENLABS_MODEL_ID": "eleven_flash_v2",
    "ELEVENLABS_STABILITY": "0.5",
    "ELEVENLABS_SIMILARITY_BOOST": "0.75",
    "ELEVENLABS_STYLE": "0.1",
    "ELEVENLABS_OUTPUT_DIR": "output"
  }
}

3. MAID Runner MCP

First install via pip:

bash
pip install maid-runner-mcp

Then add this to your configuration:

json
"maid-runner": {
  "command": "uv",
  "args": ["run", "maid-runner-mcp"],
  "env": {
    "MAID_MANIFEST_DIR": "manifests"
  }
}

Video Tutorials

Introduction to MCP Servers

Adding Instant Full-system Search and File management to Claude Desktop

Cline Takes MCP Server Development to the NEXT LEVEL

See how Cline accelerates MCP server development

AI Audiobook Generator

Build an audiobook generator with Claude, Cline, and ElevenLabs MCP Server

Building MAID Runner MCP Server

See how MAID Runner MCP server was built using MAID Runner itself

Released under the MIT License.