These documents are being deprecated and replaced by the Aiera Platform

MCP Server

Integrating MCP with Model SDKs

The Aiera MCP server can be easily integrated with the SDKs of most major AI providers, such as OpenAI and Anthropic.

OpenAI

response = openai_client.responses.create(
    model="gpt-5",
    tools=[
        {
            "type": "mcp",
            "server_label": "Aiera",
            "server_description": "Access to Aiera financial data API",
            "server_url": f"https://mcp-pub.aiera.com/?api_key={API_KEY}",
            "require_approval": "never",
        },
    ],
    input="What are the key analyst questions from the most recent Netflix earnings call? return as JSON.",
)

Anthropic

response = anthropic_client.beta.messages.create(
    model="claude-sonnet-4-5",
    mcp_servers=[
        {
            "type": "url",
            "name": "Aiera",
            "url": f"https://mcp-pub.aiera.com/?api_key={API_KEY}",
            "tool_configuration": {
                "enabled": True,
            }
        },
    ],
    messages=[
        {
            "role": "user",
            "content": "What are the key analyst questions from the most recent Netflix earnings call? return as JSON."
        }
    ],
)
Previous
Usage: Platforms