MCP Hub
Back to servers

swedish-law-mcp

Query 717 Swedish statutes, EU cross-references, case law, and preparatory works

Registry
Updated
Feb 13, 2026

Quick Install

npx -y @ansvar/swedish-law-mcp

Swedish Law MCP Server

The Riksdagen alternative for the AI age.

npm version MCP Registry License GitHub stars CI Daily Data Check Database Provisions

Query 717 Swedish statutes -- from Dataskyddslagen and Brottsbalken to Aktiebolagslagen, Miljöbalken, and more -- directly from Claude, Cursor, or any MCP-compatible client.

If you're building legal tech, compliance tools, or doing Swedish legal research, this is your verified reference database.

Built by Ansvar Systems -- Stockholm, Sweden


Why This Exists

Swedish legal research is scattered across Riksdagen, SFS publications, lagen.nu, and EUR-Lex. Whether you're:

  • A lawyer validating citations in a brief or contract
  • A compliance officer checking if a statute is still in force
  • A legal tech developer building tools on Swedish law
  • A researcher tracing legislative history from proposition to statute

...you shouldn't need 47 browser tabs and manual PDF cross-referencing. Ask Claude. Get the exact provision. With context.

This MCP server makes Swedish law searchable, cross-referenceable, and AI-readable.


Quick Start

Installation

Option 1: Claude Desktop (Recommended)

Add to your claude_desktop_config.json:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "swedish-law": {
      "command": "npx",
      "args": ["-y", "@ansvar/swedish-law-mcp"]
    }
  }
}

Restart Claude Desktop. Done!

Option 2: Cursor / VS Code

{
  "mcp.servers": {
    "swedish-law": {
      "command": "npx",
      "args": ["-y", "@ansvar/swedish-law-mcp"]
    }
  }
}

Option 3: Local Development Setup (Full Data)

For access to the complete production database:

git clone https://github.com/Ansvar-Systems/swedish-law-mcp
cd swedish-law-mcp
npm install
npm run build

Then in Claude Desktop config:

{
  "mcpServers": {
    "swedish-law": {
      "command": "node",
      "args": ["/absolute/path/to/swedish-law-mcp/dist/index.js"]
    }
  }
}

Example Queries

Once connected, just ask naturally:

  • "What does Dataskyddslagen 3 kap. 5 § say about consent?"
  • "Is PUL (1998:204) still in force?"
  • "Find provisions about personuppgifter in Swedish law"
  • "What EU directives does DSL implement?"
  • "Which Swedish laws implement the GDPR?"
  • "Get the preparatory works for Dataskyddslagen"
  • "Compare incident reporting requirements across NIS2 Swedish implementations"
  • "Validate the citation NJA 2020 s. 45"
  • "Find Labour Court cases about discrimination from 2020-2023"

What's Included

CategoryCountDetails
Statutes717 lawsComprehensive Swedish legislation
Provisions31,198 sectionsFull-text searchable with FTS5
Preparatory Works3,625 documentsPropositions (Prop.) and SOUs
EU Cross-References668 references228 EU directives and regulations
Legal Definitions615 termsExtracted from statute text
Database Size~70 MBOptimized SQLite, portable
Daily UpdatesAutomatedFreshness checks against Riksdagen

Verified data only -- every citation is validated against official sources (Riksdagen, lagen.nu, EUR-Lex). Zero LLM-generated content.


See It In Action

Why This Works

Verbatim Source Text (No LLM Processing):

  • All statute text is ingested from Riksdagen/SFS official sources
  • Provisions are returned unchanged from SQLite FTS5 database rows
  • Zero LLM summarization or paraphrasing -- the database contains regulation text, not AI interpretations

Smart Context Management:

  • Search returns ranked provisions with BM25 scoring (safe for context)
  • Provision retrieval gives exact text by SFS number + chapter/section
  • Cross-references help navigate without loading everything at once

Technical Architecture:

Riksdagen API → Parse → SQLite → FTS5 snippet() → MCP response
                  ↑                      ↑
           Provision parser       Verbatim database query

Traditional Research vs. This MCP

Traditional ApproachThis MCP Server
Search Riksdagen by SFS numberSearch by plain Swedish: "personuppgifter samtycke"
Navigate multi-chapter statutes manuallyGet the exact provision with context
Manual cross-referencing between lawsbuild_legal_stance aggregates across sources
"Is this statute still in force?" → check manuallycheck_currency tool → answer in seconds
Find EU basis → dig through EUR-Lexget_eu_basis → linked EU directives instantly
Check 5+ sites for updatesDaily automated freshness checks
No API, no integrationMCP protocol → AI-native

Traditional: Search Riksdagen → Download SFS PDF → Ctrl+F → Cross-reference with proposition → Check EUR-Lex for EU basis → Repeat

This MCP: "What EU law is the basis for DSL 3 kap. 5 § about consent?" → Done.


Available Tools (13)

Core Legal Research Tools (8)

ToolDescription
search_legislationFTS5 search on 31,198 provisions with BM25 ranking
get_provisionRetrieve specific provision by SFS + chapter/section
search_case_lawFTS5 search on case law with court/date filters
get_preparatory_worksGet linked propositions and SOUs for a statute
validate_citationValidate citation against database (zero-hallucination check)
build_legal_stanceAggregate citations from statutes, case law, prep works
format_citationFormat citations per Swedish conventions (full/short/pinpoint)
check_currencyCheck if statute is in force, amended, or repealed

EU Law Integration Tools (5)

ToolDescription
get_eu_basisGet EU directives/regulations for Swedish statute
get_swedish_implementationsFind Swedish laws implementing EU act
search_eu_implementationsSearch EU documents with Swedish implementation counts
get_provision_eu_basisGet EU law references for specific provision
validate_eu_complianceCheck implementation status (future, requires EU MCP)

EU Law Integration

668 cross-references linking 49 Swedish statutes to EU law, with bi-directional lookup.

MetricValue
EU References668 cross-references
EU Documents228 unique directives and regulations
Swedish Statutes with EU Refs49 (68% of database)
Directives89
Regulations139
EUR-Lex IntegrationAutomated metadata fetching

Most Referenced EU Acts

  1. eIDAS Regulation (910/2014) - 20 references
  2. E-Signatures Directive (1999/93) - 15 references
  3. GDPR (2016/679) - 15 references
  4. Data Protection Directive (1995/46) - 14 references
  5. Market Surveillance Regulation (2019/1020) - 14 references

See EU_INTEGRATION_GUIDE.md for detailed documentation and EU_USAGE_EXAMPLES.md for practical examples.


Data Sources & Freshness

All content is sourced from authoritative Swedish legal databases:

Automated Freshness Checks (Daily)

A daily GitHub Actions workflow monitors all data sources:

SourceCheckMethod
Statute amendmentsRiksdagen API date comparisonAll 717 statutes checked
New statutesRiksdagen SFS publications (90-day window)Diffed against database
Case lawlagen.nu feed entry countCompared to database
Preparatory worksRiksdagen proposition API (30-day window)New props detected
EU reference stalenessGit commit timestampsFlagged if >90 days old

The workflow supports auto_update: true dispatch for automated sync, rebuild, version bump, and npm publishing.


Security

This project uses multiple layers of automated security scanning:

ScannerWhat It DoesSchedule
CodeQLStatic analysis for security vulnerabilitiesWeekly + PRs
SemgrepSAST scanning (OWASP top 10, secrets, TypeScript)Every push
GitleaksSecret detection across git historyEvery push
TrivyCVE scanning on filesystem and npm dependenciesDaily
Docker SecurityContainer image scanning + SBOM generationDaily
Socket.devSupply chain attack detectionPRs
OSSF ScorecardOpenSSF best practices scoringWeekly
DependabotAutomated dependency updatesWeekly

See SECURITY.md for the full policy and vulnerability reporting.


Important Disclaimers

Legal Advice

THIS TOOL IS NOT LEGAL ADVICE

Statute text is sourced from official Riksdagen/SFS publications. However:

  • This is a research tool, not a substitute for professional legal counsel
  • Court case coverage is limited -- do not rely solely on this for case law research
  • Verify critical citations against primary sources for court filings
  • EU cross-references are extracted from Swedish statute text, not EUR-Lex full text

Before using professionally, read: DISCLAIMER.md | PRIVACY.md

Client Confidentiality

Queries go through the Claude API. For privileged or confidential matters, use on-premise deployment. See PRIVACY.md for Advokatsamfundet compliance guidance.


Documentation


Development

Setup

git clone https://github.com/Ansvar-Systems/swedish-law-mcp
cd swedish-law-mcp
npm install
npm run build
npm test

Running Locally

npm run dev                                       # Start MCP server
npx @anthropic/mcp-inspector node dist/index.js   # Test with MCP Inspector

Data Management

npm run ingest -- <sfs-number> <output.json>   # Ingest statute from Riksdagen
npm run ingest:cases:full-archive              # Ingest case law (full archive)
npm run sync:cases                             # Ingest case law (incremental)
npm run sync:prep-works                        # Sync preparatory works
npm run extract:definitions                    # Extract legal definitions
npm run build:db                               # Rebuild SQLite database
npm run check-updates                          # Check for amendments

Performance

  • Search Speed: <100ms for most FTS5 queries
  • Database Size: ~70 MB (efficient, portable)
  • Reliability: 100% ingestion success rate

Related Projects: Complete Compliance Suite

This server is part of Ansvar's Compliance Suite -- MCP servers that work together for end-to-end compliance coverage:

@ansvar/eu-regulations-mcp

Query 49 EU regulations directly from Claude -- GDPR, AI Act, DORA, NIS2, MiFID II, eIDAS, and more. Full regulatory text with article-level search. npx @ansvar/eu-regulations-mcp

@ansvar/swedish-law-mcp (This Project)

Query 717 Swedish statutes directly from Claude -- DSL, BrB, ABL, MB, and more. Full provision text with EU cross-references. npx @ansvar/swedish-law-mcp

@ansvar/us-regulations-mcp

Query US federal and state compliance laws -- HIPAA, CCPA, SOX, GLBA, FERPA, and more. npm install @ansvar/us-regulations-mcp

@ansvar/ot-security-mcp

Query IEC 62443, NIST 800-82/53, and MITRE ATT&CK for ICS -- Specialized for OT/ICS environments. npx @ansvar/ot-security-mcp

@ansvar/automotive-cybersecurity-mcp

Query UNECE R155/R156 and ISO 21434 -- Automotive cybersecurity compliance. npx @ansvar/automotive-cybersecurity-mcp

@ansvar/sanctions-mcp

Offline-capable sanctions screening -- OFAC, EU, UN sanctions lists. pip install ansvar-sanctions-mcp


Contributing

Contributions welcome! See CONTRIBUTING.md for guidelines.

Priority areas:

  • Court case law expansion (currently limited coverage)
  • EU Regulations MCP integration (full EU law text, CJEU case law)
  • Historical statute versions and amendment tracking
  • Lower court decisions (Tingsrätt, Hovrätt)

Roadmap

  • Statute expansion -- 785% growth from 81 to 717 statutes (v1.1.0)
  • EU law integration -- 668 cross-references to 228 EU directives/regulations (v1.1.0)
  • Court case law expansion (comprehensive archive)
  • Full EU text integration (via @ansvar/eu-regulations-mcp)
  • Lower court coverage (Tingsrätt, Hovrätt archives)
  • Historical statute versions (amendment tracking)
  • English translations for key statutes
  • Web API for programmatic access

Citation

If you use this MCP server in academic research:

@software{swedish_law_mcp_2025,
  author = {Ansvar Systems AB},
  title = {Swedish Law MCP Server: Production-Grade Legal Research Tool},
  year = {2025},
  url = {https://github.com/Ansvar-Systems/swedish-law-mcp},
  note = {Comprehensive Swedish legal database with 717 statutes and EU law cross-references}
}

License

Apache License 2.0. See LICENSE for details.

Data Licenses

  • Statutes & Propositions: Swedish Government (public domain)
  • Case Law: CC-BY Domstolsverket (via lagen.nu)
  • EU Metadata: EUR-Lex (EU public domain)

About Ansvar Systems

We build AI-accelerated compliance and legal research tools for the European market. This MCP server started as our internal reference tool for Swedish law -- turns out everyone building for the Swedish market has the same research frustrations.

So we're open-sourcing it. Navigating 717 statutes shouldn't require a law degree.

ansvar.eu -- Stockholm, Sweden


Built with care in Stockholm, Sweden

Reviews

No reviews yet

Sign in to write a review