MCP servers and integrations for Vaquill - CourtListener, CanLII, chatbots, Slack, Discord, WordPress bots, and more.
Chatbots, widgets, extensions, MCP servers, and platform connectors for Vaquill AI — the legal research API.
Each integration is self-contained — pick any one, deploy it independently.
All chatbots and widgets use the Vaquill API. You need a Vaquill API key (vq_key_...) from vaquill.ai/dashboard.
git clone https://github.com/Vaquill-AI/integrations.git
cd integrations/<integration-name>
cp .env.example .env # add your VAQUILL_API_KEY
# follow the integration's README for setup| Integration | Platform | Language | Deploy |
|---|---|---|---|
| whatsapp-bot | WhatsApp (via Twilio) | Python (FastAPI) | Docker / Render |
| slack-bot | Slack | Python (slack-bolt) | Docker / Heroku |
| discord-bot | Discord | Python (discord.py) | Docker / Railway |
| telegram-bot | Telegram | Python (python-telegram-bot) | Docker / Render |
| ms-teams-bot | Microsoft Teams | Python (botbuilder) | Docker / Azure |
All chatbots share the same architecture:
vaquill_client.py) for legal Q&A| Integration | Type | Language | Deploy |
|---|---|---|---|
| widget-next | Embeddable chat (Next.js) | TypeScript | Vercel |
| widget | Embeddable chat (Docker) | Python + HTML | Docker Compose |
Drop-in chat widgets for any website. Embed with a script tag or iframe.
| Integration | Platform | Language |
|---|---|---|
| chrome-extension | Chrome / Edge / Brave | JavaScript (Manifest V3) |
Chrome extension popup with legal AI chat. Calls the Vaquill API directly.
| Integration | Platform | Format |
|---|---|---|
| n8n | n8n / Make.com | Workflow JSON |
Pre-built workflow templates for batch legal research via spreadsheets.
Hosted MCP endpoints for AI tool integration:
| Server | Endpoint | Auth |
|---|---|---|
| CourtListener | https://courtlistener-mcp.vaquill.ai/mcp/ | None required |
| CanLII | https://canlii-mcp.vaquill.ai/mcp | Bearer token required |
{
"mcpServers": {
"courtlistener": {
"url": "https://courtlistener-mcp.vaquill.ai/mcp/"
},
"canlii": {
"url": "https://canlii-mcp.vaquill.ai/mcp",
"headers": { "Authorization": "Bearer YOUR_TOKEN" }
}
}
}US federal and state court opinions, dockets, PACER data, and eCFR federal regulations via the CourtListener API v4.
streamable_http at /mcp/ (default), sse, stdiodocker-compose up -d (port 8000)Canadian federal and provincial court decisions and legislation via the CanLII API.
streamable_http at /mcp (stateless), stdiodocker run -e CANLII_API=key -p 3000:3000 (port 3000)All integrations use the same simple API:
curl -X POST https://api.vaquill.ai/api/v1/ask \
-H "Authorization: Bearer vq_key_..." \
-H "Content-Type: application/json" \
-d '{"question": "What is Section 302 IPC?"}'Response:
{
"data": {
"answer": "Section 302 of the Indian Penal Code deals with...",
"sources": [
{
"sourceIndex": 1,
"caseName": "State of UP v. Ram Sagar Yadav",
"citation": "(1985) 1 SCC 552",
"court": "Supreme Court of India",
"excerpt": "...",
"relevanceScore": 0.94
}
],
"mode": "standard"
},
"meta": {
"processingTimeMs": 2340.5,
"creditsConsumed": 0.5,
"creditsRemaining": 4.5
}
}See the API Reference for full documentation.
MIT. Each MCP server retains its upstream license — see individual subdirectories.
Vaquill-AI/integrations
March 16, 2026
April 13, 2026
Python