Agentic Ads
Server Details
Ad network for AI agents — monetize MCP servers with contextual ads. 70% revenue share.
- Status
- Unhealthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- nicofains1/agentic-ads
- GitHub Stars
- 2
- Server Listing
- Agentic Ads
Available Tools
3 toolsaddAddAInspect
Adds two numbers and returns the sum.
| Name | Required | Description | Default |
|---|---|---|---|
| a | Yes | ||
| b | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description bears the full burden of behavioral disclosure. It clearly indicates that the tool performs a pure arithmetic addition and returns a single numeric result. For a deterministic function with no side effects, this level of transparency is adequate; it does not mention edge cases or precision issues, but these are not critical for a basic 'add' operation.
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, well-formed sentence with no redundancy. Every word earns its place, and the core information is front-loaded. It is appropriately sized for the tool's trivial complexity.
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, the description is fully complete. It covers the operation, the parameters, and the return value. No output schema is needed because the return type is obvious. There is no additional context, such as side effects or external dependencies, that an agent would need to know to call this tool correctly.
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 provides no descriptions for parameters (0% coverage), so the description must compensate. It does so by stating 'Adds two numbers,' which directly ties the parameters a and b to the operands of the addition. The names themselves are self-explanatory, and the description reinforces their role, adding meaning beyond the bare type declarations.
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 states a specific verb ('Adds') and resource ('two numbers') and clearly indicates the result ('returns the sum'). This is immediately distinguishable from sibling tools echo and server_time, which serve entirely different purposes.
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?
While the description does not explicitly name alternatives or exclusions, the purpose is self-evident: it is the tool to use when one needs to compute the sum of two numbers. Given the simplicity of the operation and the obviously unrelated siblings, this implicit guidance is sufficient, though a brief mention of when not to use it would be more explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
echoEchoAInspect
Echoes the provided text back to the caller.
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | Text to echo back |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. The single sentence fully discloses the tool's behavior — it returns the input text unchanged. For a tool with zero side effects, authentication needs, or hidden behavior, this is complete disclosure, and the phrase 'back to the caller' adds a subtle but useful clarification about the return value.
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?
A single sentence with zero informational waste. Every word serves the purpose of stating what the tool does, and no irrelevant detail is included.
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?
Complete for what this tool is. One parameter fully documented in the schema, no output schema concerns, and the behavior is fully described. There is no complexity an agent would need additional context to handle.
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 100% — the schema already describes 'text' as 'Text to echo back'. The description adds no additional parameter meaning beyond the schema's coverage, which lands at the baseline 3 for full schema coverage.
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 states a specific verb ('echoes') and object ('the provided text') plus a clear outcome ('back to the caller'). This is unambiguous and naturally distinguishes the tool from its siblings (add, server_time) without naming them.
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?
No explicit when-to-use or when-not-to-use guidance, and no alternatives are named. However, for a trivially simple tool, usage is strongly implied by the purpose — use it when you want text returned unchanged. The guidance is barely needed, but it's absent, so 'implied usage' applies.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
server_timeServer timeAInspect
Returns the current server time (ISO 8601, UTC).
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full disclosure responsibility. It adequately discloses the return format and timezone (UTC), which covers the key behavioral aspect. It does not state side effects, but for a read-only time fetch this is sufficient.
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?
One sentence, front-loaded with the action and result format. Zero extraneous words; perfectly concise.
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 parameterless tool with no output schema, the description fully defines the return value (time, format, timezone). Nothing an agent needs to invoke it correctly is missing.
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 tool has zero parameters, and schema coverage is 100% (empty property set). Per rubric, baseline is 4. The description adds no parameter details, but none are needed.
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 clearly states the tool 'Returns the current server time' with explicit formatting (ISO 8601, UTC). This is a specific verb-resource pair that immediately distinguishes it from sibling tools 'add' and 'echo', which serve unrelated purposes.
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 (whenever current server time is needed) but does not explicitly discuss alternatives. However, siblings 'add' and 'echo' are clearly unrelated, so no ambiguity exists. The lack of explicit guidance does not impede correct tool selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
15 tool updates
- Added
add - Removed
create_ad - Removed
create_campaign - Added
echo - Removed
get_ad_guidelines - Removed
get_campaign_analytics - Removed
get_developer_earnings - Removed
get_verification_status - Removed
list_campaigns - Removed
register_wallet - Removed
report_event - Removed
request_withdrawal - Removed
search_ads - Added
server_time - Removed
update_campaign
1 tool update
- Changed
search_ads1 field changed- added
Input schema / properties / min_relevanceAdded value: +{ + "default": 0, + "description": "Minimum relevance score (0-1). Ads below this threshold are excluded. Default 0 (return all).", + "maximum": 1, + "minimum": 0, + "type": "number" +}
1 tool update
- Changed
report_event1 field changed- changed
Input schema / properties / chain_id / descriptionPrevious value: -"Chain ID for on-chain verified conversions (e.g. 137 for Polygon)"New value: +"Chain ID for on-chain verified conversions (e.g. 8453 for Base)"
1 tool update
- Added
request_withdrawal
3 tool updates
- Added
get_verification_status - Added
register_wallet - Changed
report_event2 fields changed- added
Input schema / properties / chain_idAdded value: +{ + "description": "Chain ID for on-chain verified conversions (e.g. 137 for Polygon)", + "type": "number" +} - added
Input schema / properties / tx_hashAdded value: +{ + "description": "Transaction hash for on-chain verified conversions", + "type": "string" +}
1 tool update
- Added
get_developer_earnings
8 tool updates
- First observed
create_ad - First observed
create_campaign - First observed
get_ad_guidelines - First observed
get_campaign_analytics - First observed
list_campaigns - First observed
report_event - First observed
search_ads - First observed
update_campaign
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
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
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
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 Connectors
MCP-native ad server. Monetize AI chatbots and agents with conversational ads.
Website monetization for AI agents: apply, integrate ads, reporting, and payouts — all over MCP.
Monetize any MCP server: x402 paywall, pay-per-call billing in USDC on Base, agent marketplace.
Related MCP Servers
- AlicenseAqualityCmaintenanceMCP server for AI agents to manage ad campaigns across Google, Meta, LinkedIn, Microsoft, Reddit, TikTok, and more2127817MIT
- AlicenseNot gradedqualityBmaintenanceMonetization gateway for MCP servers, enabling pay-per-call AI agent access with x402 payment challenges and USDC settlement on Base. Developers can register existing MCP servers, set tool prices, and receive payments without handling payment code.21MIT
- AlicenseAqualityFmaintenanceMCP server that lets AI agents launch and manage Meta + TikTok ad campaigns autonomously. 1 call 30 seconds to launch.15123MIT

Nexbidofficial
AlicenseNot gradedqualityDmaintenanceAgentic commerce infrastructure for AI agents. MCP-native product discovery, contextual ad matching, and purchase facilitation with European privacy compliance (nDSG/GDPR).MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Each tool has a completely distinct purpose: adding numbers, echoing text, and returning time. No overlap or ambiguity exists between them.
All tool names are single-word lowercase verbs (add, echo, server_time), following a uniform and predictable naming pattern.
Three tools is a reasonable number for a simple utility server, but the server name 'Agentic Ads' suggests a far broader scope, making the count feel inadequate for the implied domain.
The tool set has no relevance to advertising or agentic functionality. It only provides generic utilities, leaving the entire ad-related domain uncovered. The surface is severely incomplete for the stated purpose.