canlii-mcp
This server gives AI assistants access to Canadian legal case law and legislation metadata across all federal, provincial, and territorial jurisdictions via the CanLII API. Note: full document text is not available — only metadata (titles, citations, dates, keywords, citation relationships).
Capabilities:
List case databases — Retrieve all courts and tribunals in the CanLII collection, including their database IDs (
list_case_databases)Browse cases — List decisions from a specific court/tribunal with optional date range filters, pagination, and result count control (
list_cases)Get case metadata — Retrieve a case's title, citation, decision date, keywords, and URL (
get_case)Explore citation relationships — Find cases a given case cites, cases that cite it, or legislation it references (
get_case_citations; currently English only)List legislation databases — Retrieve all statute and regulation databases available in CanLII (
list_legislation_databases)Browse legislation — List statutes or regulations from a specific database (
list_legislation)Get legislation metadata — Retrieve a statute's or regulation's title, citation, dates, and repeal status (
get_legislation)
Most tools support both English and French language responses where available.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@canlii-mcpsearch for cases citing R v Oakes"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
canlii-mcp
An MCP (Model Context Protocol) server for the CanLII Canadian legal information API. Gives AI assistants access to Canadian case law and legislation metadata across all federal, provincial, and territorial jurisdictions.
Forked from tomilashy/canlii-mcp. This fork adds bring-your-own-key (BYOK) auth, a
/healthroute, and a hosted endpoint atcanlii-mcp.vaquill.ai. Tools are unchanged.
Note: The CanLII API provides metadata only — titles, citations, dates, keywords, and citation relationships. Full document text is not available through the API.
Use the hosted endpoint (no install)
https://canlii-mcp.vaquill.ai/mcpThe hosted instance is public. No Vaquill token is required. Provide your own CanLII key one of two ways:
Header (recommended, keeps the key out of the URL):
X-CanLII-Token: <your_canlii_api_key>URL parameter (simplest; works in header-less clients like the Claude Desktop connector UI and claude.ai web): append
?token=<your_canlii_api_key>to the URL:https://canlii-mcp.vaquill.ai/mcp?token=YOUR_CANLII_API_KEY
Apply for a key at canlii.org/en/api/. The server never stores your key, and there is no server-side fallback key, so every call counts against your own CanLII quota.
Claude Desktop / Claude Code
{
"mcpServers": {
"canlii": {
"url": "https://canlii-mcp.vaquill.ai/mcp",
"headers": {
"X-CanLII-Token": "YOUR_CANLII_API_KEY"
}
}
}
}Cursor / VS Code / Windsurf
Same pattern: any client supporting MCP streamable HTTP with custom headers works. For stdio-only clients use mcp-remote to proxy.
Related MCP server: courtlistener-mcp
Authentication
Mode | Header | When |
BYOK header (preferred) |
| Hosted / shared deployments |
BYOK URL param |
| Header-less clients: Claude Desktop connector UI, claude.ai web |
Server fallback | (env | Self-hosted single-tenant. Required for stdio. |
MCP gate |
| Optional, self-host only. The public hosted endpoint at |
Tools
Tool | Description |
| List all courts and tribunals in the CanLII collection |
| Browse decisions from a specific court/tribunal database |
| Get metadata for a specific case (title, citation, date, keywords) |
| Get cases cited by a case, cases citing it, or legislation it references |
| List all statute and regulation databases |
| Browse statutes or regulations from a specific database |
| Get metadata for a specific piece of legislation |
Requirements
Node.js 22+
A CanLII API key — apply here
Usage
stdio via npx (quickest)
{
"mcpServers": {
"canlii": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@tomilashy/canlii-mcp"],
"env": {
"CANLII_API": "your_api_key"
}
}
}
}stdio (from source)
npm install
npm run build
node dist/index.jsAdd to your MCP config:
{
"mcpServers": {
"canlii": {
"command": "node",
"args": ["/path/to/canlii-mcp/dist/index.js"],
"env": {
"CANLII_API": "your_api_key"
}
}
}
}HTTP server
PORT=3000 CANLII_API=your_api_key node dist/index.js --transport httpThe MCP endpoint is available at http://localhost:3000/mcp. The server runs in stateless mode — each request is self-contained, no session ID or initialize handshake required. Clients can call tools directly:
curl -X POST http://localhost:3000/mcp \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_case_databases","arguments":{"language":"en"}}}'Docker
docker run -e CANLII_API=your_api_key -e MCP_AUTH_TOKEN=your_secret -p 3000:3000 ghcr.io/tomilashy/canlii-mcpOr with Docker Compose:
services:
canlii-mcp:
image: ghcr.io/tomilashy/canlii-mcp
environment:
CANLII_API: your_api_key
MCP_AUTH_TOKEN: your_secret # optional
ports:
- "3000:3000"Cloudflare Workers
The server includes a Workers-compatible entry point (src/worker.ts).
CLI deploy
npx wrangler secret put CANLII_API
npx wrangler secret put MCP_AUTH_TOKEN # optional
npx wrangler deployDashboard deploy (Connect to Git)
Go to Cloudflare Dashboard → Workers & Pages → Create → Connect to Git
Select your
tomilashy/canlii-mcprepositoryOn the Set up your application page:
Project name:
canlii-mcpBuild command:
npm install && npm run buildDeploy command:
npx wrangler deploy(pre-filled)
Expand Advanced settings:
Variable name:
CANLII_APIVariable value: your CanLII API key
Check Encrypt to store it as a secret
Click Deploy
The MCP endpoint will be at https://canlii-mcp.<your-subdomain>.workers.dev/mcp.
Configuration
Environment Variable | Required | Default | Description |
| Yes | — | Your CanLII API key |
| No |
| HTTP server port (HTTP mode only) |
| No | — | Bearer token for HTTP authentication. If set, all HTTP requests must include |
Rate Limits
The server enforces CanLII's API limits automatically, per CanLII key, so one caller's usage never throttles another's:
1 request at a time
2 requests per second
5,000 requests per day
These mirror CanLII's own per-key limits. Each X-CanLII-Token gets its own independent budget (keyed by a hash of the key; raw keys are never retained). Requests that exceed the daily limit return an error rather than hitting the API.
Development
npm install
npm run build # compile TypeScript
npm run watch # watch modeRelease
This project uses Semantic Versioning via semantic-release. Commit messages follow the Conventional Commits spec:
Commit prefix | Release type |
| Patch ( |
| Minor ( |
| Major ( |
Pushing to main triggers the release workflow. If a release is cut, the Docker image is automatically built and published to ghcr.io.
License
MIT
Maintenance
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Vaquill-AI/canlii-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server