ikhono
Server Details
The HUB of ai skills Publish, discover, and use AI agent skills across all platforms. Connect the MCP server once and every skill on the registry becomes instantly available — no local installation needed.
- 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.9/5 across 6 of 6 tools scored.
Each tool targets a distinct operation on skills (search, get, pin, unpin, list pinned, rate) with no overlap or ambiguity. An agent can clearly distinguish between them.
All tools follow a consistent 'ikhono_skill_<verb>' pattern with clear verb choices (search, get, pin, unpin, list_pinned, rate), making the naming predictable and easy to understand.
With 6 tools, the server is well-scoped for managing skills: search, retrieval, pinning/unpinning, listing favorites, and rating. Neither too few nor too many.
The tool surface covers the full lifecycle for a consumer of skills: discover (search), load (get), organize (pin/unpin, list pinned), and provide feedback (rate). No obvious gaps exist.
Available Tools
6 toolsikhono_skill_getAInspect
Load a skill from iKhono by its slug. Returns the full skill content (instructions, process, templates) that you should follow to complete the user's task. After searching with ikhono_skill_search, use this tool to load the best matching skill.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | The skill slug (e.g., "@alice/security-reviewer"). Get this from ikhono_skill_search results. |
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 full skill content (instructions, process, templates), which is useful behavioral info. However, it does not mention potential errors or side effects; adequate but not rich.
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, no wasted words. The first sentence defines the core action, and the second provides usage context. Perfectly front-loaded.
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 read tool with one parameter, the description adequately covers purpose, output, and usage flow. It could mention error handling for invalid slugs, but the tool's simplicity makes this a minor omission.
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 covers the single parameter fully (100% coverage), but the description adds value by specifying where to obtain the slug ('Get this from ikhono_skill_search results') and providing an example format. This goes beyond the schema's description.
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 action ('Load a skill'), the resource ('from iKhono by its slug'), and the output ('returns the full skill content...'). It distinguishes from siblings like ikhono_skill_search by mentioning the search precursor.
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 instructs to use this tool after searching with ikhono_skill_search, providing a clear workflow. It does not list all alternatives, but the context is clear enough for the agent.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
ikhono_skill_list_pinnedAInspect
List all skills the user has pinned. Returns pinned skills with their names, descriptions, and ratings.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It discloses return contents (names, descriptions, ratings) but is silent on authentication, rate limits, or pagination. For a simple list tool, this is adequate but not transparent beyond basics.
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, no wasted words. Front-loaded with purpose. Perfectly concise for a simple list tool.
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 parameters or output schema, the description covers the essential return fields. It lacks ordering or filtering info, but for a simple list of pinned items, it is reasonably complete.
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 zero parameters, so baseline is 4. The description adds value by stating what is returned, but no parameter details are needed.
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 lists pinned skills and what is returned. It distinguishes from siblings like ikhono_skill_search which searches all skills, and ikhono_skill_pin/unpin which manage pinning.
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 provide explicit guidance on when to use this tool versus alternatives. It assumes the agent understands the context of pinned skills, but no when-not or alternative mentions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
ikhono_skill_pinAInspect
Pin a skill to the user's favorites so it's always available. Pinned skills are shown in the user's profile.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | The skill slug to pin (e.g., "@alice/security-reviewer") |
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 explains the outcome (skill pinned and shown in profile) but lacks details on side effects, permissions, rate limits, or limits on number of pinned skills.
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, front-loaded with the action. No unnecessary words, every sentence adds value.
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 pin tool with one parameter, the description is fairly complete. No output schema exists, but the description covers the outcome. Minor gap: no mention of idempotency or limits.
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 one parameter (slug) well-described. The description adds no additional meaning beyond the schema, so baseline 3 is appropriate.
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 action (pin), resource (skill), and effect (always available, shown in user profile). It effectively distinguishes from sibling tools like unpin and list_pinned.
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 use for saving skills to favorites but does not explicitly state when to use this tool vs alternatives like list_pinned or unpin. No guidance on prerequisites or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
ikhono_skill_rateAInspect
Rate a skill after using it. Helps the community discover the best skills.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | The skill slug to rate (e.g., "@alice/security-reviewer") | |
| stars | Yes | Rating from 1 to 5 stars | |
| review | No | Optional text review |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It indicates a write operation ('rate') but does not disclose side effects, whether ratings can be updated, or if they affect averages. Lacks clarity on permanence and permissions.
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 concise sentence that front-loads the action and purpose. Every word serves a purpose—no fluff or 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?
The description covers basic purpose and timing, but lacks details on outcomes (e.g., overwriting existing ratings, averaging) and any required authentication. For a simple tool with no output schema, it is minimally adequate but missing some behavior.
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 100% coverage, so description adds minimal value beyond the schema. It does not explain nuances or constraints beyond what the schema already provides (e.g., star range, slug format). Baseline 3 is appropriate.
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 action ('Rate') and the resource ('a skill'), and ties it to community benefit. It distinguishes from sibling tools like ikhono_skill_get, ikhono_skill_search, and ikhono_skill_pin by focusing on rating after use.
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 'after using it' as the context for use, but does not explicitly state when not to use it or provide alternatives. Sibling tools exist for other operations, but no comparative guidance is given.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
ikhono_skill_searchAInspect
Search iKhono for AI skills that match a query. Use this when the user asks you to do something that could benefit from specialized expertise. Returns a list of matching skills with their names, descriptions, ratings, usage counts, and pin counts.
| Name | Required | Description | Default |
|---|---|---|---|
| mine | No | Set to true to show only your own skills (requires authentication) | |
| limit | No | Maximum number of results to return | |
| query | No | Search query to find relevant skills (e.g., "security review", "write tests", "api docs"). Leave empty when using mine or author filters to list all matching skills. | |
| author | No | Filter by author username (e.g., "@alice" or "alice") | |
| category | No | Filter by category (e.g., "security", "testing", "documentation") |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description bears full responsibility for behavioral disclosure. It indicates a read-only search operation and lists return fields, but lacks details on authentication requirements (implied by 'mine' parameter), rate limits, or output structure beyond field names.
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 paragraph of three sentences, each earning its place: functionality, usage context, and return fields. It is front-loaded with the core action and avoids 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, the description adequately lists returned fields (name, description, ratings, usage counts, pin counts). However, it omits details like default ordering, maximum limit, or error handling, leaving minor gaps for a search tool with 5 parameters.
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%; the tool description adds no additional meaning beyond what the schema already provides for each parameter. The description's mention of return fields relates to output, not parameters, so baseline 3 is appropriate.
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 action ('Search iKhono'), the resource ('AI skills'), and the purpose ('match a query', 'when the user asks...to benefit from specialized expertise'). It distinguishes from sibling tools like get (retrieve one skill) and list_pinned (list pinned), making it unique.
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 advises to 'use this when the user asks you to do something that could benefit from specialized expertise,' providing clear context. However, it does not mention when not to use it or compare to alternatives, which would strengthen guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
ikhono_skill_unpinAInspect
Remove a skill from the user's pinned favorites.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | The skill slug to unpin |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. Only states 'Remove' without detailing side effects (e.g., behavior if skill not pinned, authentication needs, or response).
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?
Single sentence directly states the action with no superfluous words. Front-loaded with verb and resource.
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 tool with no output schema or nested objects, the description is sufficient to understand the task. Could mention return value or failure conditions, but not critical.
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?
Input schema has 100% coverage with clear parameter description for 'slug'. Tool description adds no extra meaning beyond the schema, meeting 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?
Description uses specific verb 'Remove' and identifies the resource 'skill from the user's pinned favorites'. It clearly distinguishes from sibling tools like ikhono_skill_pin and ikhono_skill_list_pinned.
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?
No explicit when or when-not instructions. The description implies usage as the inverse of pinning, but lacks guidance on prerequisites or alternative tools.
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!