Cabgo Builder
Server Details
B2B MCP server that lets business operators launch and operate complete branded taxi / food delivery / LP gas / on-demand apps from a single conversation. Multi-tenant, OAuth 2.1, 87+ active operators across 14 LATAM countries.
- 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.
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/5 across 7 of 7 tools scored.
Most tools have distinct purposes, but there is overlap between cabgo_create_my_app and cabgo_create_trial, which both create a tenant. Additionally, cabgo_start_signup also creates a tenant in a different flow, leading to potential confusion for an agent selecting the appropriate creation tool.
All tools start with 'cabgo_', but the naming patterns vary: some are verbs like 'create_my_app', others are nouns like 'pricing' or 'about'. The mix of verb_noun and plain noun formats reduces predictability.
With 7 tools, the set is well-scoped for the Cabgo domain. Each tool serves a clear purpose, and the number is neither too small nor too large, allowing an agent to cover core user requests without excessive options.
The tool set covers creation (two variants), pricing, installation, publishing requirements, and overview. However, there are no tools for reading existing tenant details, updating, or deleting, which are notable gaps for a complete app lifecycle.
Available Tools
7 toolscabgo_aboutARead-onlyInspect
Public (no auth): describe what Cabgo is. Returns the full product catalog — what kinds of apps an operator can launch, pricing, who Cabgo is for, and how to onboard. Use ONLY when the user explicitly asks what Cabgo is, what it does, or wants an overview. Do NOT call this as a pre-step before cabgo_create_my_app — when the user wants to create / launch an app, go directly to cabgo_create_my_app without fetching context first.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false. Description adds valuable context: 'Public (no auth)' (auth requirement), 'Returns the full product catalog' (scope of response). 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?
Three sentences, each essential: first states core function, second gives usage triggers, third provides explicit negative guidance. No waste, front-loaded with key info.
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 info tool with no parameters or output schema, the description covers purpose, when/not to use, auth requirements, and return content. Completely adequate for an AI agent to select and invoke correctly.
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?
Zero parameters; baseline for 0 params is 4. Description compensates by explaining what the tool returns (full catalog details). Schema coverage is trivially 100%.
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?
States specific verb 'describe' and resource 'what Cabgo is / full product catalog'. Explicitly distinguishes from sibling tools like cabgo_create_my_app and cabgo_pricing by noting when not to use it.
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?
Explicitly states when to use (user asks what Cabgo is) and when not to use (as pre-step for cabgo_create_my_app), with clear alternative (go directly to cabgo_create_my_app).
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cabgo_create_my_appAInspect
Materializes a free Cabgo workspace for the operator and queues an Android build of their branded app. No payment, no card, no checkout — the workspace is free to create and operate. Call ONLY when the user explicitly wants to create / launch / spin up / set up a new app for their business — verbs like 'create', 'launch', 'build me', 'set up an app for'. Do NOT call this for setup / installation / connector questions (use cabgo_install_instructions). Ask the user 2 things: (1) what type of business — taxi / food delivery / gas distribution? (2) what brand name for their app? Optionally city + brand color. The connected OAuth user becomes the owner automatically — no email or name is needed in the body. A single user can own multiple tenants — calling this again creates a NEW workspace rather than erroring. Branding tweaks happen via other Cabgo tools after creation. Any plan / billing / subscription management is done by the operator on https://www.cabgo.app — never through this tool.
| Name | Required | Description | Default |
|---|---|---|---|
| city | No | Operator's city. Stored as context — operator adjusts the zone after first login. | |
| country | No | ISO 3166-1 alpha-2 lowercase. Default 'mx'. | |
| brandName | Yes | App brand shown to riders. e.g. 'Rappi Express', 'Taxi del Valle'. | |
| businessType | Yes | taxi = transport; delivery_food = restaurants; delivery_gas = LP gas distribution. | |
| primaryColor | No | Hex color. Defaults to a sensible per-vertical palette (blue/red/orange). | |
| ownerWhatsApp | No | WhatsApp in +E.164 (optional, for reminder messages). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations indicate readOnlyHint=false, openWorldHint=true, destructiveHint=false. The description adds valuable context: free workspace (no payment), OAuth user becomes owner automatically, multiple tenants allowed (re-call creates new workspace), and billing handled externally. No contradictions 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 dense but well-organized, covering purpose, usage rules, behavioral notes, and parameter hints in one paragraph. It could be slightly more scannable with bullet points, but every sentence adds value with no 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 6 parameters and no output schema, the description sufficiently covers the tool's effect (materializes workspace, queues build), ownership, reusability, and limitations. It doesn't describe return values, but for a mutation tool this is acceptable. The description ensures the agent can use the tool safely.
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 has 100% description coverage, but the description adds practical guidance: prompts to ask for businessType and brandName, mentions city and primaryColor as optional, and notes defaults for primaryColor. This helps the agent understand which parameters are essential and their typical values.
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 materializes a free Cabgo workspace and queues an Android build. It distinguishes from siblings by naming cabgo_install_instructions for setup questions and mentions branding tweaks via other tools. The verbs 'create', 'launch', 'build me', 'set up an app for' clearly specify trigger intent.
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 when-to-call guidance with example verbs and a clear alternative (cabgo_install_instructions). It instructs the agent to ask two specific questions before calling, ensuring proper context collection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cabgo_create_trialAInspect
Public (no auth): create a Cabgo tenant in TRIAL state — no payment required up-front. Returns companyId + activationUrl + welcome email confirmation. NEW: pass presetId (taxi_classic | delivery_food | delivery_gas) to bootstrap branding + services + zones + tariffs + module toggles in the SAME call — no need to call apply_preset separately. Pass triggerBuild:'android' to also queue an APK in the same call. Cash-only is the default: the tenant lands with cashEnabled=true, so if the operator only wants to operate in cash they don't need to call cabgo_configure_payment_provider at all. Trial duration: 14 days. Required: ownerEmail (use whatever the operator already gave you in chat — don't re-ask), companyName.
| Name | Required | Description | Default |
|---|---|---|---|
| plan | No | BASIC | PROFESSIONAL | ENTERPRISE — hint for activation Stripe Checkout. | |
| phone | No | WhatsApp / phone in international +E.164 format. | |
| source | No | Free-form attribution label, e.g. 'chatgpt-app'. | |
| appName | No | Brand for the mobile app — falls back to companyName. | |
| appPlan | No | STARTER | PRO | FULL — hint for activation Stripe Checkout. | |
| country | No | ISO-3166-1 alpha-2 lowercased, e.g. 'mx', 'ar'. Optional — defaults are picked based on the operator's chat context. | |
| logoUrl | No | Publicly-accessible image URL for the logo. | |
| presetId | No | If set, the preset is applied server-side right after tenant creation (branding + services + zones + tariffs + toggles). | |
| ownerName | No | Operator's name (optional but recommended). | |
| ownerEmail | Yes | Operator's email. **Re-use what they already told you in chat — don't ask twice.** Becomes COMPANY_ADMIN of the new tenant. | |
| companyName | Yes | Display name of the company (rider-facing). e.g. 'Taxi Express Tucumán'. | |
| primaryColor | No | Brand primary color in hex. | |
| productLines | No | ||
| triggerBuild | No | Pass true or 'android' to queue an Android build in the same call. The APK link arrives via the trial reminder email or cabgo_get_build. | |
| presetContext | No | Overrides for the preset: { centerLat, centerLng, radiusKm, primaryColor, appName }. centerLat/Lng default 0,0 (no map geometry) unless provided. | |
| secondaryColor | No | Brand secondary color in hex. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Description adds substantial behavioral context beyond annotations: no auth required, return fields (companyId, activationUrl, welcome email), preset one-call bootstrap, triggerBuild queue, default cash-only, trial duration, and required fields. No contradictions 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 efficient but somewhat lengthy due to detailed parameter explanations. Front-loaded with core purpose and key features. Bolded phrases help scanning. Slight room for trimming without losing clarity.
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 16 parameters, high schema coverage, no output schema, and nested objects, the description thoroughly covers behavior, defaults, required fields, and important notes. An agent can confidently invoke this tool with the provided information.
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 94% schema coverage, the description still adds significant value: ownerEmail reuse instruction, companyName as rider-facing, presetId avoids extra call, triggerBuild queues APK, presetContext overrides. Each parameter's meaning is enriched beyond the schema's basic 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?
Description clearly states it creates a Cabgo tenant in TRIAL state with no payment upfront. It distinguishes from siblings by specifying that presetId eliminates the need for a separate apply_preset call, and that triggerBuild queues an APK. The verb 'create' and resource 'trial tenant' are specific.
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?
Provides explicit context: public (no auth), cash-only default, trial duration 14 days, and instructs to reuse ownerEmail from chat. Implies usage scenarios (trial creation) but does not explicitly state when to use alternatives like cabgo_start_signup.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cabgo_get_publish_requirementsARead-onlyInspect
Public (no auth): returns the REAL operator checklist for publishing (most assets are auto-generated — bundle id, screenshots, descriptions, policies — so the operator only provides API access). For Play: invite console@cabgo.app + decide update-or-new + (if updating) upload keystore. For App Store: upload the API key alone (no invitation needed). Pass platform='android'|'ios'|'both' (default both).
| Name | Required | Description | Default |
|---|---|---|---|
| platform | No | Default 'both'. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate read-only and non-destructive. The description adds behavioral context: that most assets are auto-generated and the operator only provides API access. It also details specific actions for each platform, which is beyond the annotation scope.
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 slightly dense but front-loaded with the core purpose. It uses multiple clauses without being overly verbose. Could be slightly more concise, but the information is well-organized.
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 no output schema, the description adequately explains the checklist content and platform-specific steps. The tool has low complexity (1 optional param), so the description covers the essential context for an AI agent to use it correctly.
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 single parameter 'platform' is fully described in the schema with enum values and a default. The description adds value by explaining the implications of each choice (e.g., for Play vs App Store), which provides meaning beyond the schema.
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 the operator checklist for publishing. It specifies that most assets are auto-generated, so the operator only provides API access. This distinguishes it from sibling tools like cabgo_create_my_app or cabgo_install_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?
The description provides clear usage context: it's public, no auth, and explains platform-specific steps for Play and App Store. It also mentions the default platform value. However, it does not explicitly state when not to use this tool or list alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cabgo_install_instructionsARead-onlyInspect
Use THIS for any installation / setup / connection / 'how do I connect Cabgo' question, AND for any user who says they don't have a Cabgo account yet. Returns step-by-step instructions for (a) creating a Cabgo account at https://www.cabgo.app/empezar when needed and (b) installing the Cabgo MCP connector in the user's chat client (ChatGPT, Claude Desktop, Cursor). Trigger phrases: 'how do I install', 'how do I connect', 'how do I set up the connector', 'I don't have an account', 'I'm new to Cabgo', 'cómo instalo Cabgo', 'cómo me conecto', 'cómo creo cuenta', 'connect step by step', 'add this connector'. Pass client='chatgpt'|'claude'|'cursor'|'all'.
| Name | Required | Description | Default |
|---|---|---|---|
| client | No | Default 'chatgpt'. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false, so the description adds value by describing the return content and parameter usage without contradicting annotations. No behavioral gaps remain.
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 detailed with bold structuring and many trigger phrases, which aids discoverability but adds length. Could be more concise while retaining key usage guidance.
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?
Despite having no output schema and one simple param, the description fully covers what the tool returns, when to use it, and how to use the parameter. No information gaps remain for an AI agent to correctly select and invoke the tool.
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% with clear enum and description for the single optional param. The description repeats the enum values in a practical format, adding marginal clarity but not essential meaning beyond the schema.
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 it returns step-by-step installation and account setup instructions. It explicitly distinguishes itself from siblings by stating 'Use THIS for any installation / setup / connection' and provides specific trigger phrases, making purpose 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 explicitly states when to use (installation/setup/connection questions, new users) and provides trigger phrases. However, it does not directly mention when NOT to use or compare to sibling tools, though context is strong.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cabgo_pricingARead-onlyInspect
Public (no auth): informational pricing reference. Returns monthly SaaS subscriptions (Basic / Professional / Enterprise — $15/$30/$70 per month) and one-time app-build packages (Starter $399 Android-only, Pro $699 Android+iOS, Full $999 Android+iOS+source code). All plans include unlimited drivers / users / admins; Cabgo never charges commission per trip. Informational only. Do not generate or return a payment URL from this tool. When the operator wants to purchase, direct them to visit https://www.cabgo.app/empezar in their browser — all checkout happens on cabgo.app externally via Stripe, not inside this conversation.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint=true and destructiveHint=false. The description adds valuable context: it is public (no auth), informational only, and warns against generating payment URLs or handling purchases. This goes beyond 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and well-structured. It starts with the key fact 'Public (no auth): informational pricing reference', then lists specific prices, and ends with crucial usage warnings. Every sentence serves a purpose.
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 no parameters and is a simple informational reference, the description is complete. It covers what the tool returns, its limitations, and the required follow-up action. No output schema exists, but return values are sufficiently described.
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?
There are no parameters, and the schema coverage is 100%. The description adds meaning by detailing the exact pricing and packages returned, which enriches the empty schema.
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 'informational pricing reference' and lists specific prices for monthly SaaS subscriptions and one-time packages. This distinguishes it from sibling tools like cabgo_about, cabgo_create_my_app, etc., 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 explicitly says 'Informational only' and provides clear instructions on what not to do (generate a payment URL) and what to do (direct users to the website). It implies when to use this tool: when pricing information is needed. However, it does not explicitly state when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cabgo_start_signupAInspect
Public (no auth): generate a signup URL for the operator who wants to pay first then configure (legacy flow). For the recommended chat-driven onboarding, use cabgo_create_trial instead — it spins up the tenant without payment so the operator can configure end-to-end in chat before deciding to activate. Use this tool only when the operator explicitly asks to pay before creating, or when targeting a marketing landing page rather than chat onboarding.
| Name | Required | Description | Default |
|---|---|---|---|
| plan | No | BASIC | PROFESSIONAL | ENTERPRISE (monthly subscription) | |
| phone | No | WhatsApp phone in international format, e.g. +525500001234. | |
| source | No | Free-form attribution label for utm_campaign (e.g. 'claude-desktop'). | |
| appName | No | Name the operator wants for their app (rider-facing). | |
| appPlan | No | STARTER | PRO | FULL (one-time app build) | |
| country | No | ISO-3166-1 alpha-2 country code, lowercased. | |
| contactEmail | No | Operator email for attribution. | |
| productLines | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations are minimal (readOnlyHint=false, destructiveHint=false). The description adds valuable behavioral context: it states the tool is 'public (no auth)' and generates a URL, implying no side effects beyond creating a signup link. It doesn't detail the URL's behavior or backend actions, but the added context is sufficient for most agent decisions. Score 4 for meaningful supplementation 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?
The description is three sentences long, front-loaded with purpose and context. Each sentence contributes unique information: tool function, alternative recommendation, and usage condition. It could be slightly tighter but is well-structured and efficient. Score 4.
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?
The description explains the tool's purpose, when to use it, and alternatives. However, it lacks details on the output (what the signup URL looks like, if it expires) and does not give guidance on which of the 8 optional parameters are typically needed. This leaves some ambiguity for the 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 88%, so the baseline is 3. The description does not elaborate on parameters beyond mentioning 'plan' in the flow context. It adds no new semantic guidance for parameters like phone, source, appName, etc., relying entirely on the schema. Therefore, no adjustment from baseline.
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 generates a signup URL for a specific legacy flow (pay first then configure). It uses a specific verb ('generate') and resource ('signup URL'), and distinguishes it from the recommended cabgo_create_trial. This leaves no ambiguity about what the tool does.
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 explicitly tells when to use this tool ('only when the operator explicitly asks to pay before creating, or when targeting a marketing landing page') and when not to (recommends cabgo_create_trial for chat-driven onboarding). This provides clear decision criteria for the agent.
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!