Chalee MCP Rag MCP Server

A Model Context Protocol (MCP) server with RAG (Retrieval-Augmented Generation) capabilities for intelligent document processing and question

Local serverstdioTypeScript

What is the Chalee MCP Rag MCP server?

If you want an AI assistant working directly with Chalee MCP Rag, the chalee mcp rag mcp server is the bridge. A Model Context Protocol (MCP) server with RAG (Retrieval-Augmented Generation) capabilities for intelligent document processing and question answering.

What Chalee MCP Rag does

一个基于 Model Context Protocol (MCP) 的 **RAG(检索增强生成)**服务器,提供文档处理、向量存储和智能问答功能。

Tools it exposes

Once connected, the assistant can call these 5 tools directly:

  • macOS — 编辑 ~/Library/Application Support/Claude/claude_desktop_config.json:
  • Windows — The Windows tool exposed by this server
  • initialize_rag — The initialize_rag tool exposed by this server
  • add_document — The add_document tool exposed by this server
  • ask_question — interface AskQuestionResponse { question: string; answer: string; sources?: Array<{ content: string; similarity: number; metadata: Record<string, any>; }>

Installing the chalee mcp rag mcp server

The server is distributed via npm as COPY, so most clients can run it without a manual build step. Add it to your MCP client's configuration and restart the client to pick it up — the copy-paste configs for Claude Desktop, Claude Code and Cursor are on this page.

Configuration

Before the server will start you need to supply one environment variable: OPENAI_API_KEY. Keep credentials in your client's env block or a secrets manager rather than committing them.

Where it fits

AI-service servers chain other models into your assistant, turning a single chat into a small production pipeline. Chalee MCP Rag sits in that group, and the shape of its toolset — macOS, Windows, initialize_rag among others — tells you what it is really for. Worth comparing against the other ai services servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This server runs locally, so it operates with whatever access your machine and its credentials already have. Scope that deliberately rather than by default.
  • It will not start until its required credentials are present, so set those before wondering why the tools never appear.
  • Maintained by PrettyKing, written in TypeScript.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the chalee mcp rag mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

Available tools

ToolWhat it does
macOS编辑 ~/Library/Application Support/Claude/claude_desktop_config.json:
WindowsThe Windows tool exposed by this server.
initialize_ragThe initialize_rag tool exposed by this server.
add_documentThe add_document tool exposed by this server.
ask_questioninterface AskQuestionResponse { question: string; answer: string; sources?: Array<{ content: string; similarity: number; metadata: Record<string, any>; }>; timestamp: string; }

How to install the Chalee MCP Rag MCP server

{
  "mcpServers": {
    "chalee-mcp-rag": {
      "command": "npx",
      "args": ["-y", "COPY"],
      "env": {
        "OPENAI_API_KEY": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
OPENAI_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Chalee MCP Rag to macOS.
  • Use Chalee MCP Rag to Windows.
  • Use Chalee MCP Rag to initialize rag.

Frequently asked questions

It connects Chalee MCP Rag to MCP-compatible AI assistants such as Claude and Cursor, exposing 5 tools (macOS, Windows, initialize_rag, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Chalee MCP Rag directly.