lawyer-mcp
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., "@lawyer-mcplist laws for Japan"
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.
lawyer-mcp
MCP (Model Context Protocol) server for Legalize.dev: AI tools to query and understand legal frameworks across countries.
Goal: help an AI quickly answer questions about a country’s legal framework by querying Legalize.dev’s structured legislation API.
Status
Work in progress.
Related MCP server: Vaquill-AI/vaquill-mcp
Data source
API docs (Swagger): https://legalize.dev/api/docs
OpenAPI spec: https://legalize.dev/openapi.json
Auth
Legalize.dev uses a bearer token in the Authorization header (see components.securitySchemes.ApiKeyAuth in the OpenAPI spec).
This server expects:
LEGALIZE_API_KEYenv var (either the rawleg_...token or the fullBearer leg_...value)
TLS / certificates (Codex on Windows)
If you hit errors like certificate verify failed: certificate signature failure, your Python/Codex environment may be missing the right CA bundle.
Options:
Prefer installing/updating CA certificates in your environment (recommended).
Set
LEGALIZE_SSL_CERT_FILE=/path/to/ca-bundle.pemto point to a CA bundle.If
certifiis installed, lawyer-mcp will automatically use it.As a last resort (NOT recommended):
LEGALIZE_SSL_INSECURE=1disables certificate verification.
Tools (MCP)
Tools are derived from https://legalize.dev/openapi.json.
Toolset selection
By default we expose a full read-only toolset. If you want the smallest useful surface area (to reduce model confusion), set:
LEGALIZE_TOOLSET=minimal
Minimal toolset includes:
legalize_openapi_summary— public summary of the OpenAPI spec (no API key)legalize_countries— list supported countrieslegalize_jurisdictions— list jurisdictions within a countrylegalize_laws— search/list laws within a country (single page)legalize_laws_all— same, but auto-paginates (best-effort flattening)legalize_law_meta— lightweight law metadatalegalize_law_get— full law payloadlegalize_reforms— list reforms/diffs for a law
Full toolset additionally includes:
legalize_commits— list git commits for a lawlegalize_law_at_commit— fetch law content at a commit SHAlegalize_rangos— list legal hierarchy/ranks (rangos)legalize_stats— summary statistics per country (optional jurisdiction)legalize_account— current API key account/usage/limits (does not count against quota)
Dangerous tool (opt-in)
legalize_rotate_key— rotate API key (invalidates current key). Disabled by default; enable withLEGALIZE_ENABLE_DANGEROUS_TOOLS=1.
Install
For now this is a single-file Python module (no external dependencies).
Option A: run from source (recommended)
git clone https://github.com/pugafran/lawyer-mcp.git
cd lawyer-mcp
# required
export LEGALIZE_API_KEY="leg_..." # or "Bearer leg_..."
python3 -m lawyer_mcpOption B: pipx / pip (if you have pip available)
pipx install git+https://github.com/pugafran/lawyer-mcp.git
# or: python -m pip install git+https://github.com/pugafran/lawyer-mcp.git
export LEGALIZE_API_KEY="leg_..."
lawyer-mcpConfigure in Claude Desktop (MCP)
Install the server (see Install above).
Open Claude Desktop → Settings → Developer → Edit MCP config.
Add a server entry like this:
{
"mcpServers": {
"lawyer": {
"command": "python3",
"args": ["-m", "lawyer_mcp"],
"env": {
"LEGALIZE_API_KEY": "leg_...",
"LEGALIZE_TOOLSET": "minimal"
}
}
}
}Restart Claude Desktop. You should then see the legalize_* tools available.
Configure in OpenAI Codex / IDEs
Codex support depends on the client you are using (Codex CLI vs an IDE with MCP support).
If your Codex/IDE supports MCP servers via a JSON config, use the same command/env as above:
command:
python3args:
-m lawyer_mcpenv:
LEGALIZE_API_KEY=...
If you tell me which “Codex” you mean (Codex CLI, VS Code extension, Cursor, etc.), I’ll add an exact, copy/paste config snippet for that client.
Run
# required
export LEGALIZE_API_KEY="leg_..." # or "Bearer leg_..."
# optional (useful for tests/self-hosted mirrors)
# export LEGALIZE_BASE_URL="https://legalize.dev"
# export LEGALIZE_HTTP_RETRIES=2
# export LEGALIZE_HTTP_TIMEOUT=30
# optional (DANGEROUS): exposes `legalize_rotate_key`
# export LEGALIZE_ENABLE_DANGEROUS_TOOLS=1
python3 -m lawyer_mcpThis server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
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/pugafran/lawyer-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server