MCP.so
登录

Ragie Model Context Protocol Server

@andyciggy

关于 Ragie Model Context Protocol Server

暂无概览

基本信息

分类

其他

许可证

MIT license

运行时

node

传输方式

stdio

发布者

andyciggy

配置

使用下面的配置,将此服务器添加到你的 MCP 客户端。

{
  "mcpServers": {
    "ragie-mcp-server-andyciggy": {
      "command": "npx",
      "args": [
        "@ragieai/mcp-server"
      ],
      "env": {
        "RAGIE_API_KEY": "your_api_key"
      }
    }
  }
}

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

What is Ragie Model Context Protocol Server?

The Ragie Model Context Protocol Server implements the Model Context Protocol (MCP) 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. It is built for developers and AI assistants that need to integrate Ragie’s knowledge retrieval capabilities.

How to use Ragie Model Context Protocol Server?

Install and run with npx, setting the required RAGIE_API_KEY environment variable. Optionally pass --description or --partition command line flags. The server listens on stdio for MCP messages and can be configured in Cursor via a mcp.json file or shell script, or in Claude Desktop via claude_desktop_config.json.

Key features of Ragie Model Context Protocol Server

  • Single retrieve tool for querying the knowledge base.
  • Parameters: query (string), topK (optional, default 8), rerank (optional, default true), recencyBias (optional, default false).
  • Returns an array of content chunks with matching text.
  • Supports custom tool descriptions via --description flag.
  • Supports partition-scoped queries via --partition flag.
  • Compatible with Cursor and Claude Desktop MCP clients.

Use cases of Ragie Model Context Protocol Server

  • Enable AI assistants to search a company knowledge base for answers.
  • Provide relevant document snippets to language models during conversations.
  • Integrate Ragie retrieval into automated workflows that use MCP-compatible tools.
  • Offer context-aware responses in Cursor or Claude Desktop environments.

FAQ from Ragie Model Context Protocol Server

What is the retrieve tool and what parameters does it accept?

The retrieve tool searches the Ragie knowledge base. It accepts query (required), topK (optional, default 8), rerank (optional, default true), and recencyBias (optional, default false). It returns an array of content chunks with matching text.

What are the prerequisites and dependencies?

Node.js >= 18 and a valid Ragie API key. The server uses @modelcontextprotocol/sdk, ragie, and zod.

How do I configure the server with Cursor?

Create a mcp.json file in the project’s .cursor folder or in ~/.cursor/ with the command npx -y @ragieai/mcp-server and required environment variables. Alternatively, use a shell script and add it through Cursor Settings > MCP Servers.

How do I configure the server with Claude Desktop?

Add an entry to claude_desktop_config.json (located at ~/Library/Application Support/Claude/ on macOS or %APPDATA%/Claude/ on Windows) with the same command and environment variables, then restart Claude desktop.

Are there any command line options or customizations?

Yes: --description or -d to override the default tool description, and --partition or -p to specify a Ragie partition ID. Both can be used together.

评论

其他 分类下的更多 MCP 服务器