NosDéputés (FR)
liveLegislatureGovernmentEuropeCivic-tech mirror of the French Assemblée nationale — member activity, votes, debates, questions. Keyless.
6tools
0msauth
free tier50 calls/day
Tools
list_deputiesList sitting deputies.
Parameters
NameTypeDescription
activeoptboolean—groupoptstring—departementoptstring—legislatureoptstring—Try it
Response
get_deputyrequired: slug_or_idDeputy profile.
Parameters
NameTypeDescription
slug_or_idreqstring—legislatureoptstring—Try it
Response
search_interventionsrequired: queryDebate contributions.
Parameters
NameTypeDescription
queryreqstring—deputy_slugoptstring—date_fromoptstring—date_tooptstring—limitoptnumber—legislatureoptstring—Try it
Response
search_questionsWritten or oral questions.
Parameters
NameTypeDescription
queryoptstring—deputy_slugoptstring—typeoptstring—limitoptnumber—legislatureoptstring—Try it
Response
list_votesRecent recorded votes.
Parameters
NameTypeDescription
deputy_slugoptstring—limitoptnumber—legislatureoptstring—Try it
Response
list_groupsPolitical groups.
Parameters
NameTypeDescription
legislatureoptstring—Try it
Response
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");