ragie
Ragie Model Context Protocol Server
claude mcp add --transport stdio ragieai-ragie-mcp-server npx -y @ragieai/mcp-server \ --env RAGIE_API_KEY="your_api_key"
How to use
The Ragie MCP server exposes a single tool named retrieve, which lets AI models query Ragie's knowledge base via the MCP protocol. Once running, clients can connect to this MCP server and invoke the retrieve tool with a query and optional parameters such as topK, rerank, and recencyBias to control result relevance and freshness. The tool returns an array of knowledge chunks that match the query, enabling downstream agents (e.g., ChatGPT, Claude, or other MCP-enabled models) to surface relevant Ragie content in responses. Typical usage involves sending a request with a query string and tuning topK to balance coverage and latency.
To use this server in your workflow, configure an MCP client (for example via Cursor or Claude Desktop) to point at the ragie MCP server, and then call the retrieve tool with your search terms. You can customize results with options: topK (default 8), rerank (default true), and recencyBias (default false). Provide your Ragie API key as an environment variable (RAGIE_API_KEY) when starting the server to authenticate with Ragie's API.
How to install
Prerequisites:
- Node.js v18 or newer
- A Ragie API key
Installation and startup:
-
Ensure Node.js is installed and your Ragie API key is ready.
-
Start the MCP server using npx and supply your Ragie API key:
RAGIE_API_KEY=your_api_key npx -y @ragieai/mcp-server
-
(Optional) If you need to restrict or seed the server with a partition, add the --partition flag:
RAGIE_API_KEY=your_api_key npx -y @ragieai/mcp-server --partition your_partition_id
-
The server will listen on stdio for MCP protocol messages and can be consumed by MCP clients such as Cursor or Claude Desktop.
Additional notes
Environment variables and configuration tips:
- RAGIE_API_KEY is required to authenticate with Ragie's API.
- You can pass an optional --partition to target a specific Ragie partition.
- When integrating with clients like Cursor or Claude Desktop, you can create an mcp.json config or shell script as shown in the README to automate startup.
- If you encounter connection or authentication issues, verify that the RAGIE_API_KEY is correct and that network access to Ragie's API endpoints is allowed from your environment.
- The server implements a single tool named retrieve; ensure your MCP client invokes that tool with the appropriate query and parameters.
Related MCP Servers
zen
Selfhosted notes app. Single golang binary, notes stored as markdown within SQLite, full-text search, very low resource usage
MCP -Deepseek_R1
A Model Context Protocol (MCP) server implementation connecting Claude Desktop with DeepSeek's language models (R1/V3)
mcp-fhir
A Model Context Protocol implementation for FHIR
mcp
Inkdrop Model Context Protocol Server
mcp-appium-gestures
This is a Model Context Protocol (MCP) server providing resources and tools for Appium mobile gestures using Actions API..
dubco -npm
The (Unofficial) dubco-mcp-server enables AI assistants to manage Dub.co short links via the Model Context Protocol. It provides three MCP tools: create_link for generating new short URLs, update_link for modifying existing links, and delete_link for removing short links.