Skip to main content
Glama
kyusik-yang

open-assembly-mcp

by kyusik-yang

get_member_votes

Retrieve individual voting records for members of the National Assembly on a specific bill. Filter by member name, party, or vote result.

Instructions

특정 법안에 대한 국회의원 개인별 본회의 표결 기록을 조회합니다.

Get individual member voting records for a specific bill (one row per member). This is STEP 2 of the per-member vote analysis workflow.

Typical workflow:

  1. get_vote_results(assembly=assembly, bill_name=...) → find BILL_ID

  2. get_member_votes(bill_id=BILL_ID, assembly=assembly) → all ~300 member votes

  3. Filter by party="더불어민주당" etc. to analyze party discipline

IMPORTANT — requires BILL_ID, not BILL_NO: • BILL_ID looks like "PRC_T2M6W0F2..." — get it from get_vote_results • BILL_NO is the 7-digit number — WRONG for this tool

Note on default page_size=300: Intentionally large to fetch all ~300 plenary members in a single call. If the API returns fewer than 300 results but has_more=False, all votes are retrieved.

Args: bill_id: 의안ID — 필수 (get_vote_results 결과의 BILL_ID 필드) assembly: 대수 — 필수 (예: "22") member_name: 의원명 필터 (선택, 예: "홍길동") — 특정 의원 표결만 조회할 때 사용 party: 정당명 필터 (선택, 예: "더불어민주당") — 정당 기율 분석에 사용 vote_result: 표결결과 필터 (선택) — "찬성" | "반대" | "기권" page: 페이지 번호 (기본값: 1) page_size: 페이지당 결과수 (기본값: 300 — 본회의 전체 의원 한 번에 조회)

Returns: votes: 의원별 표결 목록 — HG_NM(이름), POLY_NM(정당), ORIG_NM(선거구), RESULT_VOTE_MOD(표결결과: 찬성/반대/기권), VOTE_DATE, MONA_CD 등 count: 이번 페이지 반환 건수 total_count: 전체 표결 의원 수 has_more: True이면 page+1로 재호출

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNo
partyNo
bill_idYes
assemblyYes
page_sizeNo
member_nameNo
vote_resultNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description fully discloses behavior: default page_size=300 intended to fetch all ~300 members, pagination explanation (has_more), and response field names. It also clarifies that if has_more=False and count<300, all votes are retrieved.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-organized with sections, but it is somewhat lengthy. However, every sentence is purposeful and adds value. It is front-loaded with the core purpose and key workflow.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description is thorough given the tool's complexity (7 params, pagination, multiple filters) and the presence of an output schema (though not shown). It covers parameter usage, workflow integration, return fields, and pagination. Slightly verbose but complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Although the input schema has 0% coverage (no descriptions), the tool description provides detailed explanations for all 7 parameters, including examples, default values, valid values, and notes on field formats. This fully compensates for the missing schema descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool retrieves individual member voting records for a specific bill (one row per member). It distinguishes itself from sibling tools like get_vote_results and get_party_cohesion by specifying its role as step 2 in a per-member vote analysis workflow.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit when-to-use guidance via a 3-step workflow, warns about the common BILL_ID vs BILL_NO mistake, and explains when to use each filter (e.g., party for discipline analysis). This is comprehensive and leaves no ambiguity.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/kyusik-yang/open-assembly-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server