Ragie Model Context Protocol Server
About
An MCP server for accessing Ragie's knowledge base retrieval capabilities.
Details
- Author
- ragieai
- GitHub stars
- 89
- Downloads
- 231
- Categories
- Search, Knowledge Base, AI, Other
Jump to
- Provides a single “retrieve” tool for knowledge base queries.
- Accepts query, topK, rerank, and recencyBias parameters.
- Returns an array of relevant content chunks.
- Supports custom tool description and partition ID overrides.
- Runs on Node.js >= 18 with a Ragie API key.
- Works with Cursor and Claude Desktop MCP configurations.
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:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
Ragie Model Context Protocol ServerCommand (node, npx, python, etc.)Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
Install and run with npx using your Ragie API key: RAGIE_API_KEY=your_api_key npx @ragieai/mcp-server. Optionally, pass --description or --partition flags. Configure it in Cursor via an mcp.json file or a shell script, or in Claude Desktop via claude_desktop_config.json. The server listens on stdio for MCP protocol messages.
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"ragie model context protocol server": {
"ragie-mcp-server": {
"command": "npx",
"args": [
"@ragieai/mcp-server"
],
"env": {
"RAGIE_API_KEY": "your_api_key"
}
}
}
}
}
McpServers
{
"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
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.


