ragdoll-mcp-server
A Model Context Protocol (MCP) server for Ragdoll AI knowledge base queries.
Ragdoll AI MCP Server
A Model Context Protocol (MCP) server for Ragdoll AI knowledge base queries.
Overview
This MCP server provides a simple interface to query Ragdoll AI knowledge bases through the Model Context Protocol. It allows seamless integration with various LLM client applications including Cursor, Windsurf, and Cline.
Prerequisites
- Bun runtime (v1.2.1 or later)
- Ragdoll AI API key
- Ragdoll AI knowledge base ID
Installation
Clone the repository and install dependencies:
git clone <repository-url>
cd mcp-ragdoll-server
bun install
Configuration
Set up your environment variables:
export RAGDOLL_API_KEY="your-ragdoll-api-key"
export RAGDOLL_KNOWLEDGE_BASE_ID="your-knowledge-base-id"
For persistent configuration, add these to your .bashrc
, .zshrc
, or create a .env
file in the project root.
Running the Server
Start the server:
bun run index.ts
Client Setup
NPX Installation (Recommended)
The simplest way to use this server is via NPX:
npx -y ragdoll-mcp-server
Cursor
To install the Ragdoll MCP server in Cursor IDE:
- Open Cursor IDE
- Go to Settings > Extensions > AI Settings
- Create a file named
mcp.json
with the following configuration:
{
"mcpServers": {
"ragdoll-mcp-server": {
"command": "npx",
"args": ["-y", "ragdoll-mcp-server"],
"env": {
"RAGDOLL_API_KEY": "your-ragdoll-api-key",
"RAGDOLL_KNOWLEDGE_BASE_ID": "your-knowledge-base-id"
}
}
}
}
Alternatively, you can run the server locally:
{
"mcpServers": {
"ragdoll-mcp-server": {
"command": "bun",
"args": ["run", "/path/to/mcp-ragdoll-server/index.ts"],
"env": {
"RAGDOLL_API_KEY": "your-ragdoll-api-key",
"RAGDOLL_KNOWLEDGE_BASE_ID": "your-knowledge-base-id"
}
}
}
}
Windsurf
To install the Ragdoll MCP server in Windsurf IDE:
Create or edit your mcp_config.json
file with the following configuration:
{
"mcpServers": {
"ragdoll-mcp-server": {
"command": "npx",
"args": ["-y", "ragdoll-mcp-server"],
"env": {
"RAGDOLL_API_KEY": "your-ragdoll-api-key",
"RAGDOLL_KNOWLEDGE_BASE_ID": "your-knowledge-base-id"
}
}
}
}
Cline
To install the Ragdoll MCP server in Cline:
Create or edit your cline_mcp_settings.json
file with the following configuration:
{
"mcpServers": {
"ragdoll-mcp-server": {
"command": "npx",
"args": ["-y", "ragdoll-mcp-server"],
"env": {
"RAGDOLL_API_KEY": "your-ragdoll-api-key",
"RAGDOLL_KNOWLEDGE_BASE_ID": "your-knowledge-base-id"
}
}
}
}
Usage
Once connected, you can query your Ragdoll knowledge base with the following parameters:
query
(string, required): The search query to find relevant informationtopK
(number, optional): Number of results to return (1-10)rerank
(boolean, optional): Whether to rerank results
Example usage in your LLM client:
You can ask questions about your knowledge base content.
Development
This project uses the Model Context Protocol SDK. For more information, refer to the MCP documentation.
Support
For issues or questions about this MCP server, please submit an issue on GitHub.
License
Related MCP Servers
View all knowledge_and_memory servers →git-mcp
by idosal
GitMCP is a free, open-source, remote Model Context Protocol (MCP) server that transforms GitHub projects into documentation hubs, enabling AI tools to access up-to-date documentation and code.
Knowledge Graph Memory Server
by modelcontextprotocol
A basic implementation of persistent memory using a local knowledge graph, allowing Claude to remember information about the user across chats.
mcpdoc
by langchain-ai
MCP LLMS-TXT Documentation Server provides a structured way to manage and retrieve LLM documentation using the Model Context Protocol.
rust-docs-mcp-server
by Govcraft
The Rust Docs MCP Server provides an up-to-date knowledge source for specific Rust crates, enhancing the accuracy of AI coding assistants by allowing them to query current documentation.
mindmap-mcp-server
by YuChenSSR
A Model Context Protocol (MCP) server for converting Markdown content to interactive mindmaps.
algorand-mcp
by GoPlausible
This is a Model Context Protocol (MCP) implementation for Algorand blockchain interactions, providing a server package for blockchain interactions and a client package for wallet management and transaction signing.
basic-memory
by basicmachines-co
Basic Memory is a tool that allows users to build a persistent knowledge base through natural conversations with LLMs, storing information in Markdown files.