kokkai-meeting-mcp-server

moksahero/kokkai-meeting-mcp-server

3.2

If you are the rightful owner of kokkai-meeting-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

An MCP server for accessing Japanese Diet (Kokkai) meeting records through the National Diet Library API.

Tools
1
Resources
0
Prompts
0

Kokkai MCP Server

An MCP (Model Context Protocol) server for accessing Japanese Diet (Kokkai) meeting records through the National Diet Library API.

Features

  • Search Diet meeting records by keywords (like "科学技術")
  • Filter by house (衆議院, 参議院, 両院協議会)
  • Pagination support
  • Session and issue number filtering

Installation

npm install
npm run build

Usage

The server provides one tool: search_kokkai_meetings

Example Searches

  1. Search for "科学技術" (science and technology):
{
  "any": "科学技術",
  "maximumRecords": 10
}
  1. Search specific meeting types:
{
  "nameOfMeeting": "文部科学委員会",
  "nameOfHouse": "衆議院"
}
  1. Search with pagination:
{
  "any": "環境",
  "startRecord": 11,
  "maximumRecords": 20
}

Parameters

  • any: Search term for speech content
  • nameOfMeeting: Meeting name filter
  • maximumRecords: Max records (1-100, default: 30)
  • recordPacking: Format ('xml' or 'json', default: 'xml')
  • startRecord: Starting position for pagination
  • sessionFrom/sessionTo: Session number range
  • nameOfHouse: House filter (衆議院/参議院/両院協議会)
  • issueFrom/issueTo: Issue number range

Running

npm start

The server runs on stdio and can be integrated with MCP-compatible clients.