ickyMCP

ickyMCP

RAG-powered document search server that enables semantic search across large collections of legal and business documents (PDF, Word, Excel, PowerPoint) using local embeddings with no API costs.

Category
Visit Server

README

ickyMCP

RAG MCP Server for Document Search. Built for legal professionals and business users who need to search across large document collections.

Features

  • Semantic Search: Find relevant content based on meaning, not just keywords
  • Document Support: PDF, Word (.docx), PowerPoint (.pptx), Excel (.xlsx), Markdown, Text
  • 4K Token Chunks: Large chunks preserve context for legal and business documents
  • Incremental Indexing: Only re-index changed files
  • Local Embeddings: Uses nomic-embed-text-v1.5 (no API costs)
  • SQLite Storage: Single portable database file

Installation

# Clone or copy the project
cd ickyMCP

# Create virtual environment
python -m venv venv
source venv/bin/activate  # or `venv\Scripts\activate` on Windows

# Install dependencies
pip install -r requirements.txt

# Or install as package
pip install -e .

Configuration

Environment Variables

Variable Default Description
ICKY_CHUNK_SIZE 4000 Tokens per chunk
ICKY_CHUNK_OVERLAP 500 Overlap between chunks
ICKY_DB_PATH ./icky.db Path to SQLite database
ICKY_EMBEDDING_MODEL nomic-ai/nomic-embed-text-v1.5 Embedding model

Claude Code Configuration

Add to your claude_desktop_config.json or MCP settings:

{
  "mcpServers": {
    "ickyMCP": {
      "command": "python",
      "args": ["/path/to/ickyMCP/run.py"],
      "env": {
        "ICKY_CHUNK_SIZE": "4000",
        "ICKY_CHUNK_OVERLAP": "500",
        "ICKY_DB_PATH": "/path/to/icky.db"
      }
    }
  }
}

Usage

Tools Available

index

Index documents from a file or directory.

index(path="/contracts/2024", patterns=["*.pdf", "*.docx"])

search

Semantic search across indexed documents.

search(query="indemnification clause", top_k=10, file_types=["pdf"])

similar

Find chunks similar to a given text.

similar(chunk_text="The parties agree to...", top_k=5)

refresh

Re-index only files that have changed.

refresh(path="/contracts")

list

List all indexed documents.

list(path_filter="/contracts")

delete

Remove documents from the index.

delete(path="/contracts/old")
delete(all=true)  # Clear entire index

status

Get server status and statistics.

status()

How It Works

  1. Indexing: Documents are parsed, split into 4K token chunks with 500 token overlap
  2. Embedding: Each chunk is embedded using nomic-embed-text-v1.5 (768 dimensions)
  3. Storage: Embeddings stored in SQLite with sqlite-vec for fast vector search
  4. Search: Query is embedded, compared against all chunks using cosine similarity
  5. Results: Top-K most similar chunks returned with full text and metadata

System Requirements

  • Python 3.10+
  • 4GB RAM (2GB for model + headroom)
  • ~1GB disk space (model + database)

License

MIT

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
E2B

E2B

Using MCP to run code via e2b.

Official
Featured