MCP Server
Aiera MCP Server with SDKs
The Aiera MCP server can be easily leveraged within 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."
}
],
)