Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"hourei": {
"args": [
"-y",
"hourei-mcp-server"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'hourei-mcp-server' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked hourei-mcp-server against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in legal
87 tools for Korean law — statutes, precedents, ordinances, interpretations | MCP Server · CLI · npm
Proof primitive for AI agents on MultiversX. Anchor file hashes on-chain as verifiable proofs.
956k Swiss court decisions: full-text search, citation graph, statute lookup (DE/FR/IT)
AFIP — Argentine tax authority, electronic invoicing (Factura Electrónica)
MCP Security Weekly
Get CVE alerts and security updates for Hourei Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
e-Gov法令APIを使用して日本の法令情報を検索・取得するMCPサーバーです。
このMCPサーバーは以下のツールを提供します:
法令名や法令番号で法令を検索します。
パラメータ:
keyword (必須): 検索キーワード(法令名の一部や法令番号)category (オプション): 法令の種別
1: 法律2: 政令3: 省令4: 規則5: その他limit (オプション): 取得する最大件数(デフォルト: 100)法令番号を指定して法令の詳細データを取得します。
パラメータ:
lawNum (必須): 法令番号(例: 平成十七年法律第百十七号)法令の改正履歴を取得します。
パラメータ:
lawNum (必須): 法令番号npx hourei-mcp-server
git clone <repository-url>
cd hourei-mcp-server
npm install
Claude Desktopなどのクライアントの設定ファイル(~/Library/Application Support/Claude/claude_desktop_config.json)に以下を追加:
{
"mcpServers": {
"hourei": {
"command": "npx",
"args": ["-y", "hourei-mcp-server"]
}
}
}
設定後、Claude Desktopを再起動してください。
Cursorの設定ファイル(.cursor/mcp_config.json または設定画面)に以下を追加:
{
"mcpServers": {
"hourei": {
"command": "npx",
"args": ["-y", "hourei-mcp-server"]
}
}
}
ChatGPTでは、MCPサーバーのURLを指定する形式で設定します。
{
"mcpServers": {
"hourei": {
"command": "npx",
"args": ["-y", "hourei-mcp-server"]
}
}
}
SSE対応サーバーを別途立ち上げた場合:
{
"mcpServers": {
"hourei": {
"url": "http://localhost:3000/sse"
}
}
}
または、リモートサーバーにデプロイした場合:
{
"mcpServers": {
"hourei": {
"url": "https://your-server.com/sse"
}
}
}
注意: 現在のバージョン(v1.0.5)はstdio接続のみ対応しています。URL形式で使用する場合は、別途SSE対応のラッパーサーバーが必要です。
Manusの設定ファイルに以下を追加:
{
"mcpServers": {
"hourei": {
"command": "npx",
"args": ["-y", "hourei-mcp-server"]
}
}
}
DifyのエージェントでMCPツールを使用する場合:
環境変数またはDifyの設定で以下を指定:
{
"mcpServers": {
"hourei": {
"command": "npx",
"args": ["-y", "hourei-mcp-server"]
}
}
}
Difyのワークフロー内で「ツール」ブロックを追加し、以下のMCPツールを選択:
search_law - 法令検索get_law_data - 法令詳細取得get_law_revision - 改正履歴取得入力ブロック → LLMブロック → ツールブロック(search_law) → 出力ブロック
ツールブロックのパラメータ設定例:
{
"keyword": "{{user_input}}",
"category": "1",
"limit": 100
}
{
"mcpServers": {
"hourei": {
"command": "node",
"args": ["/path/to/hourei-mcp-server/index.js"]
}
}
}
このMCPサーバーでできることの具体例です。
個人情報保護関連の法律を検索:
{
"keyword": "個人情報保護",
"category": "1" // 法律のみ
}
労働基準法を検索:
{
"keyword": "労働基準法"
}
消費税に関する政令を検索:
{
"keyword": "消費税",
"category": "2", // 政令
"limit": 50
}
個人情報保護法の全文を取得:
{
"lawNum": "平成十五年法律第五十七号"
}
民法の全文を取得:
{
"lawNum": "明治二十九年法律第八十九号"
}
刑法の全文を取得:
{
"lawNum": "明治四十年法律第四十五号"
}
個人情報保護法の改正履歴:
{
"lawNum": "平成十五年法律第五十七号"
}
✅ 法令の検索
✅ 法令データの取得
✅ 改正履歴の確認
✅ 活用例