Washington Law MCP Server

Washington Law MCP Server

Provides offline access to Washington State's Revised Code of Washington (RCW) and Washington Administrative Code (WAC) for AI agents. Enables fast retrieval, full-text search, and navigation of all Washington state laws through natural language queries.

Category
访问服务器

README

Washington Law MCP Server

An MCP (Model Context Protocol) server that provides offline access to Washington State's Revised Code of Washington (RCW) and Washington Administrative Code (WAC) for AI agents.

Features

  • Completely Offline: All law texts are stored locally in SQLite database
  • Fast Access: Instant retrieval of any RCW or WAC section
  • Full-Text Search: Search across all Washington laws using SQLite FTS5
  • Comprehensive Coverage: Access to all RCW titles, chapters, and sections
  • MCP Compatible: Works with any MCP-compatible AI client (Claude, etc.)

Architecture

The project consists of two main components:

  1. Data Collection Phase (one-time setup): Scrapers that download all RCW/WAC texts
  2. MCP Server (runtime): Serves law texts from local database with no external calls

Installation

# Clone the repository
git clone <repository-url>
cd law_rule_mcp

# Install dependencies
npm install

# Initialize the database
npm run init:db

# Scrape RCW data (this will take several hours)
npm run scrape:rcw

# Build the TypeScript code
npm run build

Usage

Running the MCP Server

npm start

Testing with MCP Inspector

npm test

Configuring with Claude Desktop

Add to your Claude Desktop configuration (~/Library/Application Support/Claude/claude_desktop_config.json):

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

Available MCP Tools

get_rcw

Retrieve the full text of a specific RCW section.

  • Parameters:
    • citation (string): RCW citation (e.g., "46.61.502")

get_wac

Retrieve the full text of a specific WAC section.

  • Parameters:
    • citation (string): WAC citation (e.g., "296-24-12005")

search_laws

Search Washington laws by keywords or phrases.

  • Parameters:
    • query (string): Search terms
    • limit (number, optional): Max results (default: 20)

list_rcw_titles

List all RCW titles with section counts.

list_rcw_chapters

List all chapters within a specific RCW title.

  • Parameters:
    • titleNum (string): Title number (e.g., "46")

list_rcw_sections

List all sections within a specific RCW chapter.

  • Parameters:
    • chapterNum (string): Chapter number (e.g., "46.61")

get_statistics

Get database statistics including section counts and last update time.

Project Structure

law_rule_mcp/
├── src/
│   ├── index.ts              # MCP server entry point
│   ├── database/
│   │   ├── init.ts          # Database initialization
│   │   └── database.ts      # Database access layer
│   ├── scraper/
│   │   └── rcw-scraper.ts   # RCW web scraper
│   └── types.ts             # TypeScript type definitions
├── data/
│   └── washington-laws.db   # SQLite database (created after scraping)
├── package.json
├── tsconfig.json
└── README.md

Database Schema

The SQLite database contains:

  • rcw table: Full text and metadata for all RCW sections
  • wac table: Full text and metadata for all WAC sections
  • rcw_fts / wac_fts: Full-text search indexes
  • metadata table: Database version and update timestamps
  • scraper_progress table: Tracks scraping progress

Updating the Database

To update the law database with the latest changes:

# Re-run the scraper to fetch updated laws
npm run scrape:rcw

The scraper will update existing sections and add new ones.

Development

# Watch mode for development
npm run dev

# Build TypeScript
npm run build

# Test with MCP inspector
npm test

Notes

  • Initial scraping takes several hours due to rate limiting (respectful crawling)
  • Database size is approximately 200-500 MB after compression
  • The server operates completely offline once data is scraped
  • All database queries are read-only during MCP server operation

License

MIT

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选