kokkai-diet
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@kokkai-dietSearch Diet speeches from 2023 containing 半導体"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@pipeworx/kokkai-diet
Speech-level full-text search of Japanese National Diet (parliament) proceedings back to 1947 — both chambers, every recorded speech with speaker, party, session, date, and a permalink.
Part of Pipeworx — an MCP gateway connecting AI agents to 1573+ live data sources.
Tools
search_speeches(query?, speaker?, speaker_group?, house?, from?, until?, start_record?, max_records?)— full-text speech search by keyword and/or speaker, with optional party/house/date-range filters. Paginated (max 100/request).search_meetings(query?, meeting_name?, house?, from?, until?, start_record?, max_records?)— find meetings/sittings by name, chamber, or date range. Paginated (max 10/request — lower cap than speeches).get_speech(speech_id)— fetch one speech's full text and metadata by its speechID.
Related MCP server: kokkai-mcp
Auth
Keyless.
Data sources
https://kokkai.ndl.go.jp/api/speech — speech-level full-text search.
https://kokkai.ndl.go.jp/api/meeting — meeting-level search.
Both are JSON/XML endpoints of the National Diet Library's 国会会議録検索システム (Kokkai Kaigiroku Search System).
Traps for the next person
The API requires a real search anchor.
from/until/nameOfHousealone are accepted (200 OK) but silently return zero records — they're filters, not search conditions.search_speechesrequiresqueryand/orspeaker;search_meetingsrequiresquery,meeting_name, orhouse. A no-condition request 400s with(19007)検索条件を指定してください.Per-request record caps differ by endpoint, and out-of-range values 400 rather than clamp.
/api/speech:maximumRecords1–100 (default 30)./api/meeting:maximumRecords1–10 (default 3) — easy to miss since it's a third the speech cap. Both tools here clamp client-side to the valid range, but a caller reading raw upstream docs will hit(19005)/(19006)if they don't.Never let a capped page read as the complete result. Both tools return
next_start_record(from the API'snextRecordPosition) andis_complete_result(trueonly whennext_start_recordisnull).total(upstreamnumberOfRecords) is the true count — a caller must check it againstreturnedbefore assuming they've seen everything.Queries are Japanese-first. The full-text index is Japanese; partial-match works on Japanese substrings. English keywords (e.g. "semiconductors") will under-match or return zero even when substantial Japanese-language debate exists on the topic — use Japanese keywords (e.g. "半導体"). Tool descriptions say this explicitly so an empty result isn't misread as "no debate on this".
search_speechesreturns a speech preview (400 chars), not the full text — fetch the complete speech withget_speech(speech_id)using thespeech_idfrom the search hit. This keeps list responses from blowing up on speeches that run thousands of characters.400 error bodies from the upstream carry a useful Japanese message + details array (e.g.
(19005)maximumRecordsには1~100の値を指定してください) — this pack surfaces that text verbatim rather than a generic HTTP error, since it tells the caller exactly which parameter is wrong.
Quick Start
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"kokkai-diet": {
"url": "https://gateway.pipeworx.io/kokkai-diet/mcp"
}
}
}What this endpoint actually serves
tools/list at https://gateway.pipeworx.io/kokkai-diet/mcp returns the tools in the table
above plus the shared Pipeworx meta-tools — ask_pipeworx,
discover_tools, search_within, remember/recall and the rest of the
gateway-wide set. So the tool count you see is larger than this table: a
single-pack endpoint currently lists roughly 30 shared tools alongside the
pack's own. The connection's initialize response states its exact scope, and
is the authoritative answer for a given day.
This is deliberate, not multiplexing by accident. The meta-tools are what let a
scoped connection answer a question this pack does not cover — via
ask_pipeworx, which routes across the whole catalog — without you adding a
second MCP server. There is currently no way to mount a pack endpoint without
them; if the extra schemas cost you more context than the routing is worth,
connect to the full gateway once rather than to several pack endpoints.
Or connect to the full Pipeworx gateway to get every pack's tools listed directly, instead of just this one's:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}Both URLs reach the same gateway and the same 1573+ data sources. The
only difference is which pack's tools are listed directly; ask_pipeworx
reaches all of them from either one.
Standalone (no gateway account)
This package also runs as a local stdio MCP server — no Pipeworx account, no gateway round-trip:
{
"mcpServers": {
"kokkai-diet": {
"command": "npx",
"args": ["-y", "@pipeworx/mcp-kokkai-diet"]
}
}
}Or run it directly to confirm it starts:
npx -y @pipeworx/mcp-kokkai-dietIt speaks MCP over stdin/stdout and answers initialize/tools/list/tools/call
for only this pack's tools — none of the shared meta-tools the gateway
connection above adds. Same source, same tools, no ask_pipeworx routing.
Using with ask_pipeworx
Instead of calling tools directly, you can ask questions in plain English — this works on the pack endpoint above as well as on the full gateway:
ask_pipeworx({ question: "your question about Kokkai Diet data" })The gateway picks the right tool and fills the arguments automatically.
More
License
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
Semantic search across Japan's government white papers, in English or Japanese. Free beta.
Congressional Documents — full-text search and retrieval over the official
- GavelinOAuthai.gavelin
Search bills and speaker-attributed hearing transcripts across all 50 US state legislatures.
Search Japanese subsidies and public company data using J-Grants, gBizINFO, and EDINET.
Related MCP Servers
- FlicenseAqualityDmaintenanceProvides a structured interface to the Japanese National Diet Library's parliamentary proceedings API, allowing AI models to search and retrieve Diet meeting records and speeches.31-
- FlicenseAqualityBmaintenanceEnables search, retrieval, and summarization of Japanese National Diet meeting minutes via MCP tools.81-
- AlicenseAqualityCmaintenanceFull-text search across all ~10,000 current Japanese laws and regulations (official e-Gov data): keyword search, table of contents, and exact article text.3MIT
- AlicenseAqualityCmaintenanceSearch Japan's National Diet records (1947-present): ministerial statements, committee Q&A, and policy debates with speaker, party, and citation URLs.2MIT