The Legislative Frontier

LIVE MONITORING

Developer Docs

Bill-ieve for Developers

MCP 서버와 REST API로 3개국 입법 데이터에 접근하세요

🔌

MCP Server

Claude MCP Protocol

설치 명령어 (Claude Desktop)

claude mcp add bill-ieve -- uvx bill-ievecopy

사용 가능한 도구 (11개)

Tool
Description
search-bills
법안 검색 (키워드, 상태, 카테고리, 국가)
get-bill-detail
법안 상세 정보 조회
get-bill-categories
법안 카테고리 목록
get-countries
지원 국가 목록 (KR/US/EU)
search-members
국회의원 검색
get-member-detail
의원 상세 정보
search-minutes
회의록 검색
get-minute-speeches
회의록 발언 조회
search-petitions
청원 검색
get-petition-detail
청원 상세
get-system-stats
시스템 통계
📡

REST API

Base URL

https://dev-api.bill-ieve.com

엔드포인트

Method
Endpoint
Description
GET
/api/bills
법안 목록 (query, status, category, country, limit, offset)
GET
/api/bills/:id
법안 상세
GET
/api/bills/headlines
헤드라인
GET
/api/bills/popular
인기 법안
GET
/api/members
의원 목록
GET
/api/members/:id
의원 상세
GET
/api/minutes
회의록 목록
GET
/api/minutes/:id
회의록 상세
GET
/api/petitions
청원 목록
GET
/api/stats/summary
통계 요약

요청/응답 예시

// GET /api/bills?country=KR&limit=2
{
  "success": true,
  "data": {
    "bills": [
      {
        "id": "PRC_...",
        "title": "...",
        "headline_ai": "AI가 분석한 헤드라인",
        "summary_ai": "AI 요약...",
        "status": "PROPOSED",
        "proposer": "홍길동의원 등 10인"
      }
    ],
    "total": 16289,
    "has_more": true
  }
}
📊

Data Coverage

3개국 · 16,617건
🇰🇷
한국
전체 상태
16,289건
업데이트: 매일 자동 수집
🇺🇸
미국
PASSED only
80건
업데이트: 주 1회
🇪🇺
EU
PASSED only
248건
업데이트: 주 1회

총 16,617건을 제공합니다. 한국 법안은 매일 자동 수집되며, 미국 · EU 데이터는 주 1회 업데이트됩니다. 미국/EU는 현재 PASSED 상태 법안만 수집 중입니다 — 전체 상태 확장은 v2.1 예정.

문의: GitHub Issues 또는 PyPI 페이지를 통해 피드백을 보내주세요.