Raw tool arguments, validated against GetCommitteeInfoSchema
MCP tool result containing committee details or a list of current active corporate bodies
args fails schema validation (e.g., missing required fields or invalid format)// Lookup by abbreviation
const result = await handleGetCommitteeInfo({ abbreviation: 'ENVI' });
// Returns detailed info for the Environment Committee
// List all current active bodies
const all = await handleGetCommitteeInfo({ showCurrent: true });
// Returns all currently active EP corporate bodies
Handles the get_committee_info MCP tool request.
Retrieves European Parliament committee (corporate body) information including composition, chair, vice-chairs, members, meeting schedules, and policy areas. Supports lookup by committee ID, abbreviation, or listing all current active bodies.