Sharebench
Server Details
Sharebench — search & pull AI skills, agents, prompts & playbooks (SKILL.md) into any MCP client
- 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 4.8/5 across 2 of 2 tools scored.
search is for finding artifacts and returns metadata, while get_by_id retrieves the full content of a single artifact. Their purposes are fully distinct with no overlap, and the descriptions explicitly reference each other to form a clear two-step flow.
Both tools use snake_case and are readable, but one is a bare verb ('search') while the other follows a verb_preposition_noun pattern ('get_by_id'). This is a minor inconsistency but not confusing.
With only two tools, the server feels quite thin. The read-only search-and-fetch scope justifies a small set, but it is on the borderline of being too minimal for a tool server.
The server only supports searching and fetching artifacts. There are no tools for creating, updating, deleting, or contributing artifacts, despite the descriptions hinting at 'contributing' as a use case. This is a significant functional gap.
Available Tools
2 toolsget_by_idAInspect
Fetch the full SKILL.md content and metadata for a single artifact. Provide EXACTLY ONE of artifactId (the UUID returned by search) or slug (the URL-safe identifier, e.g. from a /p/<slug> link). Passing both or neither returns a validation_failed error. Use this after search to retrieve the body of a hit the user wants to read, summarize, apply, or fork. Returns the artifact's name, description, type, contributor, version, timestamps, the full SKILL.md text (YAML frontmatter + markdown body, up to 256 KB), the number of bundled extras (bundledCount), their filenames (bundledFilenames), per-file metadata in bundledFiles (each entry has key, filename, and originalRef — the EXACT body-relative reference string the importer matched, or null when the file was bundled without a body reference; use this to translate a link span in the body back to its bundle filename), and the public-surface fields slug, authorCredit, industries. To fetch a bundled extra, read it as a resource at artifact://<artifactId>/bundled/<filename>.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | No | URL slug for the artifact (e.g. `brand-voice`). Take this from the `slug` field of a `search` result or a /p/<slug> link. Mutually exclusive with `artifactId`. | |
| artifactId | No | UUID of the artifact. Take this from the `artifactId` field of a `search` result. Mutually exclusive with `slug`. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden and fully delivers: it discloses the validation error behavior, the 256 KB size cap, the structure of bundled extras (`bundledCount`, `bundledFilenames`, `bundledFiles`, including `originalRef` semantics), and how to fetch a bundled extra via `artifact://` URI. This exceeds minimal expectations.
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 long but information-dense and well-structured: it starts with a clear thesis, then details usage, constraints, return fields, and bundle handling. Every sentence carries technical value, though some could be tightened without loss.
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, the absence of an output schema, and two optional but mutually exclusive parameters, the description is remarkably complete. It covers input validation, output shape, size limits, bundle metadata semantics, and follow-up resource URIs, leaving little ambiguity 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?
Schema coverage is 100% and both parameters already have detailed descriptions with mutual-exclusivity. The description adds practical sourcing context (take `artifactId`/`slug` from a `search` result or `/p/<slug>` link) and clarifies the exact error condition, going beyond the schema 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?
The description opens with a specific verb+resource: "Fetch the full SKILL.md content and metadata for a single artifact." It clearly distinguishes itself from the sibling `search` tool by focusing on retrieving one artifact's full content after search.
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 explicit usage guidance: exactly one of `artifactId` or `slug` must be provided, both/neither causes a `validation_failed` error, and states to use it after `search` to retrieve content the user wants to read, summarize, apply, or fork. This is strong when-to-use and what-not-to-do guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
searchAInspect
Search this workspace's published artifacts (skills, agents, workflows, and knowledge documents in SKILL.md format). Returns ranked metadata — name, description, type, contributor, timestamps, bundledCount, slug, authorCredit, and industries — but NOT the full body. To read an artifact's content, call get_by_id with the returned artifactId (or slug), or read it as a resource at artifact://<artifactId>. Use this whenever the user wants to find, discover, browse, or filter existing artifacts before reading or contributing. Modes: hybrid (default; combines lexical and semantic ranking via reciprocal rank fusion — best for most queries), bm25 (exact-keyword or name lookups), semantic (concept matching when the user's terms differ from artifact text). Pass industries: ['marketing', 'legal'] to narrow results to artifacts tagged with ANY of those industries (keyword-array overlap). If hybrid silently degrades because the embedding service is unavailable, the response's warnings array will contain embedding_degraded:hybrid-fell-back-to-bm25 — surface this to the user if precision matters.
| Name | Required | Description | Default |
|---|---|---|---|
| mode | No | Ranking strategy. Default: hybrid. | |
| type | No | Filter by artifact category. Omit for all types. | |
| limit | No | Maximum hits to return. Default: 20. | |
| query | Yes | Free-text query. Names, phrases, or natural-language concepts. | |
| offset | No | Pagination offset for navigating result sets. | |
| industries | No | Filter to artifacts tagged with ANY of these industry slugs (keyword-array overlap). Up to 5 values. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description fully discloses behavior: it returns only metadata (not full body), explains ranking modes and their trade-offs, and reveals the silent degradation scenario with the exact warning string and instructions to surface it. This goes well beyond a typical read-only tool description.
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 denser than the ideal two-sentence example but every sentence contributes: scope, return fields, usage, mode choices, and a warning fallback. It is front-loaded with the core purpose and well-structured, though slightly long; the detail is justified by 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?
For a 6-parameter tool with no output schema, the description covers return value composition, field list, exclusions (full body), navigation to `get_by_id`, mode semantics, industry filtering, and a fallback warning. No critical gaps remain for an agent to use the tool 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%, so baseline is 3. The description adds meaningful context for `mode` (explaining hybrid via reciprocal rank fusion, bm25 for exact matches, semantic for concept matching) and clarifies `industries` as 'keyword-array overlap' with ANY semantics. This exceeds schema-only information.
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 uses a specific verb ('Search') and clearly defines the resource scope ('this workspace's published artifacts') while enumerating artifact types. It distinguishes itself from the sibling tool by explicitly stating it returns metadata only, not the full body, and directs users to `get_by_id` for content access.
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 explicit usage context: 'Use this whenever the user wants to find, discover, browse, or filter existing artifacts before reading or contributing.' It also names the alternative (`get_by_id`) and gives mode-selection guidance (hybrid for most, bm25 for exact lookup, semantic for conceptual matching).
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
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- AlicenseAqualityDmaintenanceAgent-first skill marketplace MCP server. AI agents discover, install, and share skills across 7 platforms via MCP protocol. 15 tools including skill search, download, upload, and agent discovery.Last updated183MIT
- AlicenseAqualityCmaintenanceEnables AI agents to search, audit, and install open-source AI skills and MCP servers with security grading and quality scoring, directly from MCP clients.Last updated334MIT
- Alicense-qualityAmaintenanceEnables searching and retrieving details of 41,000+ agent skills, MCP servers, Claude Code plugins, and agentic loops from any MCP-capable agent.Last updatedMIT