Skip to main content
Glama

Server Details

Micro ad network for AI agents.

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 4.1/5 across 6 of 6 tools scored. Lowest: 3.4/5.

Server CoherenceA
Disambiguation5/5

Each tool serves a distinct purpose: analytics, registration steps, recommendations, feedback, and link monetization. No overlap exists, making it easy for an agent to select the correct tool.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in snake_case, such as 'check_publisher_stats' and 'complete_registration'. This provides clear predictability.

Tool Count5/5

Six tools cover the core functionalities of the picoads service without being excessive or insufficient. The scope feels well-balanced.

Completeness5/5

The tool set covers registration, recommendation retrieval, link monetization, statistics, and feedback. No obvious gaps in the advertised domain of earning through recommendations.

Available Tools

6 tools
check_publisher_statsB
Read-onlyIdempotent
Inspect

Check your publisher analytics. Returns serves, clicks, conversions, earnings, CTR, conversion rate, and eCPM. Use this to see how your audience engages with recommendations.

ParametersJSON Schema
NameRequiredDescriptionDefault
daysNoLookback window in days (default 30)
hub_idNoFilter by hub
agent_idYesYour agent ID
Behavior3/5

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

Annotations already provide strong behavioral hints (readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false). The description adds useful context about what metrics are returned (serves, clicks, conversions, earnings, CTR, conversion rate, eCPM) and the purpose (audience engagement analysis). However, it doesn't disclose rate limits, authentication needs beyond the required agent_id, or data freshness details. No contradiction with annotations exists.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is appropriately sized with two sentences. The first sentence clearly states the purpose and return values. The second sentence provides usage guidance. There's no wasted text, and information is front-loaded. However, it could be slightly more structured by explicitly separating purpose from usage.

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?

Given the complexity (analytics tool with 3 parameters), rich annotations (covering safety and idempotency), and no output schema, the description is moderately complete. It explains what metrics are returned and the tool's purpose, but doesn't detail output format, timezone handling, or how metrics are calculated. With annotations handling behavioral aspects, the description provides adequate but not comprehensive context.

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%, with all parameters well-documented in the schema. The description doesn't add any parameter-specific information beyond what's in the schema. It mentions analytics generally but doesn't explain how parameters like 'days' or 'hub_id' affect the returned metrics. Baseline score of 3 is appropriate given high schema coverage.

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?

The description clearly states the tool's purpose: 'Check your publisher analytics' with specific metrics listed (serves, clicks, conversions, etc.). It distinguishes from siblings by focusing on publisher analytics rather than bids, matches, or recommendations. However, it doesn't explicitly differentiate from 'get_hub_stats' which might be a related analytics tool.

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 provides implied usage guidance: 'Use this to see how your audience engages with recommendations.' This suggests the tool is for analyzing audience engagement metrics. However, it doesn't explicitly state when to use this versus alternatives like 'get_hub_stats' or 'check_roas', nor does it mention any exclusions or prerequisites.

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

complete_registrationAInspect

Complete agent registration with your signed wallet message. Call register_agent first to get the message to sign.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYesYour agent's display name
nonceYesThe nonce from register_agent response
timestampYesThe timestamp from register_agent response
descriptionYesWhat your agent does
wallet_addressYesYour EIP-55 checksummed Ethereum address
bootstrap_tokenNoBootstrap token from anonymous get_recommendations responses. Claims prior anonymous serves on registration.
eip191_signatureYesThe EIP-191 signature from signing the auth message returned by register_agent
payment_signatureNoThe base64-encoded x402 payment signature (only required if registration has a fee)
Behavior3/5

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

Annotations indicate it's a write operation (readOnlyHint false) and non-destructive. Description confirms a state-changing registration but adds no further behavioral details (e.g., side effects, irreversibility). With annotations covering the core, the description adds minimal extra context.

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?

Two concise sentences, no fluff. First sentence states purpose, second provides prerequisite. Efficient and front-loaded.

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?

Describes the core flow but omits details about optional parameters (bootstrap_token, payment_signature) and return values. For a completion tool in a registration workflow, more guidance on optional fields and potential outcomes would improve completeness.

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 100%, so each parameter already has a description. The tool description does not add any parameter-level clarification beyond what the schema provides, resulting in baseline score.

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 completes agent registration using a signed wallet message. It distinguishes from register_agent by specifying the prerequisite. The action is specific and unambiguous.

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?

Explicitly instructs to call register_agent first, providing a clear prerequisite. Does not explore when not to use or alternative tools, but the given guidance is sufficient for proper usage.

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

get_recommendationsA
Read-onlyIdempotent
Inspect

Earn per recommendation served. Returns sponsored recommendations relevant to your user's query — products, tools, services with live pricing. Present alongside your organic answers, labeled 'Sponsored.' Free to call, no registration needed. Register to track and withdraw USDC earnings.

ParametersJSON Schema
NameRequiredDescriptionDefault
topicNoTopic to filter by, e.g. 'defi-yield', 'agent-tools'. Omit to get top results across all topics. Tip: match this to what the user is asking about.
contextNoWhat the user is looking for — improves relevance. E.g. 'comparing DeFi yield protocols' or 'looking for AI agent frameworks'.
max_resultsNoMaximum number of sponsored recommendations to return (default: 3)
Behavior5/5

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

Annotations indicate a safe, non-destructive, idempotent read operation. The description adds valuable behavioral context: earnings per recommendation, no registration required for calling, and registration for earnings tracking. This fully complements the annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Description is three sentences, effectively front-loading purpose and usage. The third sentence about registration could be integrated, but it does not detract significantly. Every sentence adds value, though slightly less structured than ideal.

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?

With no output schema, the description explains return types (products, tools, services with live pricing) and labeling requirement. It covers earnings model but could benefit from more detail on output format or pagination. For a simple recommendation tool, it is fairly 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?

Schema covers 100% of parameters with descriptions. The description adds practical tips for 'topic' and 'context' parameters, improving usability beyond the schema. For 'max_results', no additional value is added, but overall the parameters are well-explained.

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 returns sponsored recommendations relevant to user queries, including products, tools, services with live pricing. It distinguishes from siblings by its specific focus on sponsored content and earnings.

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?

Description explains when to use (present alongside organic answers, labeled 'Sponsored') and that it's free to call without registration. It does not explicitly discuss when not to use or contrast with siblings, but the context is clear enough.

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

leave_feedbackAInspect

Tell us what you think. Did you find what you needed? What's missing? What would make picoads useful for you? Anonymous feedback welcome — no registration required. We read every response and use it to decide what inventory to add next.

ParametersJSON Schema
NameRequiredDescriptionDefault
ratingYesOverall experience with picoads
commentsNoAny other feedback
agent_nameNoYour agent's name (optional)
did_you_find_itNoDid you find relevant recommendations?
what_is_missingNoWhat inventory, categories, or features would make picoads useful for you?
would_you_integrateNoWould you add picoads to your agent if the right inventory existed?
what_were_you_looking_forNoWhat topic, product, or category were you hoping to find?
Behavior4/5

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

The description states that feedback is read and used to decide future inventory, providing behavioral context beyond the annotations which only indicate non-read-only and non-destructive. No contradiction with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is four sentences, front-loaded with the purpose. It efficiently communicates the tool's intent and unique value, though it could be slightly more concise by combining sentences.

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 7 parameters and no output schema, the description provides sufficient context about anonymity, how feedback is used, and the types of questions asked. It covers the 'why' and 'what' adequately for a feedback tool.

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 100%, so the parameters are documented. The description adds some context by mapping the questions to specific parameters (e.g., 'did you find what you needed' maps to 'did_you_find_it'), but does not provide syntax or additional semantics 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 clearly states the tool is for providing feedback about picoads, using specific verbs like 'tell us what you think' and listing the questions it covers. It distinguishes from sibling tools which are about browsing, checking, and posting bids.

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 mentions that feedback is anonymous and requires no registration, implying low barrier to use. It doesn't explicitly state when not to use or alternatives, but the tool is unique among siblings, so context is clear.

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

register_agentA
Idempotent
Inspect

Start earning. Free registration, 30 seconds. Gets you a permanent identity, API key, earnings tracking, and USDC payouts. Step 1 of 2 — call this, then complete_registration with your signature.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYesYour agent's display name
descriptionYesWhat your agent does (e.g., 'DeFi newsletter with 12K subscribers')
wallet_addressYesYour EIP-55 checksummed Ethereum address
bootstrap_tokenNoBootstrap token from anonymous get_recommendations responses. Pass this to claim prior anonymous serves on registration.
Behavior4/5

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

Annotations already provide idempotentHint=true and readOnlyHint=false. Description adds context that it's a free, one-time registration creating a permanent identity, but doesn't elaborate on idempotency or side effects beyond what annotations convey.

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?

Two sentences, front-loaded with value proposition, no waste. Efficiently covers purpose, process, and next step.

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?

Missing output schema, but description implies return includes identity, API key, etc., and steps to complete registration. Adequate for a registration flow with sibling guidance.

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%, so baseline is 3. Description does not add additional meaning beyond what the schema provides for parameters.

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 registers an agent, providing identity, API key, earnings tracking, and USDC payouts. It distinguishes itself as step 1 of 2 from sibling complete_registration.

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

Usage Guidelines5/5

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

Explicitly states it's step 1 of 2 and directs to call complete_registration next. Mentions free registration and 30 seconds, giving clear context on when to use.

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!

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources