Ragie Model Context Protocol Server
Ragie Model Context Protocol Server
Overview
Ragie Model Context Protocol Server is a server that implements the Model Context Protocol (MCP) to enable AI models to retrieve information from a Ragie knowledge base.
To use the server, you need to install it using Node.js and provide your Ragie API key. You can run the server with the command: RAGIE_API_KEY=your_api_key npx @ragieai/mcp-server.
- Implements the Model Context Protocol for knowledge retrieval. - Provides a
retrievetool for querying the knowledge base. - Supports optional partition ID for more specific queries.
- Integrating with AI models to enhance their knowledge retrieval capabilities.
- Enabling applications to access and utilize the Ragie knowledge base.
- Assisting developers in building AI-driven applications that require contextual information.
Add to your AI client
Use these steps to connect Ragie Model Context Protocol Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"ragie-mcp-server-ragieai": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-ragie-mcp-server-ragieai"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"ragie-mcp-server-ragieai": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-ragie-mcp-server-ragieai"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"ragie-mcp-server-ragieai": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-ragie-mcp-server-ragieai"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"ragie-mcp-server-ragieai": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-ragie-mcp-server-ragieai"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"ragie-mcp-server-ragieai": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-ragie-mcp-server-ragieai"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"ragie-mcp-server-ragieai": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-ragie-mcp-server-ragieai"
]
}
}
}FAQ
What is the Model Context Protocol?
It is a protocol that allows AI models to retrieve contextual information from a knowledge base.
Do I need a Ragie API key to use the server?
Yes, a Ragie API key is required for authentication.
Can I run the server without a partition ID?
Yes, the partition ID is optional.