Skip to main content
Glama
8seneca-hub

8seneca Projects MCP Server

Official
by 8seneca-hub

get_view

Fetch a specific saved view from a project by providing the project ID and view ID to access its details directly.

Instructions

Get a specific saved view. This requests project_id and view_id as uuid parameters. If you do not have the view_id, use the list_project_views tool to find it

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
view_idYesThe uuid identifier of the view to get
project_idYesThe uuid identifier of the project containing the view

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.5-8seneca.1

TDQS

A3.9/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It only restates that the tool requests two UUID parameters and says 'Get', which implies read-only behavior, but it does not disclose return format, error behavior, or any other operational characteristics.

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 sentences with no fluff. The core purpose is front-loaded, and the alternative-tool guidance is the only additional context, making it tightly scoped and efficient.

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

Completeness3/5

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

The tool is low-complexity and the schema fully covers parameters, but there is no output schema and the description does not state what the tool returns or what happens when the view is not found. This is a noticeable gap given that no annotations compensate for it.

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%, with both view_id and project_id already documented as UUID identifiers. The description adds no semantic value beyond repeating that the parameters are UUIDs, so it meets the baseline but does not exceed it.

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 starts with a specific verb and resource: 'Get a specific saved view.' This clearly identifies what the tool does and, alongside the sibling list_project_views, distinguishes a single-resource fetch from list operations.

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 gives explicit routing guidance: 'If you do not have the view_id, use the list_project_views tool to find it.' This directly tells the agent when to use an alternative tool, making the selection logic unambiguous.

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