Ragie Model Context Protocol Server

by MCP-Mirror

292 downloads
Not rated
GitHub

About

A Model Context Protocol (MCP) server that provides access to Ragie's knowledge base retrieval capabilities. It implements the Model Context Protocol to enable AI models to retrieve information from a Ragie knowledge base.

Details

Author
MCP-Mirror
Downloads
292
Categories
Other, Knowledge Base

- Provides a retrieve tool for searching the knowledge base
- Accepts optional parameters: topK, rerank, and recencyBias
- Customizable tool description via --description flag
- Partition filtering via --partition flag
- Easy integration with Cursor and Claude Desktop

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name Ragie Model Context Protocol Server
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Install and run with npx: set the RAGIE_API_KEY environment variable and optionally use --description and --partition flags. Configure the server for use with Cursor or Claude Desktop by adding a mcp.json or claude_desktop_config.json file.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "ragie model context protocol server": {
            "ragieai_ragie-mcp-server": {
                "command": "npx",
                "args": [
                    "@ragieai/mcp-server"
                ],
                "env": {
                    "RAGIE_API_KEY": "your_api_key"
                }
            }
        }
    }
}

McpServers

{
    "ragieai_ragie-mcp-server": {
        "command": "npx",
        "args": [
            "@ragieai/mcp-server"
        ],
        "env": {
            "RAGIE_API_KEY": "your_api_key"
        }
    }
}

Ragie Model Context Protocol Server

A Model Context Protocol (MCP) server that provides access to Ragie's knowledge base retrieval capabilities.

Description

This server implements the Model Context Protocol to enable AI models to retrieve information from a Ragie knowledge base. It provides a single tool called "retrieve" that allows querying the knowledge base for relevant information.

Prerequisites

- Node.js >= 18
- A Ragie API key

Installation

The server requires the following environment variable:

- RAGIE_API_KEY (required): Your Ragie API authentication key

The server will start and listen on stdio for MCP protocol messages.

Install and run the server with npx:

RAGIE_API_KEY=your_api_key npx @ragieai/mcp-server

Command Line Options

The server supports the following command line options:

- --description, -d <text>: Override the default tool description with custom text
- --partition, -p <id>: Specify the Ragie partition ID to query

Examples:

```bash

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.