Skip to main content
Glama

docs

Server Details

Search and read Empryo's documentation. Read-only, no auth, no local access.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
proxysoul/Empryo
GitHub Stars
1,146

Available Tools

4 tools
current_releaseA
Read-onlyIdempotent
Inspect

Read the current published Empryo version and available release artifacts. Never assumes the installed client matches this version.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already establish readOnlyHint, idempotentHint, and non-destructive behavior. The description adds meaningful context beyond those annotations by clarifying that the returned version refers to the published release, not the installed client, which prevents a common misuse.

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 short sentences with no filler. The core purpose is front-loaded, and the important caveat about installed client versions follows immediately. Every word earns its place.

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?

For a parameterless read-only tool with strong annotations, the description fully covers the tool's purpose, scope, and key assumption. No output schema exists, so detailed return-shape documentation is not expected, and nothing essential is missing.

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?

There are zero parameters, so the baseline is 4. The description references what the tool returns (version and release artifacts), which is sufficient given no input is required.

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 states a specific verb ('Read'), a clear resource ('current published Empryo version and available release artifacts'), and is clearly distinct from the documentation-focused sibling tools. An agent can immediately understand what this tool does without opening the schema.

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?

It provides clear context: this tool reports the published release, and it explicitly warns against assuming the installed client matches. It doesn't name alternative tools, but the sibling tools are documentation reads, so the usage boundary is mostly clear.

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

list_docsA
Read-onlyIdempotent
Inspect

List Empryo documentation pages, or the sections and export URLs of one page.

ParametersJSON Schema
NameRequiredDescriptionDefault
pageNo

TDQS

A3.8/5.0
Behavior3/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint false, so the safety profile is covered. The description adds useful behavioral detail about the two modes (page list vs. one page's sections/export URLs), though it does not disclose return format, pagination, or error behavior.

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?

The entire description is one front-loaded sentence that states the main action first and the parameter-dependent alternate mode second. There is no filler, repetition, or reference to structured data that is already visible.

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

Completeness4/5

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

For a tool with one optional parameter, no output schema, and no nested objects, this description is largely sufficient: an agent can call it with or without page and understand the nominal result. It is only slightly incomplete in not prescribing return formatting or when to prefer sibling read/search tools.

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 0%, so the description must explain the 'page' parameter, and it does: the phrase 'of one page' clarifies that providing page switches the call into the sections/export-URL mode. This goes beyond the raw schema pattern, though it stops short of specifying accepted page values or output details.

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 uses a specific verb-resource pair: it 'lists Empryo documentation pages' and distinguishes a second mode for one page's sections and export URLs. This separates it from read_docs and search_docs by operation and from current_release by resource scope.

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

Usage Guidelines2/5

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

There is no explicit guidance about when to use list_docs versus read_docs or search_docs, and no exclusion conditions. The intended usage can be inferred from the verb 'list', but the description leaves all routing decisions to the agent.

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

read_docsA
Read-onlyIdempotent
Inspect

Read a full Empryo docs page or an exact section as Markdown or plain text. Use selectors returned by search_docs/list_docs; empty anchor means introduction.

ParametersJSON Schema
NameRequiredDescriptionDefault
pageYes
anchorNo
formatNo

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already establish the tool is read-only, idempotent, and non-destructive. The description adds meaningful behavior beyond that: it can return a full page or an exact section, supports two text formats, and defines the 'empty anchor' default. It does not describe error behavior, but the annotation coverage lessens that burden.

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 sentences deliver the core action, output format, and the key selector/anchor usage rule with no filler. The most important behavioral detail, full page vs exact section, is front-loaded.

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

Completeness4/5

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

The description is complete for a read-only docs tool: it covers scope, output format, selector usage, and the essential default for anchor. A small gap is that it does not state what happens when 'format' is omitted, but the schema and sibling references make the tool callable without that detail.

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

Parameters5/5

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

With 0% schema description coverage, the description carries full parameter meaning and does so well. It explains that 'page' is a docs page chosen via selectors, 'anchor' selects an exact section with empty meaning introduction, and 'format' maps to Markdown or plain text. This goes beyond the raw schema and gives actionable guidance for all three parameters.

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 names a specific verb ('Read'), resource ('Empryo docs page'), and scope ('full page' or 'exact section'), and clarifies output formats ('Markdown or plain text'). It also creates separation from the sibling search/list tools by saying selectors are returned by those tools, so the agent knows read_docs is for retrieving content, not for discovering it.

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?

It gives clear workflow context: use selectors returned by search_docs/list_docs, and an empty anchor means the introduction. This implies when read_docs should be used after searching or listing, though it does not explicitly state an exclusion like 'use search_docs to find pages.'

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

search_docsA
Read-onlyIdempotent
Inspect

Search current Empryo documentation. Returns exact page and section selectors and citation URLs.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
queryYes

TDQS

A3.7/5.0
Behavior3/5

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

Annotations already declare this as read-only, idempotent, and non-destructive. The description adds useful behavioral detail by specifying the return content (exact selectors and citation URLs), but it does not disclose other relevant behavior such as pagination behavior with the limit parameter or any absence guarantees if the search fails.

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?

The description is two short sentences with no filler. It front-loads the action, states the target resource, and then specifies the return value. Every word earns its place.

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

Completeness4/5

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

Given the simplicity of the tool, the rich annotations, and the straightforward schema, the description is nearly complete. It covers purpose and output format, and safety is already covered by annotations. The only minor gap is lack of guidance on limit usage or result shape beyond selectors and citations, but the description is sufficient for a search tool of this complexity.

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

Parameters2/5

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

The schema has 0% description coverage and the description does not meaningfully compensate. The term 'query' is implied by 'Search', but the description does not explain the meaning of the required query parameter, how the limit parameter affects results, or how queries should be formulated. With two parameters and no schema descriptions, more parameter guidance is needed.

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 states a specific verb ('Search'), a clear resource ('current Empryo documentation'), and the output ('exact page and section selectors and citation URLs'). This clearly distinguishes it from sibling tools like list_docs and read_docs, which would list or read documentation content rather than search it.

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

Usage Guidelines3/5

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

The description makes it clear that this tool is for searching current documentation, which implies when to use it. However, it does not explicitly mention alternatives such as list_docs or read_docs, nor does it state conditions for when to prefer one over the other. The usage context is implied rather than explicit.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 4 tool updates
    • First observedcurrent_release
    • First observedlist_docs
    • First observedread_docs
    • First observedsearch_docs

Frequently Asked Questions

Discussions

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

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    Serves RootApp documentation files with search and retrieval capabilities, enabling users to access specific docs, browse directory structure, and search across file names and content.
    AGPL 3.0
  • A
    license
    Not graded
    quality
    B
    maintenance
    Read-only, unauthenticated remote MCP server for public Wavedash docs, providing SDK guidance, engine setup help, and publishing checklists for agents.
    2
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.2/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: current_release reports the release version, list_docs browses structure, read_docs retrieves content, and search_docs finds relevant sections. There is no meaningful overlap that would cause an agent to select the wrong tool.

Naming Consistency4/5

Three tools follow a consistent verb_docs pattern (list_docs, read_docs, search_docs), while current_release deviates by describing the resource rather than an action. The overall naming is still predictable and readable.

Tool Count5/5

Four tools is well-scoped for a documentation server: discover, browse, read, and check the current release. Each tool serves a distinct part of the documentation workflow without redundancy.

Completeness5/5

The surface covers the full read-oriented documentation lifecycle: search to find content, list to navigate structure, read to retrieve content, and current_release to know the version context. There are no obvious missing operations for a read-only docs server.