Privacy Tools Guide

The Montana Consumer Data Privacy Act (MCDPA), which went into effect in 2023, provides Montana residents with powerful tools to control their personal information. If you live in Montana, you have legal rights to access, delete, and opt out of the sale of your data. This guide shows you exactly how to exercise those rights effectively.

Understanding Your Rights Under MCDPA

The MCDPA grants Montana residents several fundamental privacy rights:

These rights apply to businesses that meet certain thresholds—typically those with annual gross revenue exceeding $25 million, or those that process data of 25,000 or more Montana residents while deriving significant revenue from data sales.

How to Request Data Deletion

Data deletion requests are among the most commonly exercised rights under privacy laws. Here’s how to submit an effective deletion request:

Step 1: Identify Companies Holding Your Data

Start by auditing which companies have your personal information. Check:

Step 2: Locate the Privacy Request Mechanism

Most companies provide a way to submit privacy requests. Look for:

Step 3: Submit Your Deletion Request

When submitting a deletion request, be specific. Here’s a template you can adapt:

Subject: Montana Consumer Data Privacy Act - Deletion Request

I am a Montana resident exercising my right to delete personal data under the Montana Consumer Data Privacy Act.

Please delete all personal data you have collected about me, including:
- Account information (email, username, profile data)
- Purchase history
- Browsing behavior and cookies
- Location data
- Any third-party data sharing records

To verify my identity, I can provide:
- The email address associated with my account
- Last known account username
- Approximate date of account creation

Please confirm receipt of this request and provide a timeline for completion as required by law.

Sincerely,
[Your Name]
[Montana Address - city and state is sufficient]

Automated Deletion Request Scripts

For developers managing multiple accounts, you can automate deletion requests using scripts:

import smtplib
from email.mime.text import MIMEText

def send_deletion_request(company_email, company_name, user_email):
    """Send a data deletion request via email"""

    template = """Subject: MCDPA Data Deletion Request - {email}

I am a Montana resident requesting deletion of all personal data
associated with {email} under the Montana Consumer Data Privacy Act.

Please delete all personal information you hold about me,
including account data, usage data, and any shared third-party data.

I expect confirmation within 45 days as required by law.
"""

    msg = MIMEText(template.format(email=user_email))
    msg['Subject'] = f'MCDPA Data Deletion Request - {user_email}'
    msg['From'] = user_email
    msg['To'] = company_email

    # Configure your SMTP server
    with smtplib.SMTP('smtp.yourprovider.com', 587) as server:
        server.starttls()
        server.login(user_email, 'your-app-password')
        server.send_message(msg)

# Usage
companies = [
    ('privacy@company1.com', 'Company 1'),
    ('privacy@company2.com', 'Company 2'),
]

for email, name in companies:
    send_deletion_request(email, name, 'your@email.com')

How to Opt Out of Data Sales

The right to opt out of data sales prevents companies from selling your personal information to third parties. Here’s how to exercise this right:

Universal Opt-Out Mechanisms

Many websites honor a “Global Privacy Control” (GPC) signal that you can enable in your browser. This automatically opts you out of data sales on participating sites:

Site-Specific Opt-Out

For sites without GPC support, look for:

  1. “Do Not Sell My Personal Information” links—typically found in website footers
  2. Account privacy settings—often under “Privacy” or “Data Settings”
  3. Email opt-out—some companies accept opt-out requests via email

Opt-Out Template

Subject: Opt-Out of Data Sales - Montana Consumer

I am a Montana resident exercising my right to opt out of the sale
or sharing of my personal data under MCDPA.

Please do not sell or share my personal information with
third parties for marketing purposes.

Email associated with my account: [your@email.com]

Please confirm this opt-out has been processed.

Handling Request Denials

Companies must respond to privacy requests within 45 days. If a company denies your request:

Step 1: Request Written Explanation

Ask for a written explanation of why your request was denied. Companies must provide this under MCDPA.

Step 2: Appeal Internally

Many companies have an internal appeals process. Look for:

Step 3: File a Complaint

If the company refuses to honor your rights after appealing, you can file a complaint with:

The Montana Attorney General can impose penalties on companies that violate MCDPA.

Tracking Your Requests

For power users managing multiple deletion requests, create a tracking system:

from dataclasses import dataclass
from datetime import datetime, timedelta
from typing import Optional

@dataclass
class PrivacyRequest:
    company: str
    request_type: str  # 'deletion', 'access', 'opt_out'
    date_submitted: datetime
    deadline: datetime
    status: str  # 'pending', 'completed', 'denied', 'appealed'
    reference_number: Optional[str] = None
    notes: Optional[str] = None

    @property
    def days_remaining(self) -> int:
        delta = self.deadline - datetime.now()
        return max(0, delta.days)

# Track requests
requests = []

def add_request(company: str, request_type: str) -> PrivacyRequest:
    req = PrivacyRequest(
        company=company,
        request_type=request_type,
        date_submitted=datetime.now(),
        deadline=datetime.now() + timedelta(days=45),
        status='pending'
    )
    requests.append(req)
    return req

# Usage
deletion_request = add_request('Example Corp', 'deletion')
print(f"Request to {deletion_request.company}: {deletion_request.days_remaining} days remaining")

Best Practices for Montana Residents

  1. Document everything: Keep copies of all requests and responses
  2. Use certified mail: For important requests, send via certified mail with return receipt
  3. Set reminders: Companies have 45 days to respond—follow up if you don’t hear back
  4. Use privacy tools: Browser extensions like Privacy Badger, uBlock Origin, and GPC-enabled browsers reduce data collection proactively
  5. Regular audits: Review which companies have your data quarterly and submit deletion requests for unused accounts

The MCDPA gives you real power over your personal information. Use these rights proactively to minimize your digital footprint and control who has access to your data.

Built by theluckystrike — More at zovo.one