
Connects to the Swedish Parliament's open data APIs through the Pipeworx gateway. The source documentation doesn't list specific tools, but given the context, you'd expect to query legislative documents, parliamentary proceedings, member information, and voting records. Useful when building applications that need real-time access to Riksdagen data without handling the API directly. Part of Pipeworx's larger collection of 250+ data sources, so you can add just this endpoint or connect to their full gateway. Supports plain English queries through ask_pipeworx rather than calling individual tools, which handles argument mapping for you. Available over streamable HTTP, making it compatible with most MCP clients.
Riksdagen (Swedish Parliament) open data MCP.
Part of Pipeworx — an MCP gateway connecting AI agents to 1476+ live data sources.
| Tool | Description |
|---|---|
search_documents | Search Riksdagen documents (motions, propositions, committee reports, written questions). Filter by free-text query, document type, and date range. Results nest under dokumentlista.dokument[]. |
list_members | List current members of the Riksdag (ledamöter), optionally filtered by party and/or constituency. Results nest under personlista.person[] with Swedish fields (parti, valkrets, efternamn, tilltalsnamn). |
list_votes | List individual member votes (voteringar) for a parliamentary session and committee-report designation. Results nest under voteringlista.votering[]; each row has namn, parti, valkrets and rost (Ja/Nej/Avstår/Frånvarande). |
get_document | Fetch a single document's full metadata by its id (e.g. "HD024189" or "hd024189"). Result nests under dokumentstatus.dokument. |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"riksdagen-se": {
"url": "https://gateway.pipeworx.io/riksdagen-se/mcp"
}
}
}
tools/list at https://gateway.pipeworx.io/riksdagen-se/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 1476+ data sources. The
only difference is which pack's tools are listed directly; ask_pipeworx
reaches all of them from either one.
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 Riksdagen Se data" })
The gateway picks the right tool and fills the arguments automatically.
MIT