π Table of Contents
- Overview
- Main Features
- Architecture
- Getting Started
- MCP Integration
- Environment Variables
- API Documentation
- Contributors
- License
π― Overview
LangConnect Client is a modern, Next.js-based GUI interface for managing vector databases powered by PostgreSQL with pgvector extension. It provides an intuitive web interface for document management, vector search capabilities, and seamless integration with AI assistants through the Model Context Protocol (MCP).
This project was inspired by langchain-ai/langconnect.
β¨ Main Features
π Collection Management
- CRUD operations with custom metadata support
- Real-time statistics and bulk operations
π Document Management
- Multi-format support (PDF, TXT, MD, DOCX, HTML)
- Automatic text extraction and chunking
- Drag-and-drop batch upload
π Advanced Search
- Semantic: Vector similarity search with OpenAI embeddings
- Keyword: PostgreSQL full-text search
- Hybrid: Combined search with configurable weights
π Authentication
- Supabase JWT authentication with automatic token refresh
- Role-based access control
- Secure refresh token management with NextAuth.js
π€ MCP Integration
- 9+ tools for AI assistants (Claude, Cursor)
- stdio and SSE transport support
π¨ Modern UI
- Next.js with Tailwind CSS
- Dark/Light themes, Multi-language (EN/KO)
ποΈ Architecture
Authentication Flow
The authentication system implements a secure token refresh mechanism:
βββββββββββββββ ββββββββββββββββ βββββββββββββ
β Browser ββββββΆβ NextAuth ββββββΆβ Supabase β
β βββββββ (JWT) βββββββ Auth β
βββββββββββββββ ββββββββββββββββ βββββββββββββ
β β
β httpOnly cookie β refresh token
β (encrypted JWT) β stored in JWT
β β
βΌ βΌ
Only accessToken Auto refresh when
exposed to client accessToken expires
Key Security Features:
- Refresh tokens are never exposed to the client
- Automatic token refresh when access token expires
- Token rotation on each refresh for enhanced security
- Encrypted JWT storage in httpOnly cookies
π Getting Started
Quick Start
# Clone and setup git clone https://github.com/teddynote-lab/langconnect-client.git cd langconnect-client cp .env.example .env # Edit .env with your credentials, then: make build # Build Docker images make up # Start all services
Create MCP configuration
Stop services
Prerequisites
- Docker and Docker Compose
- Node.js 20+ (for MCP inspector)
- Python 3.11+ with UV package manager
- Supabase account
Installation
-
Clone the repository
git clone https://github.com/teddynote-lab/langconnect-client.git cd langconnect-client -
Set up environment variables
-
Configure Supabase
a. Create a new project at supabase.com
b. Get your API credentials:
- Go to Project Settings β API
- Copy the
URLandanon publickey
c. Update
.envfile:SUPABASE_URL=https://your-project.supabase.co SUPABASE_KEY=your-anon-public-key
-
Build the application
Running the Application
-
Start all services
-
Access the services
- π¨ Frontend: http://localhost:3000
- π API Documentation: http://localhost:8080/docs
- π Health Check: http://localhost:8080/health
-
Stop services
-
View logs
π€ MCP Integration
Automated Setup
-
Generate MCP configuration
This command will:
- Prompt for your Supabase credentials
- Automatically obtain an access token
- Update
.envwith the token - Generate
mcpserver/mcp_config.json
-
Integration with AI Assistants
For Claude Desktop:
- Copy the contents of
mcpserver/mcp_config.json - Paste into Claude Desktop's MCP settings
For Cursor:
- Copy the MCP configuration
- Add to Cursor's settings under MCP integrations
- Copy the contents of
Available MCP Tools
search_documents- Perform semantic/keyword/hybrid searchlist_collections- List all collectionsget_collection- Get collection detailscreate_collection- Create new collectiondelete_collection- Delete collectionlist_documents- List documents in collectionadd_documents- Add text documentsdelete_document- Delete documentsget_health_status- Check API healthmulti_query- Generate multiple search queries from a single question
Sample RAG Prompt
Here is a sample RAG prompt that can be used in Claude Desktop.
You are a question-answer assistant based on given document. You must use MCP tool(`langconnect-rag-mcp`) to answer the question. #Search Configuration: - Target Collection: (user's request, default value: RAG) - Search Type: hybrid(preferred) - Search Limit: 5(default) #Search Guidelines: Follow the guidelines step-by-step to find the answer. 1. Use `list_collections` to list up collections and find right **Collection ID** for user's request. 2. Use `multi_query` to generate at least 3 sub-questions which are related to original user's request. 3. Search all queries generated from previous step(`multi_query`) and find useful documents from collection. 4. Use searched documents to answer the question. --- ## Format: (answer to the question) **Source** - [1] (Source and page numbers) - [2] (Source and page numbers) - ... --- [Note] - Answer in same language as user's request - Append sources that you've referenced at the very end of your answer. - If you can't find your answer from <search_results>, just say you can't find any relevant source to answer the question without any narrative sentences.
Running MCP SSE Server
Quick Start with Script
# Use the convenient launcher script
./run_mcp_sse.shThis script will:
- Check if all requirements are met (uv, .env file)
- Verify API server is running
- Start the MCP SSE server with automatic authentication
Manual Start
# Or run directly
uv run python mcpserver/mcp_sse_server.pyThe server now includes automatic authentication:
- Tests existing token validity on startup
- Prompts for login if token is expired or missing
- Automatically updates
.envwith new token - Starts the SSE server on port 8765
Testing MCP Integration
# Test with MCP Inspector
npx @modelcontextprotocol/inspectorIn the Inspector:
- Select "SSE" as transport type
- Enter
http://localhost:8765/sseas URL - Connect and test the available tools
π§ Environment Variables
| Variable | Description | Required |
|---|---|---|
OPENAI_API_KEY |
OpenAI API key for embeddings | Yes |
SUPABASE_URL |
Supabase project URL | Yes |
SUPABASE_KEY |
Supabase anon public key | Yes |
NEXTAUTH_SECRET |
NextAuth.js secret key | Yes |
NEXTAUTH_URL |
NextAuth URL (default: http://localhost:3000) | Yes |
NEXT_PUBLIC_API_URL |
Public API URL for frontend | Yes |
POSTGRES_HOST |
PostgreSQL host (default: postgres) | No |
POSTGRES_PORT |
PostgreSQL port (default: 5432) | No |
POSTGRES_USER |
PostgreSQL user (default: teddynote) | No |
POSTGRES_PASSWORD |
PostgreSQL password | No |
POSTGRES_DB |
PostgreSQL database name | No |
SSE_PORT |
MCP SSE server port (default: 8765) | No |
π₯ Contributors
π License
This project is licensed under the MIT License - see the LICENSE file for details.
