What is 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.
Documentation
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.
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:
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
Cursor Configuration
To use this MCP server with Cursor:
Option 1: Create an MCP configuration file
Save a file called mcp.json
For tools specific to a project, create a .cursor/mcp.json file in your project directory. This allows you to define MCP servers that are only available within that specific project.
For tools that you want to use across all projects, create a ~/.cursor/mcp.json file in your home directory. This makes MCP servers available in all your Cursor workspaces.