Skip to main content
Glama

cyanheads-mcp-server

Server Details

Fleet discovery for the cyanheads MCP ecosystem — semantic search + install snippets.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
cyanheads/cyanheads-mcp-server
GitHub Stars
1
Server Listing
cyanheads-mcp-server

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

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.

100% free. Your data is private.
Tool DescriptionsA

Average 4.5/5 across 2 of 2 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a clear, distinct purpose: one searches the catalog, the other retrieves detailed entries. There is no overlap or ambiguity.

Naming Consistency5/5

Both tools follow a consistent snake_case pattern with the server prefix 'cyanheads_' and a verb_noun structure (search_catalog, describe_entry).

Tool Count4/5

With only two tools, the set is minimal but well-suited for a read-only catalog server. A third tool for listing all entries might be beneficial, but the count is otherwise appropriate.

Completeness4/5

The tools cover the essential operations for a catalog: searching and retrieving detailed info. However, missing listing or updating capabilities suggests minor gaps if the catalog is expected to be dynamic.

Available Tools

2 tools
cyanheads_describe_entryDescribe Fleet Tool or ServerA
Read-only
Inspect

Return the description and install snippets for a named tool or server. For tools: the description and the server it belongs to. For servers: local (stdio, via npx) install snippets for every published server, plus remote (HTTP) connection snippets when a hosted endpoint exists — for every supported client, or one client via the client parameter. Call cyanheads_search_catalog first to find valid names.

ParametersJSON Schema
NameRequiredDescriptionDefault
kindNoWhether name refers to a tool or server. Omit to auto-detect: names containing underscores are treated as tools; names containing hyphens are treated as servers.
nameYesTool name (snake_case, e.g. "earthquake_search") or server name (kebab-case, e.g. "earthquake-mcp-server"). 1-64 characters. Use cyanheads_search_catalog to discover valid names.
clientNoReturn install snippets for this client only (both local and remote transports when available). Omit to return snippets for all supported clients.

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYesThe resolved entry — either a tool detail or a server detail depending on the resolved kind.
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations declare readOnlyHint=true and openWorldHint=false, which the description does not contradict. The description adds behavioral context about auto-detection based on naming conventions and the conditional output based on kind and client parameters.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three sentences, each purposeful. Front-loaded with the core purpose, followed by operational details and a prerequisite. No wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With three parameters (two with enums), a 100% schema coverage, and an output schema present, the description provides all necessary context: prerequisite search call, conditional output, and client filtering. Complete for the tool's complexity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, but the description adds value by explaining the semantics of auto-detection for kind and the effect of the client parameter on output filtering. This goes beyond the schema descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool returns 'description and install snippets for a named tool or server' and differentiates behavior between tools and servers. It distinguishes from the sibling tool cyanheads_search_catalog.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly directs users to call cyanheads_search_catalog first to find valid names, providing clear usage context. It also explains the optional kind parameter and auto-detection, but lacks explicit exclusion scenarios.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

cyanheads_search_catalogSearch Fleet Tools and ServersA
Read-only
Inspect

Search fleet tools and servers by natural-language description. Returns ranked matches with brief summaries and the server each tool belongs to. Use scope "servers" to find which server handles a workflow; use the default scope "tools" to find specific tools. Call cyanheads_describe_entry on a result name to get install snippets and the connection URL.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of results to return (1-20). Default 5.
queryYesNatural language search query. Describe what you want to accomplish, a workflow, or a capability area. 1-500 characters.
scopeNoWhat to search. "tools" returns individual tool matches; "servers" returns server-level matches.tools
categoryNoFilter by catalog category. Omit to search all categories.

Output Schema

ParametersJSON Schema
NameRequiredDescription
scopeYesScope that was searched.
noticeNoGuidance when no results matched — e.g. how to broaden the query or try a different scope. Absent on successful result pages.
resultsYesRanked matches, best first.
serversNoRoll-up of distinct servers across the full match set, before the limit slice. Present only for scope "tools". Ordered by topScore desc (name-tiebroken); capped at 10. Use serversTotal to see how many distinct servers matched in total.
totalCountYesTotal relevant matches before the limit was applied.
serversTotalNoTotal distinct servers in the full match set (before the cap of 10 is applied). Present only when servers is present.
effectiveQueryYesThe query that was searched.
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations declare readOnlyHint=true, consistent with description. Description adds behavioral context (ranked matches, summaries) beyond annotations. No contradictions.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two concise sentences with all critical information front-loaded. No fluff.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given annotations, output schema (present), and parameter details, the description covers purpose, usage, and post-use action completely.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema has 100% description coverage; description further clarifies scope usage and output in relation to parameters, adding value beyond schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Clearly states it searches fleet tools/servers by natural-language description, returns ranked matches with summaries and server info. Distinguishes from sibling tool by directing to describe_entry for install details.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides explicit guidance on using scope 'servers' vs 'tools' and instructs to call describe_entry for install snippets. Lacks explicit 'when not to use' but sufficient for common scenarios.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.