Skip to main content
Glama

advertising-protocols

Server Details

Query 70+ ad tech protocols — OpenRTB, VAST, AdCP, AAMP, TCF, GPP — with citations.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 3.9/5 across 4 of 4 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct purpose: fetching a single protocol, listing servers, searching glossary terms, and searching the protocol catalog. No overlap or ambiguity.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern with underscores (get_protocol, list_mcp_servers, search_glossary, search_protocols), making them predictable.

Tool Count4/5

4 tools is on the lower side but appropriate for an informational directory. Each tool covers a necessary function without redundancy.

Completeness4/5

Covers the main information retrieval needs: get single protocol, search protocols, search glossary, list related servers. Missing an explicit 'list all protocols' but search_protocols likely fills that gap.

Available Tools

4 tools
get_protocolGet protocol detailsA
Read-onlyIdempotent
Inspect

Fetch details for one advertising protocol by its slug (e.g. 'openrtb-2', 'adcp', 'aamp', 'ucp'). Returns description, governance, evidence links, use cases, and dependencies.

ParametersJSON Schema
NameRequiredDescriptionDefault
slugYesProtocol slug, e.g. 'openrtb-2' or 'adcp'.
Behavior3/5

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

Annotations already indicate read-only and idempotent behavior. The description adds the return fields but does not disclose additional traits like error handling, authorization, or rate limits.

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 sentence with no fluff. It fronts the action and resource, then lists the return fields concisely.

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

Completeness4/5

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

For a simple one-parameter tool with good annotations, the description covers what it does and what it returns. It could mention behavior on invalid slugs, but overall it is sufficiently complete.

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

Parameters4/5

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

The schema defines 'slug' with examples 'openrtb-2' and 'adcp'. The description adds more examples ('aamp', 'ucp') and contextualizes the parameter, providing value beyond the schema.

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

Purpose5/5

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

The description uses a specific verb ('Fetch details') and resource ('advertising protocol by its slug'), and distinguishes from siblings like search_protocols (which searches) and list_mcp_servers (which lists servers).

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

Usage Guidelines3/5

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

The description implies usage when you need details of a specific protocol, but does not explicitly state when not to use it or mention alternatives like search_protocols for broader queries.

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

list_mcp_serversList advertising MCP serversA
Read-onlyIdempotent
Inspect

List MCP servers in the AdvertisingProtocols directory. Optionally filter by protocol slug/label (e.g. 'adcp'), vendor, category, or 'officialOnly' to get only publisher-owned servers.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
vendorNoVendor name substring (e.g. 'Google', 'IAB').
protocolNoProtocol slug or label to filter by (e.g. 'adcp', 'AdCP', 'aamp').
officialOnlyNo
Behavior3/5

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

Annotations already declare readOnlyHint=true and idempotentHint=true, so the safety profile is clear. The description adds the directory scope but does not disclose pagination behavior or return format beyond the limit parameter in the schema.

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 front-loaded sentence that efficiently communicates the main action and optional filters. Every word earns its place with no fluff.

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

Completeness4/5

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

Given the tool's simplicity (list with filtering) and no output schema, the description covers essential context: the directory and filter options. It is nearly complete for a read-only list operation, though mentioning the return format would be ideal.

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

Parameters3/5

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

Schema coverage is 50% (2 of 4 parameters have descriptions). The description adds examples for the protocol parameter (e.g., 'adcp') and mentions filtering options, which adds value. However, it does not compensate fully for the undocumented parameter (limit missing description) nor provide syntax details.

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

Purpose5/5

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

The description uses a specific verb 'List' and resource 'MCP servers in the AdvertisingProtocols directory'. It clearly distinguishes from sibling tools like get_protocol (single protocol) and search_protocols (protocols), which are different resources.

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

Usage Guidelines3/5

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

The description states the tool lists servers in a specific directory with optional filters, which implies usage context. However, it does not explicitly say when to use this tool versus alternatives, nor does it provide when-not-to-use guidance.

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

search_glossarySearch ad tech glossaryA
Read-onlyIdempotent
Inspect

Search the AdvertisingProtocols glossary of 130+ ad tech terms (DSP, SSP, RTB, TCF, etc.) and return plain-English definitions.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
queryYesTerm or keyword to search for.
Behavior3/5

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

Annotations already declare readOnlyHint=true, openWorldHint=false, idempotentHint=true, covering safety and behavior. The description adds that results are 'plain-English definitions' and gives examples of terms, which provides useful but not critical behavioral context. No contradiction.

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?

Single sentence, 18 words, directly states purpose and examples. No wasted text. Front-loaded with action and resource.

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

Completeness4/5

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

For a simple search tool with annotations, the description adequately covers what it does and returns. However, it omits mention of pagination or the limit parameter's role, which could be clarified for completeness. Overall sufficient given low complexity.

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 50%: query has a description, but limit does not. The tool description does not mention parameters or add meaning beyond the schema. For a 2-parameter tool, the description should clarify the limit parameter's effect or provide examples.

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

Purpose5/5

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

Description clearly states the verb 'search', the resource 'AdvertisingProtocols glossary', its scope (130+ ad tech terms with examples like DSP, SSP, RTB), and the output format (plain-English definitions). It distinguishes from sibling tools like search_protocols by specifying the glossary context.

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

Usage Guidelines3/5

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

The description implies when to use (searching ad tech glossary terms) but does not explicitly state when not to use or provide alternatives. Sibling tools like get_protocol or list_mcp_servers are not contrasted, leaving the agent to infer usage context.

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

search_protocolsSearch ad tech protocolsA
Read-onlyIdempotent
Inspect

Search the AdvertisingProtocols catalog of 80+ ad tech standards (OpenRTB, VAST, AdCP, AAMP, UID2, ARTF, etc.) by keyword. Matches title, description, tags, and category.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
queryYesKeyword(s) to match, e.g. 'agentic', 'video', 'identity'.
Behavior4/5

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

Annotations confirm read-only and idempotent behavior. Description adds that the tool matches against multiple fields (title, description, tags, category) and scopes to 80+ standards, providing useful behavioral context beyond annotations.

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?

Single, well-structured sentence with immediate action verb 'search', scope 'catalog of 80+ ad tech standards', and matching fields. No redundant information.

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

Completeness4/5

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

For a simple keyword search tool with two parameters, the description adequately covers what, where, and how. Lacks mention of result format or error scenarios, but annotations and schema fill some gaps. Overall sufficient for basic use.

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

Parameters3/5

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

Schema has two parameters with 50% coverage (query has description, limit none). The description mentions 'by keyword' linking to query but adds no parameter-specific details for limit (e.g., meaning, default, range). Does not compensate for missing schema documentation.

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

Purpose5/5

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

Description clearly states the tool searches a catalog of ad tech standards by keyword, matching title, description, tags, and category. It lists concrete examples (OpenRTB, VAST, etc.) and distinguishes from sibling tools like get_protocol (retrieval of specific protocol) and search_glossary (different catalog).

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

Usage Guidelines3/5

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

The description implies when to use (for keyword-based search across the catalog) but does not explicitly state when not to use or provide alternatives. Sibling tool names give context but lack direct guidance.

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

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • A
    license
    A
    quality
    F
    maintenance
    Query 37 EU regulations — from GDPR and AI Act to DORA, MiFID II, eIDAS, Medical Device Regulation, and more — directly from Claude, Cursor, or any MCP-compatible client.
    14
    156
    25
    Apache 2.0
  • A
    license
    A
    quality
    D
    maintenance
    Enables natural language search over Bluetooth specification PDFs with hybrid search (BM25 + semantic embeddings), returning precise answers with citations.
    4
    1
    BSD 3-Clause
  • A
    license
    B
    quality
    D
    maintenance
    Access Apple's official developer documentation, frameworks, APIs, and WWDC videos through the Model Context Protocol (MCP), support AI driven natural language queries, and provide Swift/Objective-C code examples and technical guidelines.
    18
    1
    Apache 2.0

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources