mcp-local-rag

"primitive" RAG-like web search model context protocol (MCP) server that runs locally. ✨ no APIs ✨

GitHub Stars

76

User Rating

Not Rated

Favorites

0

Views

21

Forks

15

Issues

3

Installation
Difficulty
Intermediate
Estimated Time
10-20 minutes

Installation

Installation

Prerequisites

Please specify required software and versions:
Python: 3.10 or higher
Docker: Latest version (if using Docker)
uv: Latest version (if using uvx)

Installation Steps

1. Add MCP Server Configuration

Add the following configuration to your MCP server settings. #### Using uvx
json
{
  "mcpServers": {
    "mcp-local-rag":{
      "command": "uvx",
      "args": [
        "--python=3.10",
        "--from",
        "git+https://github.com/nkapila6/mcp-local-rag",
        "mcp-local-rag"
      ]
    }
  }
}
#### Using Docker
json
{
  "mcpServers": {
    "mcp-local-rag": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "--init",
        "-e",
        "DOCKER_CONTAINER=true",
        "ghcr.io/nkapila6/mcp-local-rag:latest"
      ]
    }
  }
}

2. Start the Server

Once the configuration is complete, start the MCP server. The specific command will vary based on the method you are using.

Additional Resources