MCP Registry Server
Server Details
Publish and discover MCP servers via the official MCP Registry. Powered by HAPI MCP server.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- modelcontextprotocol/registry
- GitHub Stars
- 6,314
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.7/5 across 3 of 3 tools scored.
Each tool has a clearly distinct purpose: listing all servers, listing versions for a specific server, and getting details for a specific server version. The hierarchical structure (servers → server → version) eliminates any ambiguity, making it easy for an agent to select the right tool based on the required granularity.
All tool names follow a consistent pattern: they start with 'getV01Servers' and use a hierarchical path structure (e.g., 'ServerNameVersions', 'ServerNameVersionsVersion'). This reflects a RESTful API design with clear, predictable naming that matches the resource hierarchy, making it easy to infer functionality from the name alone.
With 3 tools, the server is well-scoped for its purpose of querying an MCP registry. It covers the essential operations: listing servers, listing versions, and getting version details. This count is appropriate as it provides complete coverage without unnecessary complexity, fitting typical registry use cases efficiently.
The tool set offers complete coverage for querying an MCP registry, with no obvious gaps. It supports listing all servers, drilling down to versions for a specific server, and retrieving detailed information for a specific version (including the latest). This covers the full lifecycle of registry lookup operations without dead ends.
Available Tools
3 toolsgetV01ServersList MCP serversBRead-onlyInspect
List MCP servers - Returns a list of all registered MCP servers
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| cursor | No | ||
| search | No | ||
| version | No | ||
| updated_since | No |
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 agent knows this is a safe read operation. The description adds that it returns 'a list of all registered MCP servers', which provides basic output context, but doesn't disclose behavioral traits like pagination behavior, rate limits, or authentication requirements beyond what annotations cover.
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 with just two short phrases that directly state the tool's purpose and output. Every word earns its place with no redundancy or unnecessary elaboration.
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 complexity (5 parameters, no output schema), the description is minimal but covers the basic purpose. Annotations provide safety information, but the description lacks details about parameter usage, output format, or how it relates to sibling tools, making it adequate but with clear gaps.
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 schema provides no parameter documentation. The description doesn't mention any parameters, so it adds no semantic value beyond what the schema already lacks. However, since there are 5 parameters with no schema descriptions, the baseline is low, but the description doesn't compensate for this 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 clearly states the tool's purpose with 'List MCP servers' and specifies it returns 'a list of all registered MCP servers'. It distinguishes from sibling tools by focusing on listing servers rather than versions, though it doesn't explicitly name the siblings for comparison.
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 no guidance on when to use this tool versus the sibling tools (getV01ServersServerNameVersions and getV01ServersServerNameVersionsVersion). It doesn't mention any prerequisites, alternatives, or contextual usage scenarios.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
getV01ServersServerNameVersionsList all versions of an MCP serverARead-onlyInspect
List all versions of an MCP server - Returns all available versions for a specific MCP server, ordered by publication date (newest first)
| Name | Required | Description | Default |
|---|---|---|---|
| serverName | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false, indicating a safe read operation. The description adds behavioral context beyond annotations by specifying the ordering (newest first) and that it returns all available versions, which is useful but does not cover aspects like pagination, error handling, or authentication needs.
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 concise sentences with zero waste: the first states the purpose, and the second adds key behavioral details (ordering and scope). It is front-loaded and appropriately sized for the tool's complexity.
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 low complexity (1 parameter, no output schema) and rich annotations covering safety, the description is mostly complete. It adds ordering and scope details, but could benefit from mentioning potential outputs or error cases, though not strictly required without an output 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?
The input schema has 1 parameter with 0% description coverage, so the description carries full burden. It adds meaning by explaining that 'serverName' is used to specify the MCP server for which versions are listed, clarifying the parameter's role beyond the schema's basic type definition.
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 ('List') and resource ('all versions of an MCP server'), specifying it returns all available versions for a specific server ordered by publication date. It distinguishes from sibling tools: 'getV01Servers' likely lists servers, not versions, and 'getV01ServersServerNameVersionsVersion' likely retrieves a specific version.
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 context by specifying it's for a specific MCP server, but does not explicitly state when to use this tool versus alternatives like the sibling tools. It provides clear context (list versions for a server) but lacks explicit exclusions or named alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
getV01ServersServerNameVersionsVersionGet specific MCP server versionARead-onlyInspect
Get specific MCP server version - Returns detailed information about a specific version of an MCP server. Use the special version latest to get the latest version.
| Name | Required | Description | Default |
|---|---|---|---|
| version | Yes | ||
| serverName | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false, indicating a safe read operation. The description adds useful context about the 'latest' special value, which isn't covered by annotations. However, it doesn't disclose other behavioral traits like error handling, rate limits, or authentication needs, leaving gaps in transparency despite the annotations providing basic safety info.
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 highly concise and well-structured: two sentences with zero waste. The first sentence states the purpose, and the second provides specific usage guidance. It's front-loaded with essential information and efficiently communicates key details without unnecessary elaboration.
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 low complexity (2 required parameters, no output schema, simple annotations), the description is minimally adequate. It covers the basic purpose and a special parameter case, but lacks details on parameter semantics, error conditions, or return format. With no output schema, the description should ideally hint at what 'detailed information' includes, but it doesn't, leaving some contextual gaps.
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%, meaning parameters 'serverName' and 'version' lack documentation in the schema. The description only adds meaning for 'version' by mentioning the 'latest' special value, but doesn't explain what 'serverName' represents or provide any format or constraints for either parameter. This is insufficient compensation for the low schema 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's purpose: 'Get specific MCP server version - Returns detailed information about a specific version of an MCP server.' It specifies the verb ('Get'), resource ('MCP server version'), and outcome ('detailed information'), but doesn't explicitly differentiate from its sibling 'getV01ServersServerNameVersions' which likely lists versions rather than getting details for a specific one.
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 guidance: 'Use the special version `latest` to get the latest version.' This indicates when to use a specific parameter value. However, it doesn't explicitly state when to use this tool versus its siblings (e.g., 'getV01Servers' for general server info or 'getV01ServersServerNameVersions' for listing versions), leaving some ambiguity in tool selection.
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!