Avito Ads MCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Avito Ads MCPShow me the campaigns of my Avito account and last week's spend per group."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Avito Ads MCP
MCP server for the Avito Ads API (Avito Reklama) — the media / performance advertising cabinet. Ask Claude, Cursor, Codex or any other MCP client about your campaigns, ad groups, creatives and their statistics in plain language; move money between agency sub-accounts and file the ORD paperwork without opening the web cabinet.
This is not the Avito seller API. Avito Ads is the advertising cabinet (display and performance campaigns bought by an advertiser or an agency). Listings, chats with buyers, orders and item promotion live behind a different API — the community server
avito-mcpcovers those, and its credentials are not interchangeable with these. If you came here to answer a buyer's message, you are in the wrong repository.
Quick start
Get a Client Key and Client Secret in the Avito Ads cabinet (Administrator role required) and note your ad account id.
Add the server — for example, to Claude Code (other clients):
claude mcp add avito-ads \ -e AVITO_ADS_CLIENT_ID=your_client_key \ -e AVITO_ADS_CLIENT_SECRET=your_client_secret \ -e AVITO_ADS_ACCOUNT_ID=your_account_id \ -- npx -y mcp-avito-ads@latestAsk the assistant: "Show me the campaigns of my Avito account and last week's spend per group."
Related MCP server: VK Ads MCP
What it can do
Ad objects (read-only) —
list_campaigns,list_groups,list_creatives: paginated, filterable lists of campaigns, ad groups and the creatives themselves, with status, budget, bid, payment model, flight dates and ORD legal info.Statistics —
campaign_stats,group_stats,creative_stats: impressions, clicks, CTR, spend, bonus spend, CPM, CPC and the video quartiles / VTR, per day and as a period total.Money knobs —
change_group_budgetandchange_group_price: the budget and the bid of one ad group. These are the only editable fields in the whole ad object tree.Account, balances and agency sub-accounts —
get_account,get_balance,list_child_accounts,list_child_accounts_with_balances,create_child_account,transfer_funds,transfer_bonus.ORD paperwork —
create_advertiser,list_advertisers,create_contract,list_contracts: the advertiser and contract records Russian ad-marking law requires before a campaign can run.Account access —
list_users,add_user,set_user_role,delete_user.Universal
raw_request— call any API path directly, for endpoints without a dedicated tool.
Full reference: docs/TOOLS.md — 25 tools.
What it cannot do
The Avito Ads API surface is deliberately narrow, and no MCP server can widen it:
Campaigns, ad groups and creatives cannot be created, edited, paused, resumed, archived or deleted through the API. That work stays in the web cabinet.
Targeting is not exposed at all — neither for reading nor for writing.
Creatives cannot be uploaded or sent to moderation.
Advertisers and contracts are append-only — there is no edit and no delete endpoint, so a wrong record stays on the account.
Money transfers cannot be undone. There is no cancel endpoint and no transfer log.
The account is fixed by
AVITO_ADS_ACCOUNT_ID; no tool takes an account id, so a model cannot wander into another account (transfer_fundspicks only the destination).
The weekly point quota
This is the single most surprising operational fact about the Avito Ads API, so plan around it:
Every call spends points from a weekly budget, not from a per-second rate limit.
The budget is replenished on Mondays at 00:00 UTC. Burn it on Tuesday and the account is effectively read-nothing until the next Monday.
Every response carries an
Api-Point-Balanceheader, and this server lifts it into every tool result asapiPointBalance(nullif the API did not send the header). The assistant sees the remaining budget with every answer and can pace itself.
Practical consequences worth telling your assistant about:
Prefer one wide statistics period over many narrow ones — the 100-day cap per request exists precisely so a long report is a single call.
Use
limitup to 100 instead of walking pages of 20.Client-side validation (dates, amounts, contract rules, page bounds) is done before the request, so a malformed call costs no points.
On an HTTP 429 the error itself reports
Retry-After(as the server sent it) and the point balance the call failed with, so the assistant knows when it can come back.
Examples
"How much did campaign 4242 spend last month, broken down by ad group?"
"Which of my child accounts is out of money?"
"Raise the bid of ad group 101 to 350 rubles."
"List the creatives that failed moderation."
"Register the advertiser with INN 7707083893 and a service contract for it."
Installation
claude mcp add avito-ads \
-e AVITO_ADS_CLIENT_ID=your_client_key \
-e AVITO_ADS_CLIENT_SECRET=your_client_secret \
-e AVITO_ADS_ACCOUNT_ID=your_account_id \
-- npx -y mcp-avito-ads@latestclaude_desktop_config.json — macOS ~/Library/Application Support/Claude/, Windows %APPDATA%\Claude\
{
"mcpServers": {
"avito-ads": {
"command": "npx",
"args": ["-y", "mcp-avito-ads@latest"],
"env": {
"AVITO_ADS_CLIENT_ID": "your_client_key",
"AVITO_ADS_CLIENT_SECRET": "your_client_secret",
"AVITO_ADS_ACCOUNT_ID": "your_account_id"
}
}
}
}~/.cursor/mcp.json (or .cursor/mcp.json in the project)
{
"mcpServers": {
"avito-ads": {
"command": "npx",
"args": ["-y", "mcp-avito-ads@latest"],
"env": {
"AVITO_ADS_CLIENT_ID": "your_client_key",
"AVITO_ADS_CLIENT_SECRET": "your_client_secret",
"AVITO_ADS_ACCOUNT_ID": "your_account_id"
}
}
}
}.vscode/mcp.json — the key is servers (not mcpServers)
{
"servers": {
"avito-ads": {
"type": "stdio",
"command": "npx",
"args": ["-y", "mcp-avito-ads@latest"],
"env": {
"AVITO_ADS_CLIENT_ID": "your_client_key",
"AVITO_ADS_CLIENT_SECRET": "your_client_secret",
"AVITO_ADS_ACCOUNT_ID": "your_account_id"
}
}
}
}Getting access
Open the Avito Ads cabinet with a user that has the Administrator role on the ad account — a viewer cannot issue API credentials.
Create an API application there and copy its Client Key and Client Secret. They are the OAuth2
client_credentialspair this server exchanges for a Bearer token athttps://api.avito.ru/token.Note the ad account id the credentials belong to — every API path is scoped to it (
v1/account/{accountID}/...).Put them into
AVITO_ADS_CLIENT_ID,AVITO_ADS_CLIENT_SECRETandAVITO_ADS_ACCOUNT_ID.
⚠️ The secret is stored in plain text in the MCP client's config — treat it as a password.
The agency child accounts created by create_child_account come with their own fresh
clientKey / clientSecret, returned once and not re-readable afterwards.
Sandbox
Set AVITO_ADS_ENVIRONMENT=sandbox and the server talks to https://api.avito.ru/ads-sandbox/
instead of https://api.avito.ru/ads/ — the path prefix is the only difference. Use it to
rehearse the write tools (transfers, budget and bid changes, user management) without touching
real money. create_sandbox_account mints a test advertiser account there — the server refuses
that tool unless AVITO_ADS_ENVIRONMENT=sandbox — and the returned id is not adopted by the
running server: put it into AVITO_ADS_ACCOUNT_ID to use it.
Configuration
Variable | Required | Default | Description |
| yes | — | OAuth2 client id (Client Key) of your Avito application. |
| yes | — | OAuth2 client secret. Treat as a password. |
| yes | — | Ad account id, a positive integer. Injected into every path. |
| no |
|
|
| no |
| Per-request timeout, ms (covers reading the body). |
| no |
| Retries on 429; on 5xx/network for reads only. |
| no |
| Refresh the access token this long before it expires. |
| no |
| API root override (replaces the environment prefix too). |
The variable names match the official Avito Ads SDK, so one set of credentials works for both.
Requirements
Node.js 20+ (run through
npx, no separate install needed).An Avito Ads account with API credentials — see Getting access.
Safety
Writes are grouped by intent through MCP tool annotations: reads are
readOnlyHint, budget / bid / role changes are idempotent writes, creates are non-idempotent, and money transfers plusdelete_userare marked destructive — clients that ask for confirmation will ask for these.raw_requestrequires an explicitconfirmWrite: trueforPOSTandDELETE, refuses any path that escapes the API base (SSRF guard), so the Bearer token cannot be sent to another host, and refuses any path addressing an account other thanAVITO_ADS_ACCOUNT_ID— including one that tries to get there through...Writes are never retried after a network error or a 5xx — a repeated funds transfer would move the money twice. Reads are retried with backoff.
Documentation
All tools — full reference with inputs and outputs.
Development — build, tests, smoke check, telemetry.
Publishing — release and MCP-catalog listing.
See also
Ask Ads — a chat analyst and watchdog for ad accounts by the authors of this server: budget-burn and tracking-breakage alerts in Telegram.
Avito Ads SDK for TypeScript — the official SDK; this server implements the same wire protocol independently.
Support
Questions, ideas and feature requests — Telegram: @gistrec.
License
MIT — see LICENSE.
This server cannot be installed
Maintenance
Related MCP Servers
- AlicenseBqualityCmaintenanceMCP server for VK Ads API enabling management of campaigns, ads, statistics, targeting, and budgets through natural language.88264MIT
- AlicenseAqualityAmaintenanceMCP server for VK Ads API: manage ad plans, ad groups, banners, and statistics.184383MIT
- Alicense-qualityCmaintenanceA local MCP server that connects Yandex Direct advertising reports and safe campaign creation to AI agents, enabling natural-language analytics and protected campaign setup.1MIT
- Alicense-qualityAmaintenanceAn MCP server that gives AI agents direct access to the Yandex Direct API to manage campaigns, groups, ads, keywords, bids, and reports via natural language.1316Apache 2.0
Related MCP Connectors
MCP for Yandex Direct: manage ad campaigns & analytics from Claude or ChatGPT
MCP server for Gainium — manage trading bots, deals, and balances via AI assistants
MCP server for AI dialogue using various LLM models via AceDataCloud
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/A1-x-Tech/mcp-avito-ads'
If you have feedback or need assistance with the MCP directory API, please join our Discord server