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.
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.
Tool Definition Quality
Average 3.9/5 across 4 of 4 tools scored.
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.
All tools follow a consistent verb_noun pattern with underscores (get_protocol, list_mcp_servers, search_glossary, search_protocols), making them predictable.
4 tools is on the lower side but appropriate for an informational directory. Each tool covers a necessary function without redundancy.
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 toolsget_protocolGet protocol detailsARead-onlyIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Protocol slug, e.g. 'openrtb-2' or 'adcp'. |
Tool Definition Quality
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.
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.
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.
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.
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.
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 serversARead-onlyIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| vendor | No | Vendor name substring (e.g. 'Google', 'IAB'). | |
| protocol | No | Protocol slug or label to filter by (e.g. 'adcp', 'AdCP', 'aamp'). | |
| officialOnly | No |
Tool Definition Quality
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.
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.
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.
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.
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.
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 glossaryARead-onlyIdempotentInspect
Search the AdvertisingProtocols glossary of 130+ ad tech terms (DSP, SSP, RTB, TCF, etc.) and return plain-English definitions.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | Yes | Term or keyword to search for. |
Tool Definition Quality
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.
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.
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.
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.
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.
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 protocolsARead-onlyIdempotentInspect
Search the AdvertisingProtocols catalog of 80+ ad tech standards (OpenRTB, VAST, AdCP, AAMP, UID2, ARTF, etc.) by keyword. Matches title, description, tags, and category.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | Yes | Keyword(s) to match, e.g. 'agentic', 'video', 'identity'. |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- AlicenseAqualityFmaintenanceQuery 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.1415625Apache 2.0
- Flicense-qualityDmaintenanceSemantic search and structured queries over IEEE 802.11 specifications, enabling AI assistants to search technical content, tables, and figures across multiple standards.
- AlicenseAqualityDmaintenanceEnables natural language search over Bluetooth specification PDFs with hybrid search (BM25 + semantic embeddings), returning precise answers with citations.41BSD 3-Clause
- AlicenseBqualityDmaintenanceAccess 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.181Apache 2.0