Skip to main content
Glama
JTreadwell1

ProdPad MCP Server

by JTreadwell1

Create ProdPad Initiative

prodpad_create_initiative

Create a new initiative in ProdPad when you need to track a product goal. Requires a title and roadmap ID.

Instructions

Create a new initiative in ProdPad. Requires title and roadmap_id.

Args:

  • title (string): Initiative title (required)

  • roadmap_id (number): Numeric roadmap ID (required). Use prodpad_list_roadmaps to find IDs

  • description (string): Description (HTML)

  • column_id (number): Column to place it in

  • tags (array): Tag names or IDs

  • owner (number): Owner user ID

  • objectives (array): Objective IDs to link

  • state (string): candidate or completed

  • target_date (string): Target date

  • ideas (array): Idea IDs to link

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tagsNoTag names or IDs to apply
ideasNoIdea IDs or UUIDs to link
ownerNoOwner user ID (numeric)
stateNoInitiative state (ignored if column_id is provided)
titleYesInitiative title (required)
column_idNoColumn ID to place the initiative in. Use prodpad_get_roadmap to see columns
objectivesNoObjective IDs to link
roadmap_idYesNumeric roadmap ID (required). Use prodpad_list_roadmaps to find IDs
descriptionNoInitiative description (HTML supported)
target_dateNoTarget date (e.g. 2026-03-15)
target_date_formatNoHow to display the target date

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.3/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=false, destructiveHint=false, and idempotentHint=false, so the agent knows this is a non-destructive, non-idempotent write. The description adds prerequisite-chain guidance but says nothing about what is created, whether duplicates are rejected, permission requirements, or what the response contains. Useful but thin relative to the burden for an 11-parameter mutation.

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

Conciseness3/5

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

The one-line summary is front-loaded and clear. The Args list, however, duplicates ten parameters that the schema already documents at 100% coverage, so a meaningful portion of the text does not earn its place and one parameter is dropped inconsistently.

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?

For an 11-parameter creation tool the description covers the required fields and prerequisites adequately, and annotations carry the safety profile. With no output schema, though, it leaves the return value and any constraints on linking objectives/ideas/owner entirely unspecified.

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 baseline is 3. The Args block largely restates the schema's own field descriptions rather than adding meaning (and even omits target_date_format, which the schema documents), so it neither compensates for nor extends the structured data.

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 and resource ('Create a new initiative in ProdPad') and names the two required fields up front, so the agent immediately knows this is the creation path for initiatives. It does not explicitly contrast itself with siblings, but among the sibling list only this tool creates an initiative, so the ambiguity risk is low.

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?

It implies usage context by requiring title and roadmap_id and pointing to prodpad_list_roadmaps / prodpad_get_roadmap for ID lookup, which is genuinely useful prerequisite guidance. However, it never says when to use this versus e.g. prodpad_create_idea or how it fits in a workflow, and gives no exclusions or preconditions beyond the required fields.

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