Skip to main content
Glama
JTreadwell1

ProdPad MCP Server

by JTreadwell1

List ProdPad Objectives

prodpad_list_objectives
Read-onlyIdempotent

Retrieve all objectives (OKRs) from ProdPad, including their key results. Use this to review or report on product goals and progress.

Instructions

List all objectives (OKRs) in ProdPad. Returns objectives with their key results.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.7/5.0
Behavior3/5

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

Annotations already declare readOnlyHint, idempotentHint, and non-destructive behavior, so the safety profile is covered. The description adds one useful trait beyond that — that objectives are returned with their key results embedded — but says nothing about pagination limits, ordering, or empty-result 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?

Two short sentences, front-loaded with the object being listed and followed by the payload shape. Nothing is padded or redundant.

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 parameterless read-only list tool whose annotations cover the safety profile, the description is nearly sufficient and even notes the nested key-results payload despite the absence of an output schema. Pagination or result-size expectations are the only notable omission.

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?

Zero parameters, so the baseline is 4; there is no parameter syntax for the description to compensate for.

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

Purpose4/5

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

States a specific verb (List) and resource (objectives) and clarifies the OKR synonym, which helps disambiguate naming. It implicitly separates 'list all' from the singular prodpad_get_objective, though it never names siblings explicitly.

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 word 'all' implies a bulk-retrieval use case versus prodpad_get_objective for a single item, but there is no explicit when-to-use or when-not-to guidance and no mention of alternatives such as prodpad_list_keyresults or prodpad_get_objective_keyresults.

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