AgencyAI Commerce MCP
Server Details
AgencyAI's public MCP for service discovery and AI-readiness assessment.
/.well-known/glama.json file. Claimed server authors can inspect health checks, view analytics, and manage their connector listing.- Status
- Unhealthy
- 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 4/5 across 3 of 3 tools scored.
Each tool targets a distinct action: assessing readiness, retrieving offerings, and booking a consultation. Even though assess and get offerings both use client profiles, their outputs are clearly different, so there's no ambiguity.
All tool names follow a consistent verb_noun snake_case pattern (assess_ai_readiness, book_consultation, get_service_offerings), making the set easy to navigate.
With only three tools, the server is tightly scoped to a single client journey: assessment to offerings to booking. Each tool is essential and earns its place.
The set covers the core lead-gen flow, but booking is only a legacy preview with no confirmation or management tools, which is a minor gap given the 'Commerce' context.
Available Tools
3 toolsassess_ai_readinessAssess AI ReadinessARead-onlyInspect
Produce a deterministic, indicative AI-readiness assessment from the supplied organization profile.
| Name | Required | Description | Default |
|---|---|---|---|
| industry | Yes | Client industry | |
| pain_points | No | Current operational pain points | |
| current_tools | No | Current business tools | |
| employee_count | Yes | Number of employees |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, so the base safety is known. The description adds meaningful behavioral context: 'deterministic' (consistent output) and 'indicative' (not a definitive judgment), which go beyond the annotations. 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?
A single, well-structured sentence that front-loads the verb and resource. Every word earns its place, with no redundancy or filler.
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 straightforward tool with read-only annotations and a clear purpose, the description is sufficient for an agent to select and invoke it. The lack of output schema is not a major gap here, though the description could hint at the return format (e.g., a score or report).
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%, so the schema already documents each parameter. The description groups them as 'organization profile' but adds no additional meaning beyond what the schema provides, so baseline 3 is appropriate.
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 uses the specific verb 'Produce' with resource 'AI-readiness assessment' and clearly differentiates from sibling tools like book_consultation and get_service_offerings. The phrases 'deterministic' and 'indicative' add precision.
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 context via 'supplied organization profile' but does not explicitly state when to prefer this tool over alternatives or mention any exclusions. Sibling tools are distinct in purpose, but the description offers no direct comparison.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
book_consultationRequest ConsultationAInspect
Submit a consultation request preview. This legacy flow does not send email, create calendar events, or guarantee a booking.
| Name | Required | Description | Default |
|---|---|---|---|
| industry | No | ||
| company_name | No | ||
| contact_name | Yes | Contact name | |
| contact_email | Yes | Contact email | |
| employee_count | No | ||
| preferred_times | No | ||
| service_package | Yes | Relevant AgencyAI service package |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds valuable behavioral context beyond annotations: it's a legacy flow with no email/calendar side effects and no booking guarantee. This is important since annotations only indicate write semantics (readOnlyHint false). It doesn't contradict annotations, but it leaves out what happens on success (e.g., response or storage), so a 4 is appropriate.
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 that is immediately informative and front-loaded with the core action ('Submit a consultation request preview'). Every phrase earns its place, with no wasted words.
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 7 parameters and no output schema, the description is rather sparse. It clarifies what the tool does not do, but not what it actually does (e.g., whether it saves the request, returns an ID, or shows a preview). It's minimally viable but leaves gaps about the expected result and the meaning of 'preview'.
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 only 43%, which is low, so the description should compensate by explaining parameter meaning. It does not; it mentions no parameters at all. The schema itself has descriptions for only 3 of 7 params, leaving others ambiguous. Thus, the tool description adds no value in this dimension.
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 submits a 'consultation request preview,' which is a specific verb+resource action. It also distinguishes itself from siblings by clarifying it's a legacy flow that doesn't guarantee booking, making it clear this is not the main booking tool.
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 this tool (for preview submissions) by noting it doesn't send email, create calendar events, or guarantee a booking. However, it doesn't explicitly name alternatives or provide direct when-not-to-use guidance, so it falls short of a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_service_offeringsGet Service OfferingsARead-onlyInspect
Read AgencyAI's current AI operations service catalog and return packages matching a client profile.
| Name | Required | Description | Default |
|---|---|---|---|
| industry | No | Client industry | |
| pain_points | No | Current operational pain points | |
| company_size | No | Number of employees |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description aligns with the readOnlyHint annotation by using the verb 'Read.' It adds the behavioral detail that results are filtered by a client profile and are from the 'current' catalog, but it does not disclose other traits such as authentication requirements or behavior when no parameters are provided.
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 immediately states the resource and action, with no filler or redundancy.
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 read-only tool with three optional parameters and no output schema, the description adequately covers the main purpose. Some details like behavior with no parameters or exact return format are omitted, but the annotations mitigate the need for extensive disclosure.
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 already describes each parameter with 100% coverage. The description adds the collective term 'client profile' but does not provide additional detail beyond what the schema offers, so a baseline score of 3 is appropriate.
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 the verb 'Read' plus a specific resource ('AgencyAI's current AI operations service catalog') and the goal ('return packages matching a client profile'). This clearly distinguishes it from sibling tools like assess_ai_readiness and book_consultation, which serve 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?
The description implies usage for retrieving service offerings based on a client profile, giving clear context for when to use the tool. However, it does not explicitly mention alternatives or when not to use it, so it lacks explicit exclusions.
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
- AlicenseNot gradedqualityDmaintenanceMCP Server for agent and service discovery — register, search, rate, and manage AI agents and services in a local directory.9MIT

Agorus MCP Serverofficial
AlicenseNot gradedqualityDmaintenanceMCP server for the Agorus AI agent marketplace, exposing API operations as tools for LLMs to discover, contract, and interact with agents and services.15MIT- AlicenseNot gradedqualityDmaintenanceMCP server that gives AI agents the ability to discover, match with, and build relationships with other autonomous agents. Supports agent registration, matchmaking, messaging, shared goals, relationship lifecycle management, and real-time event subscriptions.51MIT
- AlicenseNot gradedqualityCmaintenanceUniversal coordination hub for AI agents. Find collaborators, negotiate terms, form contracts, and build reputation through an MCP interface. Supports natural language search across agent networks.4MIT