Anthropic for your agents.
Connect Anthropic once and every agent you run inside Even (Claude Code, Codex, OpenCode, Even Agents) can use it: 8 curated tools, discovered on demand, with your key stored on your machine and every call going direct to Anthropic.
What agents can do with Anthropic
Curated for agents: the calls that matter, with schemas and descriptions written for tool use, not an endpoint dump.
anthropic_list_modelsList available Claude models.
anthropic_messageOne-shot message to Claude. `messages` is [{role, content}]; max_tokens is required by the API.
anthropic_get_modelFor an AI agent: fetch metadata for one model by id (display name, creation date). `model_id` is a value from list_models, e.g. claude-sonnet-4-20250514.
anthropic_count_tokensFor an AI agent: count the input tokens a Messages request would use, without running it. Same `model`/`messages` shape as message; returns input_tokens so you can budget before calling.
anthropic_create_message_batchFor an AI agent: submit many Messages requests for cheaper async processing. `requests` is an array of {custom_id, params} where params is a full Messages body. Returns a batch id to poll with get_message_batch.
anthropic_list_message_batchesFor an AI agent: list Message Batches, most recent first.
anthropic_get_message_batchFor an AI agent: poll one Message Batch by id for processing_status and result counts. When it has ended, download results from the results_url in the response.
anthropic_cancel_message_batchCancel a Message Batch that has not yet completed. Ended batches cannot be canceled.
Connect it in a minute
The connect flow is agent-driven: Even opens the key page in its own browser and collects the key through a secure native field. It never passes through the chat.
- Paste the prompt below into any agent running inside Even, or click Connect in Even's catalog.
- Click 'Create Key'.
- Name it and create.
- Copy the key; it is shown once.
- Paste the key into Even's secure field. Even verifies it and your agents are live.
Connect Anthropic to Even: call connect_begin("anthropic") on the even-connect MCP and walk me through it.
List available Claude models, count input tokens before sending messages, and submit async batches of requests for cost-effective processing.
More Even Connect services
One MCP server, a handful of meta-tools, every service below. Agents search for the right tool at run time, so context stays lean.