AgentPort Discovery
Server Details
Resolve goals to machine-capable businesses and execution paths with discovery tools.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Available Tools
3 toolsbusiness.getGet an AgentPort businessARead-onlyIdempotentInspect
Inspection step: resolve one discovered business by its stable AgentPort registry slug and inspect its exact published capability/action keys. For actionable requests, this is not final resolution; call capability.resolve after the relevant canonical keys are known.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already convey read-only, idempotent, non-destructive behavior, so the description adds useful context beyond that: the workflow stage, the stable-slug requirement, and the fact that the tool exposes exact published capability/action keys. This effectively explains what the call will return without contradicting 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?
Two sentences with no filler. The inspection-step framing is front-loaded, the core action is stated immediately, and the routing guidance to capability.resolve is placed at the end without 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 the absence of an output schema, the description does a good job indicating what can be learned from the result: exact published capability/action keys. Combined with clear workflow positioning and sibling differentiation, little is left ambiguous for such a simple single-parameter read-only 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 description coverage is 0%, but the description supplies important meaning for the single parameter: slug is a stable AgentPort registry slug for a discovered business. This tells the agent to use a canonical identifier from a prior discovery step rather than arbitrary text, complementing the schema's format pattern.
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 resolves and inspects a business by its stable AgentPort registry slug, with a specific purpose: to view exact published capability/action keys. It also distinguishes itself from capability.resolve by explicitly noting this is not final resolution for actionable requests.
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 frames the tool as an 'inspection step' and tells the agent to call capability.resolve after canonical keys are known for actionable requests. It also implicitly scopes usage to already-discovered businesses, indicating business.search would be the discovery path.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
business.searchSearch AgentPort businessesARead-onlyIdempotentInspect
Find real businesses with published AgentPorts by natural-language need, location, and optional exact capability keys.
| Name | Required | Description | Default |
|---|---|---|---|
| city | No | ||
| limit | No | ||
| query | No | Natural-language business need, for example "collision repair that can book an appointment". | |
| region | No | State, province, or region code/name. | |
| latitude | No | ||
| radiusKm | No | ||
| longitude | No | ||
| countryCode | No | ||
| capabilities | No | Optional exact AgentPort capability keys that every result must expose. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already cover read-only, idempotent, open-world, and non-destructive behavior. The description adds a scope constraint (only real, published AgentPorts) and exact capability filtering, but does not describe result shape or pagination, so value beyond annotations is moderate.
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 with no filler. The action, scope, and search dimensions are all stated efficiently, and every phrase carries meaning.
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 search tool with nine optional parameters and no output schema, the description is adequate but not complete. It gives the search concept but omits return-format expectations and the mechanics of combining location filters, so an agent would need schema details or examples for full confidence.
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 only 33% schema description coverage, the description partially compensates by grouping parameters into 'natural-language need,' 'location,' and 'capability keys.' However, it does not explain individual location options (city, region, lat/lon, radius, country) or the limit parameter, leaving a meaningful semantic gap.
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 names a specific action ('Find'), a concrete resource ('real businesses with published AgentPorts'), and the search dimensions: natural-language need, location, and capability keys. This clearly distinguishes it from business.get (retrieval by ID) and capability.resolve (capability lookup).
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 gives a clear use context: discovery of businesses by need, place, and capability filters. It does not explicitly state when to prefer business.get or capability.resolve, so it stops short of full alternatives guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
capability.resolveResolve an executable capabilityARead-onlyIdempotentInspect
Final discovery step for actionable goals: resolve a structured user goal to ranked machine-capable resources and provider-owned execution paths without executing the selected action. Use this after business.search/business.get whenever the user asks whether a provider can expose a machine-capable action or execution path. Any requiredCapabilities/preferredCapabilities/desiredActions/preferredActions values must be exact canonical AgentPort keys already published by a provider; never invent keys. If exact keys are unknown, use business.search and business.get first.
| Name | Required | Description | Default |
|---|---|---|---|
| intent | Yes | ||
| location | No | ||
| constraints | No | ||
| preferences | No | ||
| schemaVersion | No | ||
| desiredActions | No | Exact canonical AgentPort action keys already published by a provider (for example appointment.get_availability or appointment.create). Never invent or infer keys; discover them with business.search/business.get first when unknown. | |
| desiredOutcome | No | ||
| preferredActions | No | Exact canonical AgentPort action keys already published by a provider. Never invent or infer keys. | |
| executionRequired | No | ||
| requiredCapabilities | No | Exact canonical AgentPort capability keys already published by a provider. Never invent or infer keys; discover them with business.search/business.get first when unknown. | |
| preferredCapabilities | No | Exact canonical AgentPort capability keys already published by a provider. Never invent or infer keys. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds behavioral context beyond the annotations: it explicitly states 'without executing the selected action', reinforcing readOnlyHint, and explains the 'ranked' output and 'never invent keys' constraint. No contradictions with the readOnlyHint, openWorldHint, idempotentHint, or destructiveHint 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 four sentences, each contributing a distinct point (purpose, usage context, key constraint, fallback). It is information-dense without being bloated, though it could be slightly streamlined without losing meaning.
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 nested objects and no output schema, the description covers the core decision framework: when to call, what not to do (never invent keys), and how to discover valid keys. However, it omits semantics for several parameters like 'constraints' and 'preferences', leaving some ambiguity for correct full invocation.
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 description meaningfully clarifies the four array parameters by requiring 'exact canonical AgentPort keys' and naming business.search/business.get for discovery. However, with schema description coverage at 36%, it does not explain the required 'intent' parameter, nor the 'constraints', 'preferences', 'desiredOutcome', or 'executionRequired' fields, which remain ambiguous.
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 states a specific verb ('resolve') and resource ('structured user goal to ranked machine-capable resources and provider-owned execution paths'), and is explicitly positioned as the 'final discovery step' distinct from business.search/business.get. This makes it clear what the tool does and how it differs from its siblings.
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 'Use this after business.search/business.get whenever the user asks whether a provider can expose a machine-capable action or execution path' and directs users to 'If exact keys are unknown, use business.search and business.get first.' This provides clear when-to-use and when-not-to-use instructions with named alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
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 or an account that owns the GitHub organization, then choose Claim with GitHub.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
Discover MCP endpoints for real-world entities by resolving business domains.
Discover, route and verify AI-agent outcomes with success-only charging and capability fallback.
Machine-native capabilities with explicit contracts and machine-readable commerce.
Intent execution engine for autonomous agent task routing
Related MCP Servers
- AlicenseNot gradedqualityBmaintenanceTakes a plain-language automation goal and returns a recommended tool stack, command, validation checks, recovery guidance, and a machine-readable package contract for agents and builders.MIT
- AlicenseNot gradedqualityAmaintenanceProvides deterministic search, load, and execution operations for progressively disclosing agent capabilities (skills, MCP, CLI, HTTP/API, RAG). Enables scope-bound reference access with budgets and audit.MIT
- -licenseNot gradedqualityBmaintenanceEnables local deterministic discovery, validation, and selection of validated skills through MCP tools, producing consistent plans without executing any skill.
- -licenseNot gradedqualityBmaintenanceEnables models to discover, inspect, and call tools from thousands of MCP servers on the fly through a single gateway, without pre-configuring each server.
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Each tool has a clearly distinct role: business.search finds candidates, business.get inspects a specific business's published capability keys, and capability.resolve maps a structured goal to execution paths. There is no meaningful overlap between them.
All tool names follow the same [domain].[verb] pattern: business.get, business.search, capability.resolve. The naming is consistent, readable, and predictable.
Three tools is well-scoped for a focused discovery server: search, inspect, and resolve. Each tool earns its place in the workflow without redundancy.
The tool surface covers the full discovery lifecycle: finding businesses, examining exact capability keys, and resolving actionable goals to execution paths. The cross-references between tools prevent dead ends and guide agents to the correct sequence.