Skip to main content
Glama
EfrainTorres

ArmaVita Meta Ads MCP

clone_campaign

Duplicate Meta ad campaigns with customizable options for ad sets, creatives, budget, and status to streamline campaign management.

Instructions

Duplicate a campaign using Meta's local Graph copy edge.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
campaign_idYes
meta_access_tokenNo
name_suffixNo - Copy
include_ad_setsNo
include_adsNo
include_creativesNo
copy_scheduleNo
new_daily_budgetNo
new_statusNoPAUSED

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Implementation Reference

  • The clone_campaign tool implementation which defines the MCP tool and calls the internal _forward_duplication_request handler.
    async def clone_campaign(
        campaign_id: str,
        meta_access_token: Optional[str] = None,
        name_suffix: Optional[str] = " - Copy",
        include_ad_sets: bool = True,
        include_ads: bool = True,
        include_creatives: bool = True,
        copy_schedule: bool = False,
        new_daily_budget: Optional[float] = None,
        new_status: Optional[str] = "PAUSED",
    ) -> str:
        """Duplicate a campaign using Meta's local Graph copy edge."""
        return await _forward_duplication_request(
            "campaign",
            campaign_id,
            meta_access_token,
            {
                "name_suffix": name_suffix,
                "include_ad_sets": include_ad_sets,
                "include_ads": include_ads,
                "include_creatives": include_creatives,
                "copy_schedule": copy_schedule,
                "new_daily_budget": new_daily_budget,
                "new_status": new_status,
            },
        )
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden but only states the basic action. It doesn't disclose behavioral traits like required permissions, rate limits, whether it's idempotent, what happens on failure, or how the copy edge works. 'Duplicate' implies a write operation, but no safety or side-effect details are given.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence with no wasted words. It's front-loaded with the core action and technical context, making it easy to parse despite lacking detail.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a 9-parameter mutation tool with no annotations and 0% schema description coverage, the description is inadequate. It doesn't explain the cloning behavior, what gets copied by default, how authentication works via meta_access_token, or what the output contains (though an output schema exists). The technical mention of 'Meta's local Graph copy edge' adds some context but doesn't compensate for missing operational details.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate but adds no parameter information. It doesn't explain what campaign_id refers to, the purpose of include_* flags, how name_suffix is applied, or the implications of copy_schedule and new_status. The description provides zero parameter semantics beyond what's in the schema titles.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb ('Duplicate') and resource ('a campaign'), specifying it uses Meta's local Graph copy edge. It distinguishes from create_campaign by indicating duplication rather than creation from scratch, though it doesn't explicitly contrast with other clone_* tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided on when to use this tool versus alternatives like create_campaign or other clone_* tools. The description mentions the technical mechanism but offers no contextual usage advice, prerequisites, or exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Latest Blog Posts

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/EfrainTorres/armavita-meta-ads-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server