GroundX RAG

by prixyy

1 stars
Not rated
GitHub

About

Integrates with GroundX to provide document search and ingestion capabilities, enabling domain-specific knowledge retrieval without requiring direct access to underlying document storage.

Details

Author
prixyy
Repository
PRIXYY/Rag_Based_MCP
GitHub stars
1
Categories
Developer Tools, Design, Workplace, File Management, AI, Search, Infrastructure, Frontend, Knowledge Base, Security

- Ingest Tool: Upload new documents to the server.
- Answer Tool: Ask questions and receive context-aware answers based on the ingested documents.
- Built with FastMCP, uses the GroundX API for document parsing and intelligence.

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name GroundX RAG
    Command (node, npx, python, etc.) npx
    Arguments
    • Argument 1 -y
    • Argument 2 @highlight/mcp-server

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

ingest_documents

Ingest new documents to the system.

answer_query

Ask questions and get answers based on the ingested documents.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "groundx rag": {
            "env": {},
            "args": [
                "-y",
                "@highlight/mcp-server"
            ],
            "command": "npx"
        }
    }
}

Linux

{
    "env": [],
    "args": [
        "-y",
        "@highlight/mcp-server"
    ],
    "command": "npx"
}

Macos

{
    "env": [],
    "args": [
        "-y",
        "@highlight/mcp-server"
    ],
    "command": "npx"
}

Windows

{
    "env": [],
    "args": [
        "/c",
        "npx",
        "-y",
        "@highlight/mcp-server"
    ],
    "command": "cmd"
}

MCP Document QA Server

This is an MCP (Model Context Protocol ) server built to help you ingest documents and ask questions about them. Powered by the GroundX API, the server enables seamless document parsing and querying.

🧠 Features

- Ingest Tool: Upload new documents to the server.
- Answer Tool: Ask questions and receive context-aware answers based on the ingested documents.
- Built with FastMCP, uses the GroundX API for document parsing and intelligence.

🚀 Getting Started

1. Fork the Repository

Start by forking this repository to your own GitHub account.

2. Open in Cursor

Open the forked repository in Cursor.

3. Add MCP Integration

- Use the "Add MCP" option in Cursor.
- The platform will automatically detect the included mcp.json file.

4. Tools Available

Once the MCP server is loaded, you will have access to two tools:

- ingest_documents: Ingest new documents to the system.
- answer_query: Ask questions and get answers based on the ingested documents.

🔧 Configuration

GroundX API Key

Make sure to add your GroundX API key in the server.py file:

```python

server.py


GROUNDX_API_KEY = "your_api_key_here"

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.