AgentsKit Registry
Server Details
Discover open-source AI agents and get source-owned installation instructions through MCP.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- AgentsKit-io/agentskit-registry
- GitHub Stars
- 4
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.9/5 across 4 of 4 tools scored.
The tools are mostly distinct: get_agent retrieves full details, get_install_command provides installation info, list_agents gives a simple listing, and search_agents offers advanced filtering. Some overlap exists between list_agents and search_agents (both can filter by category), but the descriptions clarify the different intentions.
All tool names follow a consistent verb_noun pattern using snake_case: get_agent, get_install_command, list_agents, search_agents. The naming is predictable and uniform.
With 4 tools, the server is well-scoped for a read-only registry. Each tool serves a distinct purpose (listing, searching, fetching details, and getting installation instructions), and the count feels intentional without unnecessary additions.
The tool surface fully covers the apparent domain of browsing and retrieving agents from a registry. It supports discovery (list/search), detailed inspection (get_agent), and actionable usage (get_install_command). No obvious missing operations for a read-only registry.
Available Tools
4 toolsget_agentAInspect
Get the full bundle for one agent: metadata, env, skill, and source files.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
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 this is a read-only retrieval (implied by 'Get') and specifies the exact components included in the response (metadata, env, skill, source files). It does not describe error handling, authentication, or side effects, but the return content is a meaningful behavioral disclosure.
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, compact sentence with the primary verb upfront. It enumerates the bundle components efficiently without any redundancy, earning its place for each word.
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 one-parameter get tool, the description provides the core purpose and lists the response contents. However, with no output schema or annotations, it lacks behavioral details such as error responses or permission requirements, and the response structure is only implied, leaving some gaps 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?
The schema provides only a string parameter 'id' with no description (0% coverage). The description adds that this is for 'one agent', clarifying that 'id' is the agent identifier. It does not provide format constraints or guidance on obtaining the id, but for a single parameter, this is sufficient.
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 specifies the action (Get), the target resource (full bundle for one agent), and enumerates the bundle contents (metadata, env, skill, source files). This distinguishes it from sibling tools like list_agents or search_agents, which would not provide the full bundle.
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 this tool is for retrieving the complete data for a single agent, contrasting with list_agents (overview) and search_agents (filtered). However, it does not explicitly name alternatives or state when not to use this tool, but the context is clear enough for an agent to decide.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_install_commandAInspect
Get the exact install command and a usage snippet for an agent.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It only mentions the output content ('install command and a usage snippet') but does not disclose whether the operation is read-only, any side effects, permissions, rate limits, or output format. This leaves agents without important behavioral context.
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 sentence, front-loaded with the action ('Get'), and contains no redundant information. It is concise and well-structured, earning top marks for efficiency.
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 tool with one parameter and no output schema, the description provides a minimal but functional overview. However, it lacks information about the output structure, potential errors, or prerequisites for the id, leaving gaps that could cause misuse. It is adequate but not fully 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?
The schema defines a single required string 'id' with no description (0% coverage). The description's 'for an agent' implies that 'id' refers to an agent identifier, adding some meaning. However, it does not specify how to obtain the id, any format constraints, or examples, so the description only partially compensates for the schema's lack of context.
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 'Get the exact install command and a usage snippet for an agent' clearly states a specific verb (Get) and resource (install command and usage snippet) with a clear scope (for an agent). This distinguishes it from sibling tools like get_agent, list_agents, and search_agents, making its 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 implies the tool should be used when needing an install command for a particular agent, but it does not explicitly state when to use it versus alternatives like get_agent or search_agents, nor does it provide exclusions or contextual guidance. Usage guidance is present only by implication.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_agentsAInspect
List all agents in the AgentsKit registry. Optionally filter by category.
| Name | Required | Description | Default |
|---|---|---|---|
| category | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the behavioral transparency burden. It states the core behavior (list all, filter by category) but omits details such as pagination, permissions, or whether results are summaries or full objects. Acceptable but with gaps.
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?
One concise sentence (12 words) that front-loads the action and includes the key optional behavior. 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?
For a simple list tool with one optional parameter, the description covers the main purpose and parameter semantics. It omits return value details, but the absence of an output schema makes this less critical. Complete enough for a low-complexity 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 defines 'category' only as a string with no description. The description adds meaning by explaining it as an optional filter, significantly enhancing the agent's understanding beyond the bare 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?
Clearly states 'List all agents in the AgentsKit registry' – a specific verb and resource. Differentiates from siblings like get_agent (fetches single) and search_agents (targeted search) by explicitly indicating it lists all.
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 clear usage context: use to list all agents, optionally filtered by category. However, does not explicitly mention when to prefer it over search_agents or get_agent, though the purpose itself implies the distinction.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_agentsAInspect
Search agents by free-text query, category, tag, or runnable flag.
| Name | Required | Description | Default |
|---|---|---|---|
| tag | No | ||
| query | No | ||
| category | No | ||
| runnable | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the full burden. While it lists the search dimensions, it does not disclose what the tool returns (e.g., a list of agents, full details), whether it is a read-only operation, or any pagination or permission constraints. The description is too thin to fully inform the agent about behavioral outcomes.
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, concise sentence that front-loads the action and enumerates the search filters. Every word earns its place, with no redundancy or filler.
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 tool has no output schema and no annotations, so the description is the main source of context. It adequately describes the search functionality but omits information about the return format, result limits, or how it relates to list_agents. For a simple search tool, this is minimally sufficient but leaves 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%, so the description must compensate. It does by naming each parameter's role: 'free-text query' maps to query, 'category' to category, 'tag' to tag, and 'runnable flag' to runnable. This adds meaning beyond the bare parameter names, though it lacks specific value formats or examples.
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 function: 'Search agents by free-text query, category, tag, or runnable flag.' It uses a specific verb ('search') and identifies the resource ('agents') and the filtering dimensions. This distinguishes it from siblings like get_agent (specific agent retrieval) and list_agents (listing all agents).
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 context on what the tool does, implying it should be used when filtering agents by criteria such as query, category, tag, or runnable status. However, it does not explicitly contrast with alternatives like list_agents or get_agent, nor does it provide exclusions. It is clear but lacks explicit when-not guidance.
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!
Related MCP Servers
- Alicense-qualityBmaintenanceAI-first MCP server discovery tool that enables agents to search, inspect, and install MCP servers from multiple registries.Last updated12AGPL 3.0
- Alicense-qualityCmaintenanceA discovery tool for AI agents to search, evaluate, and install MCP servers from multiple registries.Last updated1MIT

agentskill-mcpofficial
AlicenseAqualityFmaintenanceMCP server for discovering and installing AI agent skills from agentskill.sh. Search skills across platforms, browse trending skills, and install them with built-in security scanning.Last updated4193MIT- AlicenseAqualityAmaintenanceMCP server that searches 3,800+ open-source AI agents by capability, ranked by real traction (stars, activity). Query it from Claude Desktop, Cursor, Cline, or Windsurf.Last updated345MIT