Artificial Analysis MCP server for AI agents and assistants

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with Artificial Analysis MCP or direct API to compare AI models, analyze provider pricing, benchmark latency, and rank models by intelligence, coding, math, image, video, speech, and music performance through natural language.

Artificial Analysis logoArtificial Analysis
Api Key

Artificial Analysis is an independent benchmarking platform for AI models and API providers. Use it to compare model intelligence, coding, math, pricing, latency, throughput, and arena rankings.

12 Tools

Try Artificial Analysis now

Type what you want done — sign in and watch it run live in the Tool Router playground.

TOOL ROUTER PLAYGROUND
Artificial Analysis
Try asking
TOOLS

Supported Tools

Every Artificial Analysis action and event your agent gets out of the box.

List Image-Editing Models (Arena)

List image-editing models ranked by the Artificial Analysis arena, with Elo score and 95% confidence interval.

List Image-to-Video-with-Audio Models (Arena)

List image-to-video-with-audio models ranked by the Artificial Analysis arena, with Elo score and 95% confidence interval.

List Image-to-Video Models (Arena)

List image-to-video models ranked by the Artificial Analysis image-to-video arena, with Elo score and 95% confidence interval.

List Language Models (Intelligence & Pricing)

List LLMs from the Artificial Analysis leaderboard with intelligence, coding and agentic indices, pricing, and performance (speed and latency).

List Instrumental Music Models (Arena)

List instrumental music-generation models ranked by the Artificial Analysis arena, with Elo score and 95% confidence interval.

List Music-with-Vocals Models (Arena)

List music-with-vocals generation models ranked by the Artificial Analysis arena, with Elo score and 95% confidence interval.

List Speech-to-Speech Models

List speech-to-speech models with Big Bench Audio (bba_score), Full Duplex Bench (fdb_score), and Tau-Voice (tau_voice_score) quality scores.

List Speech-to-Text Models (WER)

List speech-to-text (transcription) models with the Artificial Analysis overall word-error-rate index (aa_wer_index).

List Text-to-Image Models (Arena)

List text-to-image models ranked by the Artificial Analysis image arena, with Elo score and 95% confidence interval.

List Text-to-Speech Models (Arena)

List text-to-speech (TTS) models ranked by the Artificial Analysis arena, with Elo score and 95% confidence interval.

List Text-to-Video-with-Audio Models (Arena)

List text-to-video-with-audio models ranked by the Artificial Analysis arena, with Elo score and 95% confidence interval.

List Text-to-Video Models (Arena)

List text-to-video models ranked by the Artificial Analysis arena, with Elo score and 95% confidence interval.

SETUP GUIDE

Connect Artificial Analysis MCP Tool with your Agent

1

Install Composio

typescript
npm install @composio/core ai @ai-sdk/mcp @ai-sdk/openai
Install the Composio SDK and your agent framework
2

Create a session with MCP enabled

typescript
import { Composio } from "@composio/core";

const composio = new Composio();
const { mcp } = await composio.create("your-user-id", {
  toolkits: ["artificial_analysis"],
  mcp: true,
});
Create a session scoped to Artificial Analysis and read its MCP URL and headers
3

Connect your agent to the MCP server

typescript
import { createMCPClient } from "@ai-sdk/mcp";
import { openai } from "@ai-sdk/openai";
import { generateText, stepCountIs } from "ai";

const client = await createMCPClient({
  transport: { type: "http", url: mcp.url, headers: mcp.headers },
});

const { text } = await generateText({
  model: openai("gpt-5.6-sol"),
  tools: await client.tools(),
  prompt: "Compare GPT-4o, Claude 3.5 Sonnet, and Gemini 1.5 Pro by intelligence score, pricing, and latency.",
  stopWhen: stepCountIs(10),
});

console.log(text);
await client.close();
Pass the session's MCP URL and headers to your agent and run a Artificial Analysis request
SETUP GUIDE

Connect Artificial Analysis API Tool with your Agent

1

Install Composio

typescript
npm install @composio/core @composio/openai openai
Install the Composio SDK, the OpenAI provider, and the OpenAI SDK
2

Create a Composio session

typescript
import OpenAI from "openai";
import { Composio } from "@composio/core";
import { OpenAIResponsesProvider } from "@composio/openai";

const composio = new Composio({ provider: new OpenAIResponsesProvider() });
const client = new OpenAI();

const session = await composio.create("your-user-id", { toolkits: ["artificial_analysis"] });
const tools = await session.tools();
Initialize Composio with the OpenAI Responses provider and create a session scoped to Artificial Analysis
3

Run Artificial Analysis tools with your agent

typescript
let response = await client.responses.create({
  model: "gpt-5.6-sol",
  tools,
  input: [{ role: "user", content: "Compare GPT-4o, Claude 3.5 Sonnet, and Gemini 1.5 Pro by intelligence score, pricing, and latency." }],
});

while (response.output.some((o) => o.type === "function_call")) {
  const outputs = await composio.provider.handleToolCalls(session, response.output);
  response = await client.responses.create({
    model: "gpt-5.6-sol",
    tools,
    previous_response_id: response.id,
    input: outputs,
  });
}

console.log(response.output_text);
Send a request, execute the Artificial Analysis tool calls through the session, and print the final answer

Why Use Composio?

AI Native Artificial Analysis Integration

  • Supports both Artificial Analysis MCP and direct API based integrations
  • Structured, LLM-friendly schemas for reliable benchmark and provider queries
  • Rich coverage for comparing AI model scores, pricing, latency, throughput, and arena rankings

Managed Auth

  • Secure API key handling without hard-coding Artificial Analysis credentials in your agent code
  • Central place to manage, scope, and revoke Artificial Analysis access
  • Per user and per environment credentials so your benchmark workflows stay clean and safe

Agent Optimized Design

  • Tools are tuned so agents can ask clear questions like which model is fastest, cheapest, or strongest for coding
  • Comprehensive execution logs so you always know what benchmark data was queried, when, and on whose behalf

Enterprise Grade Security

  • Fine-grained RBAC so you control which agents and users can access Artificial Analysis
  • Scoped, least privilege access to Artificial Analysis benchmark and provider data
  • Full audit trail of agent actions to support review and compliance
FRAMEWORKS

Use Artificial Analysis with any AI Agent Framework

Choose a Framework you want to connect Artificial Analysis with

Rolling this out across your team?

Give your team centralized access control across every framework with Composio’s MCP Gateway.

EXPLORE MCP GATEWAY
FAQ

Frequently asked questions

Yes, Artificial Analysis requires you to configure your own API key. Once set up, Composio handles secure credential storage and API request handling for you.

Yes! Composio's Tool Router enables agents to use multiple toolkits. Learn more.

Yes. Composio is SOC 2 Type II compliant and is built to keep your Artificial Analysis connection and credentials secure. OAuth tokens and API keys are encrypted, and sensitive customer data is protected at rest and in transit.

Composio also undergoes independent security testing and continuously monitors its systems for security threats. You can review the latest reports and policies in the Composio Trust Center.

Composio maintains and updates all toolkit integrations automatically, so your agents always work with the latest API versions.

Create the key in your Artificial Analysis account settings, then paste it once on Composio's connection page. Composio stores it encrypted and uses it only for the Artificial Analysis actions your agent runs. Nobody else in your workspace can read it, and you can revoke it inside Artificial Analysis at any time.

When you connect a Artificial Analysis account through Composio, every action runs under that account, so anything the agent creates, sends, or changes shows up in Artificial Analysis as done by you. Keep an approval step in your prompt for actions with side effects, such as sending or deleting, and have the agent draft first.

Whatever the credentials you connect allow inside Artificial Analysis. If Artificial Analysis lets you scope a key to specific permissions, create a scoped one so the agent can only do what you intend. You can revoke the key inside Artificial Analysis at any time.

Yes. Composio supports multiple connected accounts for the same app, and that works in Claude, ChatGPT, or any other assistant you connect through Composio. Give each Artificial Analysis connection a name such as work or personal, and the assistant uses the one you mention in the request. Each account keeps its own credentials and nothing is merged.

The connection stops working the moment Artificial Analysis rejects the old key. Create a new key in Artificial Analysis and reconnect the account from the Composio dashboard or by asking your agent to reconnect Artificial Analysis. Nothing else changes.

Composio's free plan includes 100,000 tool calls per month with no credit card, which covers most personal Artificial Analysis use. Paid plans add higher limits and team features. Your Artificial Analysis plan and its API limits still apply as usual.

Built-in connectors usually give one AI access to a limited set of apps. Many people use Composio because it lets their AI connect to more apps than it normally supports, or connect to multiple accounts for the same app (e.g. connect Claude to multiple Artificial Analysis accounts).

With Composio, you connect Artificial Analysis once and then use it across different AI assistants without setting it up separately in each one. Connect your apps to Composio once, then connect Composio to whichever AI you use, whether that's Claude, ChatGPT, Hermes, or your own custom assistant.

Start with Artificial Analysis.It takes 30 seconds.

Managed auth, hosted MCP servers, and every Artificial Analysis tool your agent needs.Free to start.

Start building