loading…
Search for a command to run...
loading…
Provides access to Japanese labor and social insurance laws and administrative circulars from sources like the e-Gov API and the Ministry of Health, Labour and
Provides access to Japanese labor and social insurance laws and administrative circulars from sources like the e-Gov API and the Ministry of Health, Labour and Welfare. It enables users to search for and retrieve legal texts and notices to ensure accuracy in labor-related inquiries.
日本の労働・社会保険法令と行政通達を取得する MCP サーバー。
Claude が労務の質問に回答する際、条文や通達のハルシネーションを防止するために、e-Gov法令API・厚労省法令等DB・安全衛生情報センターから原文を取得して裏取りさせます。
| ツール | 説明 |
|---|---|
get_law |
e-Gov法令APIから条文を取得。法令名 + 条番号で指定 |
search_law |
キーワードで法令を検索 |
search_mhlw_tsutatsu |
厚労省法令等DBから通達をキーワード検索 |
get_mhlw_tsutatsu |
厚労省通達の本文を取得。data_idで指定 |
search_jaish_tsutatsu |
JAISH安全衛生情報センターから安衛通達を検索 |
get_jaish_tsutatsu |
JAISH安衛通達の本文を取得。URLで指定 |
労働基準法、労働基準法施行令、労働基準法施行規則、労働契約法、最低賃金法、賃金支払確保法
労働安全衛生法、労働安全衛生法施行令、労働安全衛生規則、じん肺法
労災保険法、雇用保険法、雇用保険法施行令、雇用保険法施行規則、労働保険徴収法
職業安定法、労働者派遣法、高年齢者雇用安定法、障害者雇用促進法、職業能力開発促進法、中小企業退職金共済法
男女雇用機会均等法、育児介護休業法、パートタイム・有期雇用労働法、次世代育成支援対策推進法、女性活躍推進法
労働組合法、労働関係調整法、個別労働紛争解決促進法、労働施策総合推進法(パワハラ防止法)
健康保険法、厚生年金保険法、国民年金法、国民健康保険法、介護保険法、社会保険労務士法 等
| 略称 | 正式名称 |
|---|---|
| 労基法 | 労働基準法 |
| 安衛法 | 労働安全衛生法 |
| 派遣法 | 労働者派遣法 |
| 雇保法 | 雇用保険法 |
| 労災法 | 労災保険法 |
| 健保法 | 健康保険法 |
| 厚年法 | 厚生年金保険法 |
| 国年法 | 国民年金法 |
| 育介法 | 育児介護休業法 |
| 均等法 | 男女雇用機会均等法 |
| パート法 | パートタイム・有期雇用労働法 |
| パワハラ防止法 | 労働施策総合推進法 |
インストール不要。以下の設定をコピペするだけ:
{
"mcpServers": {
"labor-law": {
"command": "npx",
"args": ["-y", "labor-law-mcp"]
}
}
}
Claude Desktop: ~/Library/Application Support/Claude/claude_desktop_config.json に追加
Claude Code: claude mcp add labor-law -- npx -y labor-law-mcp
git clone https://github.com/kentaroajisaka/labor-law-mcp.git
cd labor-law-mcp
npm install
npm run build
{
"mcpServers": {
"labor-law": {
"command": "node",
"args": ["/path/to/labor-law-mcp/dist/index.js"]
}
}
}
「労働基準法第32条を取得して」
→ get_law(law_name="労働基準法", article="32")
「安衛法の第59条を見せて」
→ get_law(law_name="安衛法", article="59")
「36協定に関する通達を検索して」
→ search_mhlw_tsutatsu(keyword="36協定")
「data_id: 00tb2035 の通達を読みたい」
→ get_mhlw_tsutatsu(data_id="00tb2035")
「足場に関する安衛通達を検索して」
→ search_jaish_tsutatsu(keyword="足場")
get_law / search_mhlw_tsutatsu / search_jaish_tsutatsu で取得厚労省通達の利用は厚生労働省ホームページの利用規約に基づきます。
MIT
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"labor-law-mcp": {
"command": "npx",
"args": []
}
}
}PRs, issues, code search, CI status
Database, auth and storage
Reference / test server with prompts, resources, and tools.
Secure file operations with configurable access controls.