Skip to main content
ClaudeWave

Kokkai Diet MCP — Japan National Diet proceedings, speech-level full-text

MCP ServersOfficial Registry0 stars0 forksTypeScriptMITUpdated today
ClaudeWave Trust Score
95/100
Verified
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
  • Documented (README)
Last scanned: 9/15/2026
Install in Claude Code / Claude Desktop
Method: NPX · @pipeworx/mcp-kokkai-diet
Claude Code CLI
claude mcp add mcp-kokkai-diet -- npx -y @pipeworx/mcp-kokkai-diet
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "mcp-kokkai-diet": {
      "command": "npx",
      "args": ["-y", "@pipeworx/mcp-kokkai-diet"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Use cases

MCP Servers overview

# @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](https://pipeworx.io) — 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.

## 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`/`nameOfHouse` alone are accepted (200 OK) but silently return zero records — they're filters, not search conditions. `search_speeches` requires `query` and/or `speaker`; `search_meetings` requires `query`, `meeting_name`, or `house`. 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`: `maximumRecords` 1–100 (default 30). `/api/meeting`: `maximumRecords` 1–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's `nextRecordPosition`) and `is_complete_result` (`true` only when `next_start_record` is `null`). `total` (upstream `numberOfRecords`) is the true count — a caller must check it against `returned` before 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_speeches` returns a speech preview (400 chars), not the full text** — fetch the complete speech with `get_speech(speech_id)` using the `speech_id` from 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.):

```json
{
  "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:

```json
{
  "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:

```json
{
  "mcpServers": {
    "kokkai-diet": {
      "command": "npx",
      "args": ["-y", "@pipeworx/mcp-kokkai-diet"]
    }
  }
}
```

Or run it directly to confirm it starts:

```bash
npx -y @pipeworx/mcp-kokkai-diet
```

It 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

- [Docs and guides](https://pipeworx.io/docs)
- [pipeworx.io](https://pipeworx.io)

## License

MIT
kokkai-dietmcpmcp-servermodel-context-protocolpipeworx

What people ask about mcp-kokkai-diet

What is pipeworx-io/mcp-kokkai-diet?

+

pipeworx-io/mcp-kokkai-diet is mcp servers for the Claude AI ecosystem. Kokkai Diet MCP — Japan National Diet proceedings, speech-level full-text It has 0 GitHub stars and its last recorded update is dated 2026-09-14.

How do I install mcp-kokkai-diet?

+

You can install mcp-kokkai-diet by cloning the repository (https://github.com/pipeworx-io/mcp-kokkai-diet) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is pipeworx-io/mcp-kokkai-diet safe to use?

+

Our security agent has analyzed pipeworx-io/mcp-kokkai-diet and assigned a Trust Score of 95/100 (tier: Verified). See the full breakdown of passed checks and flags on this page.

Who maintains pipeworx-io/mcp-kokkai-diet?

+

pipeworx-io/mcp-kokkai-diet is maintained by pipeworx-io. The last recorded GitHub activity is dated 2026-09-14, with 0 open issues.

Are there alternatives to mcp-kokkai-diet?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy mcp-kokkai-diet to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: pipeworx-io/mcp-kokkai-diet
[![Featured on ClaudeWave](https://claudewave.com/api/badge/pipeworx-io-mcp-kokkai-diet)](https://claudewave.com/repo/pipeworx-io-mcp-kokkai-diet)
<a href="https://claudewave.com/repo/pipeworx-io-mcp-kokkai-diet"><img src="https://claudewave.com/api/badge/pipeworx-io-mcp-kokkai-diet" alt="Featured on ClaudeWave: pipeworx-io/mcp-kokkai-diet" width="320" height="64" /></a>

More MCP Servers

mcp-kokkai-diet alternatives