Skip to main content
Glama

Server Details

Ad network for AI agents — monetize MCP servers with contextual ads. 70% revenue share.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Unhealthy
Last Tested
Transport
Streamable HTTP
URL
Repository
nicofains1/agentic-ads
GitHub Stars
2
Server Listing
Agentic Ads

Available Tools

3 tools
addAddAInspect

Adds two numbers and returns the sum.

ParametersJSON Schema
NameRequiredDescriptionDefault
aYes
bYes

TDQS

A4.5/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness5/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
textYesText to echo back

TDQS

A4.1/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness5/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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).

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.5/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness5/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

  1. 15 tool updates
    • Addedadd
    • Removedcreate_ad
    • Removedcreate_campaign
    • Addedecho
    • Removedget_ad_guidelines
    • Removedget_campaign_analytics
    • Removedget_developer_earnings
    • Removedget_verification_status
    • Removedlist_campaigns
    • Removedregister_wallet
    • Removedreport_event
    • Removedrequest_withdrawal
    • Removedsearch_ads
    • Addedserver_time
    • Removedupdate_campaign
  2. 1 tool update
    • Changedsearch_ads1 field changed
      • addedInput schema / properties / min_relevance
        Added 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"
        +}
  3. 1 tool update
    • Changedreport_event1 field changed
      • changedInput schema / properties / chain_id / description
        Previous 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)"
  4. 1 tool update
    • Addedrequest_withdrawal
  5. 3 tool updates
    • Addedget_verification_status
    • Addedregister_wallet
    • Changedreport_event2 fields changed
      • addedInput schema / properties / chain_id
        Added value: +{
        +  "description": "Chain ID for on-chain verified conversions (e.g. 137 for Polygon)",
        +  "type": "number"
        +}
      • addedInput schema / properties / tx_hash
        Added value: +{
        +  "description": "Transaction hash for on-chain verified conversions",
        +  "type": "string"
        +}
  6. 1 tool update
    • Addedget_developer_earnings
  7. 8 tool updates
    • First observedcreate_ad
    • First observedcreate_campaign
    • First observedget_ad_guidelines
    • First observedget_campaign_analytics
    • First observedlist_campaigns
    • First observedreport_event
    • First observedsearch_ads
    • First observedupdate_campaign

Frequently Asked Questions

Discussions

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

Related MCP Connectors

Related MCP Servers

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.1/5.0
Disambiguation5/5

Each tool has a completely distinct purpose: adding numbers, echoing text, and returning time. No overlap or ambiguity exists between them.

Naming Consistency5/5

All tool names are single-word lowercase verbs (add, echo, server_time), following a uniform and predictable naming pattern.

Tool Count3/5

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.

Completeness1/5

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.