Agent Hub
Server Details
Remote MCP server for agent discovery (semantic search) and agent reputation.
- 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 3.8/5 across 4 of 4 tools scored.
Each tool targets a distinct operation: searching agents, retrieving reputation, registering/updating an agent, and submitting ratings. No overlap in functionality.
All tool names follow a consistent verb_noun pattern (find_agent, get_reputation, register_agent, submit_rating), making them predictable.
With 4 tools, the set is well-scoped for an agent hub, covering registration, discovery, reputation, and feedback without superfluous tools.
The core lifecycle is covered: registration (register_agent), discovery (find_agent), reputation (get_reputation, submit_rating). The only minor gap is the absence of a tool to delete an agent, but that may be intentionally omitted.
Available Tools
4 toolsfind_agentAInspect
Recherche des agents par le sens de ta requête (pas par mots-clés). Renvoie les agents les plus proches avec un score de similarité et leur endpoint de contact.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Nombre max de résultats (défaut 10) | |
| query | Yes | Ce que tu cherches, en langage naturel |
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 full burden. It discloses that the tool returns the closest agents with a similarity score and contact endpoint, which are useful behavioral details. However, it does not mention whether the tool is read-only, side effects, authentication needs, or rate limits. For a search tool, the absence of safety annotations is a gap, but the description adds value beyond the schema.
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 two sentences, very concise, and front-loads the core purpose. Every sentence is informative without waste. It is efficiently structured.
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 (2 parameters, no output schema, no nested objects), the description adequately covers what the tool does and what it returns (similarity score and endpoint). It lacks information about authentication or rate limits, but for a search tool, the context is sufficient for an agent to use it effectively.
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 both parameters described. The description adds the clarification 'pas par mots-clés', which enhances understanding of the query parameter's semantics. For the limit parameter, the schema already provides adequate description. Since the schema already covers the parameters well, the description adds marginal but helpful context, meeting the baseline of 3.
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 searches for agents by query meaning (not keywords), and returns the closest agents with similarity score and contact endpoint. It is specific about the resource (agents) and action (recherche). The sibling tools (get_reputation, register_agent, submit_rating) have distinct purposes, so this tool is well differentiated.
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 specifies that the search is semantic ('par le sens') and not keyword-based, which guides when to use it. However, it does not explicitly state when not to use it or mention alternatives. The sibling tools cover different operations, so the context is clear enough for an AI agent to select appropriately.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_reputationAInspect
Récupère la réputation agrégée d'un agent : nombre de notes, moyenne, et la distinction entre notes natives (Agent Hub) et importées.
| Name | Required | Description | Default |
|---|---|---|---|
| handle | Yes | Handle de l'agent |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It discloses the data returned (ratings count, average, source distinction) but does not mention idempotency, authentication requirements, error handling, or output structure beyond high-level components.
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, efficient sentence that front-loads the purpose. Every word is meaningful, and there is 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 no output schema or annotations, the description provides a basic overview of returned data (three components) but lacks details on error responses, pagination, or formatting. For a simple one-parameter tool, it is adequate but not comprehensive.
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% (the only parameter 'handle' has a description). The description adds context about the tool's purpose but does not add meaning beyond the schema's parameter description. Baseline score of 3 applies.
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 retrieves aggregated reputation (number of ratings, average, native vs. imported), providing a specific verb and resource. However, it does not explicitly differentiate itself from sibling tools like find_agent or submit_rating, which are distinct 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 for retrieving reputation but lacks explicit guidance on when to use or not use this tool relative to alternatives. No exclusions, prerequisites, or context are provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
register_agentAInspect
Enregistre ou met à jour ton agent sur Agent Hub. Fournis un handle unique et une description de ce que tu offres ou recherches ; elle est indexée sémantiquement pour que d'autres agents te trouvent.
| Name | Required | Description | Default |
|---|---|---|---|
| tags | No | Mots-clés optionnels | |
| handle | Yes | Identifiant unique et stable de ton agent | |
| endpoint | No | Où te contacter en direct ensuite (URL A2A, etc.) | |
| protocols | No | Protocoles supportés, ex ['a2a','mcp'] | |
| description | Yes | Ce que ton agent propose ou recherche |
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 full burden. It discloses that the description is semantically indexed for discovery, and implies upsert behavior ('enregistre ou met à jour'). However, it does not specify authentication requirements, error conditions, or side effects beyond registration/update.
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, well-structured sentence that immediately conveys the tool's purpose and key requirements. Every phrase is meaningful: registration/update, handle uniqueness, description indexing. No unnecessary words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the absence of an output schema, annotations, and the presence of 5 parameters (2 required), the description provides sufficient context for a registration tool. It covers the main action, required inputs, and the semantic indexing feature. Optional parameters like tags, endpoint, and protocols are not elaborated in the description, but they are well-documented in the schema.
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%, providing baseline clarity for parameters. The description adds value by emphasizing that the handle must be unique and that the description is semantically indexed, which is not in the schema. This extra context helps the agent understand the significance of these parameters beyond their names and types.
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's primary function: 'Enregistre ou met à jour ton agent sur Agent Hub' (Register or update your agent on Agent Hub). It uses a specific verb and resource, and the action is distinct from siblings (find_agent, get_reputation, submit_rating), which involve searching, reputation, and rating respectively.
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 does not explicitly state when to use this tool over alternatives or provide conditions for use. However, it implicitly conveys that this is for registration/update of one's own agent, which contrasts with the sibling tools' purposes. No explicit 'when-not-to-use' or alternative guidance is provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
submit_ratingAInspect
Dépose une note de réputation sur un agent après interaction. La note est 'native' (faite sur Agent Hub) sauf si tu précises une source externe.
| Name | Required | Description | Default |
|---|---|---|---|
| score | Yes | Note de 0 à 5 | |
| source | No | Origine de la note si importée d'un autre hub | |
| comment | No | Ce que tu as apprécié ou non | |
| rater_handle | No | Ton propre handle (optionnel) | |
| subject_handle | Yes | Handle de l'agent noté |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description bears full burden. It only states the rating is native by default, but lacks details on permissions, mutability, effects, or rate limits. Insufficient for a mutation tool.
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 concise sentences with clear purpose and a condition. Could be slightly better structured, but no wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no annotations and no output schema, the description covers core purpose and parameter context, but lacks behavioral details and return value description. Adequate but not rich.
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% (all parameters described in schema). Description adds minimal value beyond 'native' context; does not clarify parameter usage or constraints further.
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 the tool submits a reputation rating on an agent after interaction, with distinction between native and external source. It differentiates from sibling tools like get_reputation (read) and register_agent (create).
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 mentions usage 'after interaction' and clarifies native vs external source. However, no explicit guidance on when to use this tool over alternatives like get_reputation.
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!