Skip to main content
Glama
estapel-ai

mcp-facebook-ads

by estapel-ai

get_account_info

Retrieve detailed information for a single Facebook ad account, including its opportunity score and key metrics, to evaluate performance and guide optimization decisions.

Instructions

Get detailed info for one ad account (incl. opportunity_score = Kansscore in Ads Manager).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
ad_account_idNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.8/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full behavioral burden. It signals a read ('Get') and adds a domain alias for opportunity_score, but says nothing about authentication, permissions, rate limits, or side effects.

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?

One efficient sentence with the core action front-loaded and the only elaboration (the Kansscore alias) directly useful. No redundant or filler content.

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

Completeness3/5

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

The presence of an output schema reduces the need to describe return values, and the description names the key field opportunity_score. However, with no annotations and no parameter documentation, it leaves important gaps for a tool that fetches account details.

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

Parameters1/5

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

Schema coverage is 0% and the single parameter ad_account_id has no schema description. The description does not explain the parameter's expected format, whether it is required or optional, or how a null default behaves, adding no meaning beyond the schema title.

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?

States a specific verb (Get) and resource (detailed info for one ad account), and the singular 'one ad account' implicitly contrasts with sibling get_ad_accounts. It does not explicitly name that sibling or other alternatives, so it falls short of full sibling differentiation.

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 when-to-use guidance, no exclusions, and no mention of alternatives like get_ad_accounts for listing or get_account_insights for analytics. The agent must infer context from the tool name alone.

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