NosDéputés (FR)

liveLegislatureGovernmentEurope

Civic-tech mirror of the French Assemblée nationale — member activity, votes, debates, questions. Keyless.

6tools
0msauth
free tier50 calls/day

Tools

list_deputies

List sitting deputies.

Parameters
NameTypeDescription
activeoptboolean
groupoptstring
departementoptstring
legislatureoptstring
Try it
get_deputyrequired: slug_or_id

Deputy profile.

Parameters
NameTypeDescription
slug_or_idreqstring
legislatureoptstring
Try it
search_interventionsrequired: query

Debate contributions.

Parameters
NameTypeDescription
queryreqstring
deputy_slugoptstring
date_fromoptstring
date_tooptstring
limitoptnumber
legislatureoptstring
Try it
search_questions

Written or oral questions.

Parameters
NameTypeDescription
queryoptstring
deputy_slugoptstring
typeoptstring
limitoptnumber
legislatureoptstring
Try it
list_votes

Recent recorded votes.

Parameters
NameTypeDescription
deputy_slugoptstring
limitoptnumber
legislatureoptstring
Try it
list_groups

Political groups.

Parameters
NameTypeDescription
legislatureoptstring
Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/nosdeputes-fr/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/nosdeputes-fr/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"list_deputies","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("list_deputies", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("civic-tech mirror of the french assemblée nationale — member activity, votes, debates, questions");