Skip to main content
Glama
8seneca-hub

8seneca Projects MCP Server

Official
by 8seneca-hub

get_project_docs

Retrieve a project's published documentation page by path, or get the site index when no path is given.

Instructions

Read a page of a project's published docs site. Returns the raw file the project publishes at that path — HTML for a page. Omit path to get the site's index. Only projects with docs_view enabled and a published build have any; others return a 404. There is no path listing, so follow the links in the index to reach other pages

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathNoPath within the docs site, e.g. 'guide/setup.html'. Omit for the site index
project_idYesThe uuid identifier of the project whose docs to read

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.5-8seneca.1

TDQS

A4.7/5.0
Behavior5/5

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

With no annotations provided, the description carries the full burden, and it delivers: it discloses that this is a read operation returning raw file content, that unpublished projects yield 404s, and that there is no path-listing capability. This gives the agent accurate expectations about side effects and failure modes.

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 earning its place: what the tool returns, how to get the index, and the key constraints and navigation behavior. The most important information is front-loaded.

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 simple read-only tool with two parameters and no output schema, the description covers the action, return format, failure case, and page-discovery approach. Nothing essential for invoking the tool correctly is missing.

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

Parameters3/5

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

Schema description coverage is 100%, so the input schema already documents both path and project_id. The description adds a small amount of usage context ('Omit path to get the site's index') but mostly repeats what the schema says, so the baseline of 3 is appropriate.

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 opening phrase 'Read a page of a project's published docs site' names a specific verb, resource, and scope. It also clarifies the return type (raw HTML file) and distinguishes this docs-reading tool from the many issue/module/project tools in the sibling list.

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

Usage Guidelines5/5

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

The description explicitly states when the tool works ('Only projects with docs_view enabled and a published build'), when it fails (returns a 404), and how to navigate ('follow the links in the index'). It also tells the agent how to request the site index by omitting path. No alternative docs tool exists, so no sibling routing is needed.

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