VibeCart
Server Details
Agent-native commerce with trusted catalog, durable carts, and Stripe Checkout via MCP and UCP.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- runjohnray2-lgtm/vibecart
- GitHub Stars
- 0
- Server Listing
- VibeCart MCP Server
Available Tools
4 toolsvibecart.create_checkoutCreate a hosted Stripe Checkout sessionAInspect
Creates a hosted checkout URL for one or more trusted merchant-catalog products. Legacy productId + quantity input remains supported; new integrations should use items[]. VibeCart resolves all prices server-side. This can contact Stripe but never charges by itself; the customer must complete Stripe Checkout.
| Name | Required | Description | Default |
|---|---|---|---|
| items | No | Trusted product IDs and quantities for a multi-item checkout. | |
| quantity | No | Legacy single-product quantity. | |
| productId | No | Legacy single-product input. Use either productId or items, not both. |
Output Schema
| Name | Required | Description |
|---|---|---|
| code | No | |
| mode | No | |
| error | No | |
| items | No | |
| details | No | |
| message | No | |
| success | Yes | |
| quantity | No | |
| productId | No | |
| totalCents | No | |
| checkoutUrl | No | |
| untrustedPricing | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond annotations (non-readonly, non-destructive), the description reveals server-side price resolution and the fact that charging only occurs upon customer completion of Stripe Checkout. This adds valuable behavioral context without 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?
Two sentences cover purpose, usage guidance, and behavioral nuance without any wasted words. Front-loads the core action and legacy/modern distinction.
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 three parameters with oneOf and a clear output schema, the description adequately covers the essential behavioral and usage aspects. Minor omission: no mention of required authorization or catalog setup, but siblings imply the context.
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 100% so baseline is 3. The description adds value by explaining the legacy vs. new parameter choice and confirming server-side price handling, which goes beyond the schema's field descriptions.
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 explicitly states the tool creates a hosted checkout URL for merchant-catalog products, distinguishing it clearly from sibling tools that handle products or integration instructions.
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?
It advises new integrations to use 'items[]' over legacy 'productId' input, and clarifies that the tool contacts Stripe but does not charge the customer. Lacks explicit when-not-to-use scenarios, but guidance is solid.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
vibecart.get_integration_instructionsGet secure integration instructionsARead-onlyIdempotentInspect
Returns concise Next.js App Router guidance for installing VibeCart with trusted catalog pricing, multi-item checkout, and the shared MCP endpoint.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| rules | Yes | |
| success | Yes | |
| component | Yes | |
| framework | Yes | |
| mcpEndpoint | Yes | |
| checkoutRoute | Yes | |
| machineReadableSpec | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false, aligning with a safe, data‑retrieval operation. The description adds concrete context about the content of the returned guidance (trusted catalog pricing, multi‑item checkout, shared MCP endpoint), which is behaviorally informative beyond annotations.
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, front‑loaded sentence (23 words) efficiently conveys the tool's purpose and key deliverables. Every word adds value; there is 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?
Given zero parameters, a comprehensive set of annotations, and an output schema present, the description is nearly complete. It states the type of guidance and its scope (Next.js App Router, VibeCart installation). It could mention prerequisites or error conditions, but the combination of annotations and output schema mitigates this gap.
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%. With no parameters to explain, baseline 4 is appropriate. The description does not need to add parameter semantics since none exist.
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 'concise Next.js App Router guidance for installing VibeCart' with specific features (trusted catalog pricing, multi-item checkout, shared MCP endpoint). This distinguishes it from sibling tools like create_checkout, get_product, and list_products, which handle commerce operations rather than integration setup.
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 obtaining installation guidance but provides no explicit when-to-use or when-not-to-use advice. No alternatives are mentioned, and the context (sibling tools) suggests differentiation exists but is not articulated in the description itself.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
vibecart.get_productGet one trusted catalog productARead-onlyIdempotentInspect
Looks up one product and its trusted USD-cent price from the configured merchant catalog. Does not access Stripe or create a checkout.
| Name | Required | Description | Default |
|---|---|---|---|
| productId | Yes | A stable ID returned by vibecart.list_products. |
Output Schema
| Name | Required | Description |
|---|---|---|
| code | No | |
| error | No | |
| product | No | |
| success | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false, so the tool is clearly a safe read. The description adds valuable context: that it accesses a 'trusted USD-cent price' from a 'configured merchant catalog' and explicitly rules out Stripe/checkout operations. 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise: two sentences (20 words) that front-load the purpose and add a clarifying exclusion. No wasted words; every sentence 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 read-only tool with one parameter and an existing output schema, the description covers all needed aspects: what it does, what it doesn't do, and where to get the parameter value. Additional details (like output structure) are unnecessary given the output schema. Complete enough for an 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?
Schema description coverage is 100% for the sole parameter 'productId', and its schema description clearly states it is 'A stable ID returned by vibecart.list_products.' The tool description adds no further parameter details, but the schema already provides adequate guidance. 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 explicitly states 'looks up one product and its trusted USD-cent price' from the catalog, which is a specific verb and resource. It clearly distinguishes from sibling tools like 'list_products' (returns multiple) and 'create_checkout' (creates a checkout) by stating what it does and doesn't do.
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 tells when to use this tool (to look up a single product) and explicitly states what it does NOT do ('Does not access Stripe or create a checkout'), which helps avoid confusion with 'create_checkout'. However, it does not explicitly mention alternative tools or when not to use it, though that is implicit from sibling names.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
vibecart.list_productsList trusted catalog productsARead-onlyIdempotentInspect
Lists products from the configured trusted merchant catalog. Use the returned stable IDs for product lookup or checkout.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| success | Yes | |
| products | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare `readOnlyHint=true`, `idempotentHint=true`, and `destructiveHint=false`, covering the safety and idempotency profile. The description adds that products come from 'the configured trusted merchant catalog', which is a minor detail about the source. No additional behavioral traits (e.g., pagination, rate limits, ordering) are mentioned. With strong annotation coverage, the description's extra value is limited, resulting in a baseline score.
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 consists of exactly two sentences. The first sentence states the core action and scope, and the second provides actionable usage guidance. Every sentence earns its place; there is no fluff. The structure is front-loaded and highly efficient.
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 (0 parameters, rich annotations, presence of an output schema), the description is complete. It explains what the tool does and how the returned data should be used. The output schema handles return value details. No gaps remain for a list operation with no parameters.
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 trivially 100%. The description does not need to add parameter semantics, and it doesn't. Per the guidelines, with 0 parameters the baseline is 4. The description simply omits any parameter discussion, which 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 specific verb 'Lists' and identifies the resource as 'products from the configured trusted merchant catalog'. It also mentions using the returned IDs for 'product lookup or checkout', which distinguishes it from sibling tools like `vibecart.get_product` (single product) and `vibecart.create_checkout` (checkout action). The purpose is clear and unambiguous.
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 provides explicit guidance on how the output should be used ('Use the returned stable IDs for product lookup or checkout'), which implies when to use this tool (to obtain product IDs before further operations). However, it does not explicitly state when not to use it or directly compare with alternatives like `vibecart.get_product`. The context is clear but lacks explicit exclusions.
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.
4 tool updates
- First observed
vibecart.create_checkout - First observed
vibecart.get_integration_instructions - First observed
vibecart.get_product - First observed
vibecart.list_products
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
Agent Commerce MCP — agent-native A2A storefront. Discovery, Stripe checkout, affiliate program.
Agentic commerce with 58 MCP tools for product search, checkout, A2A negotiation, C-Suite analytics.
Agent floor and MCP market: catalog, rack, Stripe checkout, x402, A2A.
Agent Commerce Protocol MCP — bridges Stripe ACP + Google AP2 + Coinbase x402 for agent payments
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceMCP server for e-commerce operations including product catalog management, cart/checkout, and Stripe integration, with built-in EU AI Act compliance.MIT
- FlicenseNot gradedqualityDmaintenanceEnables AI agents to perform e-commerce operations through a standardized interface implementing the x402 and Agentic Commerce Protocol (ACP). Supports merchant sessions, product search, and payment orchestration with production-ready security features.-
- FlicenseNot gradedqualityBmaintenanceEnables AI agents to discover products, build carts, and complete purchases across multiple downstream commerce services through a secure, contract-driven API.-
- AlicenseNot gradedqualityCmaintenanceEnables AI shopping agents to search products, check stock, apply promotions, manage cart sessions, and create cryptographically signed checkout sessions on e-commerce storefronts, while giving merchants analytics into agent intent and catalog demand gaps.MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Each tool has a clearly distinct purpose: creating checkouts, getting integration instructions, and querying product catalog. No overlap exists between any two tools.
All tools follow a consistent verb_noun pattern with the 'vibecart.' prefix. Verbs are uniform (create, get, list) and nouns are specific (checkout, product, products, integration_instructions).
Four tools is on the lower end but appropriate for a focused integration server that provides checkout creation and product lookup. It covers the essential actions without being overly sparse.
The server covers core product catalog and checkout creation, but lacks tools for managing checkouts (e.g., retrieval, cancellation) or updating product information. These are notable gaps that may limit agent workflows.