Nexez Agentic Commerce
Server Details
Search merchants, inspect structured offers, and validate checkout or negotiation before buying.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- Flyger1an/nexez
- GitHub Stars
- 0
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.5/5 across 5 of 5 tools scored. Lowest: 2.8/5.
Each tool has a clear, non-overlapping purpose: directory browsing, page fetching, searching, checkout validation, and negotiation validation. No ambiguity between tools.
All tool names follow the consistent pattern 'nexez_<verb>_<noun>' (e.g., nexez_directory, nexez_get_page, nexez_search, nexez_validate_checkout, nexez_validate_negotiation). Uniform snake_case with no deviations.
Five tools is well-scoped for a commerce marketplace server, covering browsing, searching, detail retrieval, and pre-transaction validations without being excessive or too sparse.
The set covers browsing, search, detail, and pre-transaction validations, but lacks actual write operations (e.g., performing checkout or submitting a negotiation), which are notable gaps for a full commerce workflow.
Available Tools
5 toolsnexez_directoryBInspect
Browse the cross-merchant Nexez directory (optionally filtered by category, query, minimum readiness, or location).
| Name | Required | Description | Default |
|---|---|---|---|
| q | No | ||
| category | No | ||
| location | No | ||
| min_readiness | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description must carry full burden. 'Browse' implies read-only but does not explicitly confirm safety, auth needs, or side effects. No behavioral traits disclosed beyond the action.
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, front-loaded with key information, no redundancy. Every part serves a purpose: verb, resource, optional filters.
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?
Description adequately covers purpose and filters but lacks essential context: no mention of output/return values (list? details?), pagination, sorting, or ordering. Given no output schema, this omission reduces completeness.
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?
With 0% schema description coverage, the description lists the four filter parameters (q, category, location, min_readiness), adding meaning over bare schema. However, it does not explain formats (e.g., query syntax, location format, readiness scale) beyond the enum for category.
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 verb 'browse' and resource 'Nexez directory', and lists optional filters (category, query, readiness, location), distinguishing it from siblings like nexez_search (likely free-text search) and nexez_get_page (specific page retrieval).
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 guidance on when to use this tool versus siblings. Missing context on when to choose browsing over search or page retrieval, and no prerequisites or exclusions mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
nexez_get_pageAInspect
Fetch a listing's full structured agent manifest (seller profile, offers, actions) by slug.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Listing slug |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the burden. It states what the tool fetches but does not disclose return format, error behavior, authentication requirements, or any side effects. This is minimally adequate but lacks depth.
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 with no superfluous words. Every element ('Fetch', 'listing', 'structured agent manifest', 'by slug') is meaningful and earns its place.
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 tool with one parameter and no output schema, the description is mostly complete. It explains what is fetched but could be more specific about the return format or that it returns a single manifest. The overall context is sufficient.
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 the single parameter 'slug' as 'Listing slug', and the description merely restates 'by slug' without adding new details. With 100% schema coverage, 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?
The description uses a specific verb 'Fetch' and identifies the resource as a 'listing's full structured agent manifest' with concrete elements (seller profile, offers, actions) and the method 'by slug'. This clearly distinguishes it from siblings like nexez_directory or nexez_search, which imply different operations.
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 a manifest by slug but provides no explicit guidance on when to use this tool versus alternatives like nexez_search or nexez_directory. No exclusions or comparisons are mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
nexez_searchCInspect
Search across all Nexez merchants for services/products matching a buyer request. Returns ranked listings with offers + agent.json URLs.
| Name | Required | Description | Default |
|---|---|---|---|
| q | Yes | What the buyer is looking for | |
| lat | No | ||
| lng | No | ||
| limit | No | Max results (default 10) | |
| category | No | ||
| industry | No | ||
| location | No | Optional city/region filter | |
| verified | No | ||
| min_trust | No | ||
| price_band | No | ||
| min_readiness | No | ||
| supports_checkout | No | ||
| supports_negotiation | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must disclose behavioral traits but only states it returns ranked results. It omits whether the operation is read-only, requires authentication, or has rate limits, and does not explain ranking criteria or side effects.
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?
Description is two sentences, front-loading the core purpose and output. Every word adds value with no redundancy, making it optimally 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 complex tool with 13 parameters, no output schema, and no annotations, the description fails to provide essential context like output structure, filter usage, or ranking logic, making it nearly impossible for an agent to use correctly without additional knowledge.
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 23% (3 of 13 params have descriptions). The tool description does not compensate by explaining any parameters, leaving lat, lng, industry, verified, min_trust, etc. completely undocumented in both the schema and description.
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 verb 'Search' and resource 'all Nexez merchants', differentiating from sibling tools like nexez_directory and nexez_get_page by its focus on query-based discovery. It also specifies the output: ranked listings with offers and agent.json URLs.
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 guidance on when to use this tool versus alternatives. It does not mention scenarios where directory or page fetch would be more appropriate, leaving the agent without decision support.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
nexez_validate_checkoutAInspect
Dry-run a checkout for an offer BEFORE paying — validates the offer, currency, and payment readiness. Never charges.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | ||
| offer | Yes | e.g. services-0 or products-1 | |
| query | No | Optional buyer context |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden. It clearly states the tool is a dry-run that never charges, which is a key behavioral trait. However, it does not disclose what happens on validation failure, error handling, or rate limits. Still, the safety profile is well communicated.
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, information-dense sentence with zero wasted words. It front-loads the core purpose and key constraint ('Never charges').
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 validation tool with no output schema, the description omits the return type or expected outcome. It also fails to explain the 'slug' parameter. The tool's complexity is low, so the gaps are moderate but noticeable.
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 67% (offer and query have descriptions, slug does not). The description adds no parameter explanations beyond what the schema provides; crucially, 'slug' is left undefined. This does not compensate for the missing 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 clearly states the tool performs a dry-run checkout validation, including specific aspects validated (offer, currency, payment readiness) and explicitly notes it never charges. This distinguishes it from actual payment tools and sibling tools like nexez_validate_negotiation.
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 use before paying but does not provide explicit when-to-use or when-not-to-use guidance, nor does it compare with sibling tools (e.g., nexez_validate_negotiation). No exclusions or alternatives are mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
nexez_validate_negotiationAInspect
Dry-run a negotiation proposal against the seller’s rules BEFORE submitting. Returns the rules evaluation. Never writes.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | ||
| offer | Yes | ||
| query | No | ||
| budget | No | ||
| timeline | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description bears full responsibility for behavioral disclosure. It explicitly states 'Never writes', which is a critical behavioral trait. However, it does not mention prerequisites, authentication needs, rate limits, or any side effects beyond being a dry-run. The lack of details about the return format slightly reduces clarity.
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 extremely concise—two sentences that front-load the core purpose ('Dry-run a negotiation proposal') and immediately clarify the behavioral constraint ('Never writes'). Every word adds value, and the structure is optimal for quick understanding.
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 has 5 required/optional parameters and no output schema, the description is incomplete. It does not explain the parameters, their expected formats, or what the 'rules evaluation' output contains. The tool's medium complexity demands more detail to be fully actionable for an AI agent.
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 input schema has 5 parameters with 0% description coverage, and the tool description provides no explanation of what parameters like 'slug', 'offer', 'query', 'budget', or 'timeline' mean or how they should be used. This leaves the agent with no semantic guidance beyond parameter names.
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 performs a dry-run validation of a negotiation proposal against seller rules, uses the verb 'dry-run', and distinguishes itself from sibling tools like validate_checkout by focusing on negotiation. It also explicitly says 'Never writes', clarifying its read-only nature.
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 indicates when to use the tool ('BEFORE submitting'), providing clear context for its use. However, it does not explicitly exclude use cases or name alternatives among sibling tools, leaving some ambiguity about when to choose this over validate_checkout or other tools.
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
- AlicenseBqualityBmaintenanceMachine-readable merchant verification infrastructure for AI shopping agents and agentic commerce systems.13MIT
- AlicenseAqualityDmaintenanceEnables AI agents to create, compare, and track purchases with structured buying workflows, offer comparison, and merchant verification.5MIT
- Alicense-qualityCmaintenanceEnables agents to discover OP-verified merchants accepting Bitcoin Lightning, BOLT12, L402, or USDT payments, with tools for search, merchant details, and payment endpoint verification.MIT
- AlicenseAqualityBmaintenanceAgent-to-agent commerce over Bitcoin Lightning: buy, sell, list, and discover files, data, APIs, and compute on a public marketplace (or privately by offer id). Non-custodial, buyers pay sellers wallet-to-wallet and a verified payment preimage unlocks the result.21543MIT No Attribution