{
"mcpServers": {
"ragie": {
"env": {
"RAGIE_API_KEY": "your_api_key"
},
"args": [
"-y",
"@ragieai/mcp-server",
"--partition",
"optional_partition_id"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Ragie Model Context Protocol Server
Is it safe?
No known CVEs for @ragieai/mcp-server.
No authentication — any process on your machine can connect.
MIT. View license →
Is it maintained?
Last commit 64 days ago. 87 stars. 39 weekly downloads.
Will it work with my client?
Transport: stdio, sse, http. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
Context cost
1 tool. ~200 tokens (0.1% of 200K).
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@ragieai/mcp-server' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
No known vulnerabilities.
retrieveSearch the knowledge base for relevant information
This server is missing a description.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Dynamic problem-solving through sequential thought chains
A Model Context Protocol server for searching and analyzing arXiv papers
An open-source AI agent that brings the power of Gemini directly into your terminal.
The official Python SDK for Model Context Protocol servers and clients
MCP Security Weekly
Get CVE alerts and security updates for Ragie Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
This project is no longer needed. Ragie now supports MCP natively as a streamable HTTP server. See docs here: [https://docs.ragie.ai/docs/mcp-overview]
If you would like users within your company to be able to access you knowledge base in applications like Claude or ChatGPT, you may need MCP Bridge
A Model Context Protocol (MCP) server that provides access to Ragie's knowledge base retrieval capabilities.
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.
The server requires the following environment variable:
RAGIE_API_KEY (required): Your Ragie API authentication keyThe 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
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 queryExamples:
# With custom description
RAGIE_API_KEY=your_api_key npx @ragieai/mcp-server --description "Search the company knowledge base for information"
# With partition specified
RAGIE_API_KEY=your_api_key npx @ragieai/mcp-server --partition your_partition_id
# Using both options
RAGIE_API_KEY=your_api_key npx @ragieai/mcp-server --description "Search the company knowledge base" --partition your_partition_id
To use this MCP server with Cursor:
mcp.json.cursor/mcp.json file in your project directory. This allows you to define MCP servers that are only available within that specific project.~/.cursor/mcp.json file in your home directory. This makes MCP servers available in all your Cursor workspaces.Example mcp.json:
{
"mcpServers": {
"ragie": {
"command": "npx",
"args": [
"-y",
"@ragieai/mcp-server",
"--partition",
"optional_partition_id"
],
"env": {
"RAGIE_API_KEY": "your_api_key"
}
}
}
}
ragie-mcp.sh on your system:#!/usr/bin/env bash
export RAGIE_API_KEY="your_api_key"
npx -y @ragieai/mcp-server --partition optional_partition_id
Give the file execute permissions: chmod +x ragie-mcp.sh
Add the MCP server script by going to Settings -> Cursor Settings -> MCP Servers in the Cursor UI.
Replace your_api_key with your actual Ragie API key and optionally set the partition ID if needed.
To use this MCP server with Claude desktop:
claude_desktop_config.json:~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%/Claude/claude_desktop_config.jsonExample claude_desktop_config.json:
{
"mcpServers": {
"ragie": {
"command": "npx",
"args": [
"-y",
"@ragieai/mcp-server",
"--partition",
"optional_partition_id"
],
"env": {
"RAGIE_API_KEY": "your_api_key"
}
}
}
}
Replace your_api_key with your actual Ragie API key and optionally set the partition ID if needed.
The Ragie retrieval tool will now be available in your Cla