European Parliament MCP Server API - v1.0.1
    Preparing search index...

    European Parliament Speech or speech-related activity.

    Represents plenary speeches, debate contributions, written statements, and proceeding activities. Sourced from EP API /speeches endpoint.

    Intelligence Perspective: Speech data enables content analysis of MEP positions, policy priorities, and rhetorical patterns—critical for influence assessment and narrative tracking across plenary debates.

    Business Perspective: Speech transcripts power NLP-based products, sentiment analysis dashboards, and topic monitoring services for corporate affairs teams.

    Marketing Perspective: Speech content creates high-engagement assets for political monitoring platforms—debate highlights, speaker leaderboards, and topic trend visualizations that drive user acquisition and retention.

    Data Source: EP API /speeches endpoint

    ISMS Policy: SC-002 (Secure Coding Standards), AU-002 (Audit Logging)

    Speech

    interface Speech {
        date: string;
        id: string;
        language: string;
        sessionReference: string;
        speakerId: string;
        speakerName: string;
        text: string;
        title: string;
        type: string;
    }
    Index

    Properties

    date: string

    Date of the speech in ISO 8601 format.

    "2024-03-15"
    
    id: string

    Unique speech identifier from EP API.

    "speech/12345"
    
    language: string

    Language of the speech.

    "en"
    
    sessionReference: string

    Reference to the plenary session or meeting.

    "event/MTG-PL-2024-03-15"
    
    speakerId: string

    MEP or speaker identifier.

    Personal data - MEP identifier requires audit logging per ISMS AU-002

    "person/124936"
    
    speakerName: string

    Speaker name.

    Personal data - name requires audit logging per ISMS AU-002

    "Jane Andersson"
    
    text: string

    Speech text content or summary (if available).

    title: string

    Speech title or topic heading.

    "Debate on AI regulation"
    
    type: string

    Type of speech activity.

    "DEBATE_SPEECH"