Table of Contents

Agent Index

The AI Agent Index is a systematic documentation effort that catalogues and analyzes deployed agentic AI systems. The 2025 AI Agent Index, hosted at aiagentindex.mit.edu, provides a comprehensive report documenting the origins, design, capabilities, ecosystem, and safety features of 30 prominent AI agents, analyzed across 45 fields in six categories by seven expert annotators using publicly available data.

Methodology

The Agent Index follows a rigorous annotation methodology:

Taxonomy of Deployed Agents

The index categorizes deployed agentic systems by their primary function:

Information Synthesis (12/30 agents):

Workflow Automation (11/30 agents, mostly enterprise):

GUI / Browser Operations (7/30 agents):

Capability Comparisons

The index compares agents across multiple capability dimensions:

Safety Features

A critical finding of the Agent Index is the significant gap in safety documentation:

Market Landscape

The index reveals a rapidly evolving market:

Research Growth:

Enterprise Adoption:

Deployment Sectors:

Workforce Integration:

# Example: Agent Index data structure for cataloguing agents
agent_entry = {
    "name": "Example Agent",
    "type": "enterprise",  # chat | browser | enterprise
    "version": "2.0",
    "release_date": "2025-03",
    "product_overview": {
        "primary_function": "workflow_automation",
        "domains": ["customer_support", "sales"],
        "deployment": "cloud_saas",
    },
    "technical_capabilities": {
        "base_models": ["gpt-4o", "claude-sonnet"],
        "model_selection": "automatic",
        "tools": ["web_search", "code_exec", "email", "crm_api"],
        "memory": "persistent_conversation",
        "architecture": "react_loop",
    },
    "autonomy_and_control": {
        "autonomy_level": "semi-autonomous",
        "human_approval_required": ["financial_transactions", "data_deletion"],
        "kill_switch": True,
        "monitoring": "real_time_dashboard",
    },
    "safety_and_evaluation": {
        "published_evals": False,
        "guardrails": ["output_filtering", "input_validation"],
        "sandboxing": "container_isolation",
        "third_party_audit": False,
        "compliance": ["SOC2", "GDPR"],
    },
}

References

See Also