Skip to main content
Glama
product-on-purpose

PM-Skills MCP


Want to customize skills or use slash commands? This server is powered by pm-skills, the open-source skill library you can fork and modify. Browse the full catalog, interactive showcase, and setup guides at product-on-purpose.github.io/pm-skills.

IMPORTANT

Maintenance Mode (effective 2026-05-04)

Active development on pm-skills-mcp is paused pending demonstrated demand. The latest release is v2.9.3 (security patch shipped 2026-05-05; embedded catalog frozen at the v2.9.2 build) which remains fully functional and exposes a catalog of 40 PM skills, 11 workflows, and 8 utility tools (59 tools total) via the Model Context Protocol. Security patches and critical bug fixes will continue to be addressed; new skill parity with the upstream pm-skills library is on hold, so the catalog will continue to drift from pm-skills as new skills are added there.

For new users: the file-based install path documented in the main pm-skills repository is under active maintenance and is the recommended path going forward.

To register interest in resumed development: open a GitHub Discussion.



Quick Start (NPM Global Install)

npm install -g pm-skills-mcp

The Big Idea

PM-Skills MCP is an MCP server that transforms PM-Skills, a collection of 40 best-practice product management skills, into programmatically accessible tools, resources, and prompts for any AI assistant that speaks the Model Context Protocol.

PM-Skills MCP is built on pm-skills, an open-source collection of 40 PM skills organized by the Triple Diamond framework. While pm-skills offers file-based access with slash commands and AGENTS.md discovery, pm-skills-mcp wraps those same skills in an MCP server for programmatic access. The pm-skills library now includes lifecycle tools (Create, Validate, Iterate) and a documentation site with an interactive showcase.

Not sure which to use? See the Comparison section below, or the MCP Setup Guide on the docs site.

One connection. 40 skills. Any MCP client.

Why MCP?

The Model Context Protocol is an open standard that lets AI assistants connect to external tools and data sources. Instead of manually copying skill files or uploading ZIP archives, PM-Skills MCP gives your AI direct, programmatic access to the entire PM skill library.

The Transformation

File-Based Approach

MCP-Powered Approach

Clone repo, navigate to skills

npx pm-skills-mcp - done

Copy/paste skill content into chat

AI invokes tools directly

Manual template injection

Automatic template retrieval

Platform-specific slash commands

Universal across all MCP clients

Static markdown files

Dynamic, parameterized tools

Works in one IDE/client

Works everywhere MCP is supported

Key Features

  • 59 MCP Tools - 40 PM skills + 11 workflows + 8 utility tools

  • MCP Resources - Skill instructions, templates, and examples via URI, with optional persona resources when enabled

  • 3 MCP Prompts - Guided conversation starters for common workflows

  • 11 Workflows - Pre-built multi-skill workflows for common scenarios

  • 81 Automated Tests - Comprehensive test coverage with Vitest

  • Zero Configuration - Works out of the box with embedded skills

  • Universal Compatibility - Claude Desktop, Cursor, Continue, and any MCP client

  • Customizable - Override with your own skill modifications

  • Lightweight - Minimal dependencies, fast startup

  • Security Scanning - CodeQL analysis on every push

Built with...

Works for...

PM-Skills MCP works with any client that supports the Model Context Protocol. Here's a quick overview:

Platform Compatibility

Platform

Status

Integration Type

Notes

Claude Code

✅ Native

MCP Server

Full tool access via CLI

Claude Desktop

✅ Native

MCP Server

Recommended for best experience

Claude.ai

✅ Native

MCP Server (Projects)

Via MCP integration in Projects

Cursor

✅ Native

MCP Server

AI-powered IDE

VS Code

✅ Native

Via Cline/Continue

Multiple MCP-compatible extensions

Continue

✅ Native

MCP Server

Open-source coding assistant

Cline

✅ Native

MCP Server

VS Code extension

Windsurf

✅ Native

MCP Server

AI-native IDE

GitHub Copilot

🔶 Indirect

Via MCP-enabled tools

Use with Copilot Chat + MCP

OpenCode

🔶 Indirect

Via MCP-compatible config

Use standard stdio MCP server pattern

ChatGPT / Codex

🔶 Manual

Copy skill content

No native MCP support

Any MCP Client

✅ Universal

Protocol-level

Full compatibility

See the Integration Guide for detailed setup instructions for each platform.

Comparison: pm-skills-mcp (this repo) vs. pm-skills

PM-Skills is available in two complementary forms:

pm-skills-mcp (this repo)

pm-skills

What it is

MCP server wrapping the skill library

Skill library as markdown files

Access method

npx pm-skills-mcp

Git clone, ZIP upload

Setup time

30 seconds

2-5 minutes

Skill invocation

MCP tool calls

Slash commands (Claude Code)

Auto-discovery

MCP protocol (Claude Desktop, Cursor)

AGENTS.md (Copilot, Cursor, Windsurf)

Template access

URI-based resources

Navigate file system

Workflows

Tool-based execution

Manual orchestration

Customization

Set PM_SKILLS_PATH to custom folder

Edit files directly

Updates

npm update pm-skills-mcp

git pull

Use pm-skills-mcp (this repo) when:

  • You want instant setup with npx pm-skills-mcp

  • You're using Claude Desktop, Cursor, or any MCP client

  • You want programmatic tool access without managing files

  • You prefer consistent interfaces across different AI clients

Use pm-skills (file-based) when:

  • You prefer slash commands in Claude Code (/prd, /hypothesis)

  • You want to browse, read, and customize skill files directly

  • You're using GitHub Copilot, OpenCode, or Windsurf without reliable MCP support

  • You want to fork and heavily customize skills for your team

Using Both Together: Fork pm-skills to customize skills, then point pm-skills-mcp to your fork:

{
  "mcpServers": {
    "pm-skills": {
      "command": "npx",
      "args": ["pm-skills-mcp"],
      "env": {
        "PM_SKILLS_PATH": "/path/to/my/forked/pm-skills/skills"
      }
    }
  }
}

Related MCP server: simple-fal-mcp

Getting Started

This section covers quick installation. For a comprehensive walkthrough including core concepts, your first tool invocation, workflows, and troubleshooting, see the Getting Started Guide.

NPM Global Install

npm install -g pm-skills-mcp

Run directly:

pm-skills-mcp

From Source

git clone https://github.com/product-on-purpose/pm-skills-mcp.git
cd pm-skills-mcp
npm install
npm run build
npm start

Quick Start by Platform

The recommended client for pm-skills-mcp. Add to your Claude Desktop configuration:

Config file location:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

  • Windows: %APPDATA%\Claude\claude_desktop_config.json

  • Linux: ~/.config/Claude/claude_desktop_config.json

Configuration:

{
  "mcpServers": {
    "pm-skills": {
      "command": "npx",
      "args": ["pm-skills-mcp"]
    }
  }
}

Restart Claude Desktop. You now have access to all 40 PM skills as tools (catalog frozen at the v2.9.2 build; see Maintenance Mode notice above).

Add to .claude/settings.json in your project or ~/.claude/settings.json globally:

{
  "mcpServers": {
    "pm-skills": {
      "command": "npx",
      "args": ["pm-skills-mcp"]
    }
  }
}

Navigate to Settings → Features → MCP Servers, then add:

{
  "pm-skills": {
    "command": "npx",
    "args": ["pm-skills-mcp"]
  }
}

Restart Cursor. The 40 PM skill tools will be available in AI chat (catalog frozen at the v2.9.2 build; see Maintenance Mode notice above).

Configure your Copilot MCP extension/integration with the same stdio server pattern:

{
  "mcpServers": {
    "pm-skills": {
      "command": "npx",
      "args": ["pm-skills-mcp"]
    }
  }
}

If your Copilot surface does not currently expose MCP server configuration, use file-based pm-skills with AGENTS.md as the fallback path.

Use OpenCode's MCP server configuration with the standard npx pm-skills-mcp pattern:

{
  "mcpServers": {
    "pm-skills": {
      "command": "npx",
      "args": ["pm-skills-mcp"]
    }
  }
}

If MCP is unavailable in your current OpenCode setup, use file-based pm-skills and AGENTS.md.

With Cline:

  1. Install Cline from VS Code Marketplace

  2. Open Cline settings and configure MCP server:

    {
      "pm-skills": {
        "command": "npx",
        "args": ["pm-skills-mcp"]
      }
    }

With Continue:

  1. Install Continue from VS Code Marketplace

  2. Configure MCP in Continue settings

Any MCP-compatible client can use pm-skills-mcp. The general pattern:

  1. Configure an MCP server with command npx and args ["pm-skills-mcp"]

  2. Restart the client

  3. All 40 PM skills become available as tools (catalog frozen at the v2.9.2 build; see Maintenance Mode notice above)

See the Integration Guide for detailed instructions for all platforms.

Configuration

Environment Variables

Variable

Default

Description

PM_SKILLS_PATH

(embedded)

Path to custom skills directory

PM_PERSONAS_PATH

(auto)

Path to persona library resources

PM_SKILLS_FORMAT

full

Default output format

PM_SKILLS_INCLUDE_EXAMPLES

false

Include examples by default

Custom Skills Path

Override embedded skills with your customized versions:

{
  "mcpServers": {
    "pm-skills": {
      "command": "npx",
      "args": ["pm-skills-mcp"],
      "env": {
        "PM_SKILLS_PATH": "/path/to/my/custom/skills"
      }
    }
  }
}

Using Custom Skills from a pm-skills Fork

If you've forked pm-skills to customize skills:

  1. Clone your fork locally

  2. Make changes to skills in skills/{phase-skill}/ (e.g., skills/deliver-prd/)

  3. Point pm-skills-mcp to your fork:

{
  "mcpServers": {
    "pm-skills": {
      "command": "npx",
      "args": ["pm-skills-mcp"],
      "env": {
        "PM_SKILLS_PATH": "/path/to/my-pm-skills-fork/skills"
      }
    }
  }
}

See the pm-skills authoring guide for skill modification guidelines.


Usage

How It Works

┌─────────────────────────────────────────────────────────────┐
│                    Your AI Assistant                        │
│              (Claude, Cursor, Continue, etc.)               │
└──────────────────────────┬──────────────────────────────────┘
                           │ MCP Protocol
                           ▼
┌─────────────────────────────────────────────────────────────┐
│                    pm-skills-mcp Server                     │
├─────────────────────────────────────────────────────────────┤
│                                                             │
│   ┌─────────────┐   ┌─────────────┐   ┌─────────────┐       │
│   │   59 Tools  │   │  Resources  │   │  3 Prompts  │       │
│   │             │   │             │   │             │       │
│   │ • 40 skills │   │ • templates │   │ • kickoff   │       │
│   │ • 11 flows  │   │ • examples  │   │ • lean      │       │
│   │ • 8 utils   │   │ • skills    │   │ • quick-prd │       │
│   │             │   │             │   │             │       │
│   └─────────────┘   └─────────────┘   └─────────────┘       │
│                                                             │
│   ┌─────────────────────────────────────────────────────┐   │
│   │              Embedded PM-Skills Library             │   │
│   │     40 skills × (SKILL.md + TEMPLATE + EXAMPLE)     │   │
│   └─────────────────────────────────────────────────────┘   │
│                                                             │
└─────────────────────────────────────────────────────────────┘
  1. You ask your AI to create a PRD, hypothesis, or any PM artifact

  2. AI invokes the appropriate pm_* tool via MCP

  3. Server returns skill instructions, template, and optionally an example

  4. AI generates a professional-quality artifact following the skill framework

Tools

PM-Skills MCP wraps each skill from pm-skills as an MCP tool. The 40 skill tools (like pm_prd, pm_hypothesis, pm_acceptance_criteria, pm_pm_skill_builder) generate PM artifacts, while 11 workflow tools and 8 utility tools help you orchestrate and validate skill usage. See the Comparison section for when to use MCP tools vs file-based slash commands.

Every skill tool accepts these parameters:

Parameter

Required

Description

topic

Yes

The subject or feature to create this artifact for. Be specific: "user authentication for mobile app" is better than "auth".

context

No

Additional requirements, constraints, or background. Use this for business context, technical constraints, or stakeholder needs.

format

No

Output verbosity: full (default, includes all guidance), concise (template + key points), or template-only (just structure).

includeExample

No

Set to true to include a completed example for reference. Helpful when learning a new skill.

Example invocations:

# Basic usage
Use pm_prd with topic "user authentication for mobile app"

# With context
Use pm_hypothesis with topic "checkout abandonment" and context "We see 40%
cart abandonment. Hypothesis: users abandon due to required account creation."

# Request concise output with example
Use pm_user_stories with topic "dark mode" format "concise" includeExample true

The Skills

🔍 Discover Phase - Find the right problem

Tool

Description

pm_interview_synthesis

Turn user research into actionable insights

pm_competitive_analysis

Map the landscape, find opportunities

pm_stakeholder_summary

Understand who matters and what they need

📋 Define Phase - Frame the problem

Tool

Description

pm_problem_statement

Crystal-clear problem framing

pm_hypothesis

Testable assumptions with success metrics

pm_opportunity_tree

Teresa Torres-style outcome mapping

pm_jtbd_canvas

Jobs to be Done framework

💡 Develop Phase - Explore solutions

Tool

Description

pm_solution_brief

One-page solution pitch

pm_spike_summary

Document technical explorations

pm_adr

Architecture Decision Records

pm_design_rationale

Why you made that design choice

🚀 Deliver Phase - Ship it

Tool

Description

pm_prd

Comprehensive product requirements

pm_user_stories

INVEST-compliant stories with acceptance criteria

pm_edge_cases

Error states, boundaries, recovery paths

pm_launch_checklist

Never miss a launch step again

pm_release_notes

User-facing release communication

📊 Measure Phase - Validate with data

Tool

Description

pm_experiment_design

Rigorous A/B test planning

pm_instrumentation_spec

Event tracking requirements

pm_dashboard_requirements

Analytics dashboard specs

pm_experiment_results

Document learnings from experiments

🔄 Iterate Phase - Learn and improve

Tool

Description

pm_retrospective

Team retros that drive action

pm_lessons_log

Build organizational memory

pm_refinement_notes

Capture backlog refinement outcomes

pm_pivot_decision

Evidence-based pivot/persevere framework

🧭 Foundation - Cross-cutting capability

Tool

Description

pm_persona

Generate product or marketing personas with explicit assumptions and evidence

🔗 Workflows - Multi-skill workflows

Tool

Effort

Description

pm_workflow_feature_kickoff

standard

problem → hypothesis → solution → PRD → stories

pm_workflow_lean_startup

comprehensive

hypothesis → experiment → results → pivot decision

pm_workflow_triple_diamond

comprehensive

Full discovery to delivery sequence

pm_workflow_quick_prd

quick

Fast problem → PRD workflow

pm_workflow_experiment_cycle

standard

hypothesis → experiment → results → lessons

pm_workflow_customer_discovery

standard

research → JTBD → opportunities → problem statement

pm_workflow_sprint_planning

quick

refinement → stories → edge cases

pm_workflow_product_strategy

comprehensive

competitive → stakeholders → opportunities → solution → ADR

pm_workflow_post_launch_learning

comprehensive

instrumentation → dashboard → results → retro → lessons

pm_workflow_stakeholder_alignment

standard

stakeholders → problem → solution → launch readiness

pm_workflow_technical_discovery

standard

spike → ADR → design rationale

🛠️ Utility Tools

Tool

Description

pm_list_skills

List all available PM skill tools

pm_list_resources

List all available MCP resources

pm_list_workflows

List all workflows with steps

pm_list_prompts

List available conversation prompts

pm_validate

Validate artifact against skill template

pm_search_skills

Search skills by keyword across names, descriptions, and content

pm_cache_stats

Show skill-cache hit rate, size, and TTL diagnostics

MCP Resources

Access skill content directly via MCP resources:

pm-skills://skills/{skill}      → Full skill instructions
pm-skills://templates/{skill}   → Template only
pm-skills://examples/{skill}    → Worked example

Examples:

pm-skills://skills/deliver-prd
pm-skills://templates/define-hypothesis
pm-skills://examples/measure-experiment-design

Note: Phase information is available in resource metadata.

Prompts

MCP prompts provide guided conversation starters for common workflows. Use prompts/get with the prompt name and a topic to begin.

Prompt

Description

feature-kickoff

Complete feature kickoff: Problem → Hypothesis → Solution → PRD → Stories

lean-validation

Build-Measure-Learn cycle: Hypothesis → Experiment → Results → Pivot

quick-prd

Fast PRD creation when requirements are clear: Problem → PRD

Usage example:

prompts/get name="feature-kickoff" arguments={"topic": "dark mode support"}

Guides

Comprehensive documentation for setup, customization, and understanding pm-skills-mcp.

Guide

Description

Getting Started

Complete walkthrough from installation to your first tool invocation. Covers core concepts, platform-specific setup, workflows, and troubleshooting.

Integration Guide

Detailed setup instructions for each MCP client (Claude Desktop, Cursor, Continue, Cline, etc.) with troubleshooting tips.

Customization Guide

How to use custom skills with pm-skills-mcp. Covers environment variable overrides, forking pm-skills, and creating new skills.

Migration Guide

Moving between file-based pm-skills and MCP-based pm-skills-mcp. Includes command-to-tool mapping and hybrid approaches.

Architecture

Technical deep-dive for contributors. Covers server internals, data flow, extension points, and performance considerations.

Repository Governance

Top-level ownership and tracked-vs-local persistence policy for contributors.


Project Status

Development Status

Maintenance mode as of 2026-05-04. Active feature development is paused pending demonstrated demand. The project will continue to receive security patches and critical bug fixes; new skill parity with the upstream pm-skills library is on hold pending a sustained signal of multi-team adoption.

Resumption criteria. A sustained signal of demand via GitHub Discussion engagement, install-volume growth, or direct contact from teams adopting the server in production workflows.

Recommended path for new users. The file-based install via the main pm-skills repository remains under active maintenance and is the supported path going forward. The main repository carries current parity with the latest pm-skills releases.

To register interest: open a GitHub Discussion.

Releases

All releases are available on the GitHub Releases page.

Install the latest version:

npm install -g pm-skills-mcp

Install a pinned release:

npm install -g pm-skills-mcp@2.9.3

npm version GitHub Release

From v2.4.0 onward, pm-skills-mcp directly tracks pm-skills release versions. Pinned source compatibility metadata is declared in pm-skills-source.json for each release.

Latest: v2.9.3 (security patch; 2026-05-05; catalog frozen at v2.9.2 build under maintenance mode). See GitHub Releases for the v2.9.x line. | Previous release details | Full changelog

Project Structure

See docs/reference/project-structure.md for detailed descriptions.

pm-skills-mcp/
├── src/                      # TypeScript source code
│   ├── index.ts              # Entry point
│   ├── server.ts             # MCP server implementation
│   ├── config.ts             # Configuration management
│   ├── cache.ts              # Skill caching layer
│   ├── skills/               # Skill loader and parser
│   ├── tools/                # MCP tool handlers (59 tools)
│   ├── resources/            # MCP resource handlers (skills/templates/examples + optional personas)
│   ├── prompts/              # MCP prompt definitions (3 prompts)
│   ├── workflows/            # Workflow definitions
│   └── types/                # TypeScript type definitions
├── skills/                   # Embedded PM skills (flat, copied from pm-skills v2.x)
│   ├── deliver-prd/          # Example: phase-prefixed skill directories
│   ├── define-hypothesis/    # Each skill has SKILL.md + references/
│   ├── discover-interview-synthesis/
│   └── ...                   # 40 skills total
├── docs/                     # Documentation
│   ├── getting-started.md    # Complete setup and first-use guide
│   ├── integration-guide.md  # Client-specific configuration
│   ├── customization.md      # Using custom skills with MCP
│   ├── migration-guide.md    # Moving between file-based and MCP
│   ├── architecture.md       # Technical internals for contributors
│   ├── releases/             # Shipped release notes
│   └── reference/            # Reference documentation
│       ├── project-structure.md
│       └── repository-governance.md
├── tests/                    # Vitest test suites (81 tests)
├── scripts/                  # Build and utility scripts
├── dist/                     # Compiled JavaScript output
├── .github/                  # CI/CD workflows
│   └── workflows/            # ci.yml, publish.yml, codeql.yml
├── pm-skills-source.json     # Pinned pm-skills repo/ref/version metadata
├── AGENTS.md                 # Agent discovery file
├── CONTRIBUTING.md           # Contribution guidelines
├── SECURITY.md               # Security policy
└── CHANGELOG.md              # Version history

Previous Release Details

v2.5.2 - Public release-doc readability cleanup. v2.5.1 - Canonical AGENTS/claude continuity path. v2.5.0 - Persona skill tool (pm_persona), two-axis classification model (phase + classification), embed validation hardening. Tool count: 38.

v2.4.3 - Release metadata/link alignment patch. v2.4.2 - Governance + structure-doc alignment. v2.4.1 - Version/pin parity patch. v2.4.0 - Adopted direct version tracking with pm-skills. Added pm-skills-source.json for reproducible embeds. Resource URI contract tests. Tool count: 36.

v2.1.0 - Flat skill structure alignment with pm-skills v2.x. Resource URIs flattened. v1.1.0 - Comprehensive documentation suite, platform compatibility. v1.0.0 - First stable release: 36 tools, caching, community governance. v0.1.x - Initial implementation: MCP server, CI/CD, npm packaging.

Changelog

See CHANGELOG.md for full version history.

Version

Date

Highlights

2.9.3

2026-05-05

Security patch: Dependabot alert cleanup (8 alerts closed). Catalog frozen at v2.9.2 build.

2.9.2

2026-05-04

Maintenance-mode declaration. 40 skills embedded; final new-skill embedding under active development.

2.9.0

2026-04-06

Workflow-tool parity with pm-skills (11 workflows), 59 tools total

2.8.0

2026-04-03

Lifecycle skill embedding (Create, Validate, Iterate)

2.7.0

2026-03-22

2 new skill tools (pm_acceptance_criteria, pm_pm_skill_builder), 27 skills, 40 tools

2.6.0

2026-03-04

Maintenance: pm-skills v2.6.0 version/source-pin parity

2.5.0

2026-03-02

Persona tool + taxonomy contract updates + embed hardening

2.4.0

2026-02-16

Direct version tracking + pinned source metadata

2.1.0

2026-01-27

Flat skill structure alignment with pm-skills v2.x

1.0.0

2026-01-21

First stable release: 36 tools, caching, governance

0.1.0

2026-01-20

Initial MCP server implementation

Roadmap

See the open issues for planned features.

  • Core MCP server with all 40 PM skills

  • Workflow tools (11 workflows)

  • MCP resources for direct skill access

  • MCP prompts for guided workflows

  • Automated npm publishing

  • Skill versioning and compatibility tracking

  • Additional workflows

  • Custom skill contribution support


Development

Testing

The project uses Vitest for testing with 81 tests across multiple test files.

# Run all tests
npm test

# Watch mode for development
npm run test:watch

# Generate coverage report
npm run test:coverage

Test coverage includes:

  • Skill loader and parser

  • Tool handler and response formatting

  • Workflow execution

  • Prompt registration

  • Output validation

  • Server initialization

Code Quality

# Lint with ESLint
npm run lint

# Auto-fix lint issues
npm run lint:fix

# Format with Prettier
npm run format

# Check formatting
npm run format:check

# Type check
npx tsc --noEmit

CI/CD

The project uses GitHub Actions for continuous integration and deployment:

CI Workflow (.github/workflows/ci.yml)

  • Triggers on push/PR to main

  • Tests on Node.js 18, 20, and 22

  • Runs lint, format check, type check, and tests

  • Clones pm-skills at the pinned ref from pm-skills-source.json and embeds skills for testing

Publish Workflow (.github/workflows/publish.yml)

  • Triggers on GitHub release creation

  • Auto-publishes to npm with provenance

  • Uses npm automation token for authentication

  • Embeds skills from the same pinned pm-skills ref declared in pm-skills-source.json

CodeQL Workflow (.github/workflows/codeql.yml)

  • Security scanning for JavaScript/TypeScript

  • Runs on push to main and weekly schedule


Security

We take security seriously. This project includes:

  • CodeQL Analysis - Automated security scanning on every push

  • Dependabot - Automated dependency updates for npm and GitHub Actions

  • Vulnerability Reporting - See SECURITY.md for our security policy

To report a vulnerability, please email security concerns privately rather than opening a public issue. See SECURITY.md for details.


Contributing

Contributions are what make the open-source community such an amazing place to learn, inspire, and create. Any contributions you make will benefit everybody else and are greatly appreciated.

How to Contribute

Quick contribution steps:

  1. Fork the Project

  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)

  3. Commit your Changes using Conventional Commits (git commit -m 'feat: add amazing feature')

  4. Push to the Branch (git push origin feature/AmazingFeature)

  5. Open a Pull Request

Please read our CONTRIBUTING.md for detailed guidelines.

Reporting Bugs

Please try to create bug reports that are:

  • Reproducible - Include steps to reproduce the problem

  • Specific - Include as much detail as possible (version, environment, etc.)

  • Unique - Do not duplicate existing opened issues

  • Scoped - One bug per report


About

Author

Howdy, I'm Jonathan Prisant, a product leader/manager/nerd in the church technology space who gets unreasonably excited about understanding + solving problems, serving humans, designing elegant systems, and getting stuff done. I enjoy optimizing and scaling workflows more than is probably healthy... NOT because I'm particularly fond of "business process definition", but because I think in systems and value the outcomes of increased "effectiveness and efficiency" (i.e. doing less of the boring work and more of the work I actually enjoy).

I am a follower of Jesus Christ, grateful husband to my beloved, proud (and exhausted) dad of 4 humans of various sizes and ages, D&D geek, 3d printing enthusiast, formerly-consistent strength trainer, smart home enthusiast, insatiable learner, compulsive tech-experimenter, writer-of-words that aggregate into sentences and paragraphs, and a bunch of other stuff too. I have too many projects going on across too many domains and need better self control, but hopefully you find this open-source repo helpful and useful.

If PM-Skills has helped you ship better products, consider giving the repo a star and sharing it with your team.

License

Distributed under the Apache License 2.0. See LICENSE for more information.

This means you can:

  • Use PM-Skills MCP commercially

  • Modify and distribute

  • Use privately

  • Include in proprietary software

The only requirements are attribution and including the license notice.

Security

We take security seriously. This project includes:

  • CodeQL Analysis - Automated security scanning on every push

  • Dependabot - Automated dependency updates for npm and GitHub Actions

  • Vulnerability Reporting - See SECURITY.md for our security policy

To report a vulnerability, please email security concerns privately rather than opening a public issue.

Acknowledgments

  • PM-Skills - The skill library that powers this MCP server. All 40 PM skills, templates, and examples come from pm-skills (embedded catalog frozen at the v2.9.2 build under maintenance mode).

  • Model Context Protocol - The protocol that makes this possible

  • Anthropic - For creating MCP and Claude


Community

Have ideas for making PM-Skills MCP even better? Here are some ways to contribute and connect:

Feature Ideas

Spread the Word

  • Give the repo a star if you find it useful

  • Share PM-Skills MCP with your team

  • Write about how you use PM-Skills MCP in your workflow

Feedback


Available Tools

19 tools
pm_cache_statsA

Get PM-Skills cache statistics.

Shows performance metrics for the skill content cache including hit rate, cache size, and TTL settings.

Useful for monitoring server performance and debugging cache behavior.

Returns: Markdown formatted cache statistics.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.4/5.0
Behavior4/5

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

No annotations are provided, so the description carries full burden. It details the return format ('Markdown formatted cache statistics') and the metrics included (hit rate, cache size, TTL settings). It could confirm the operation is read-only, but this is strongly implied.

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 three short sentences, each earning its place: purpose, metrics, usage context, and return format. No fluff, well-structured.

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 simple read-only stats tool with no parameters, the description covers purpose, usage, and return format. It could mention whether the data is real-time, but overall it is sufficient for the tool's complexity.

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?

The input schema has zero parameters, so schema coverage is 100% trivially. The description adds value by explaining the return format, which compensates for a lack of output schema. No parameter information 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 opens with 'Get PM-Skills cache statistics', which is a specific verb+resource combination. It clearly distinguishes from sibling tools, none of which are cache-related.

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?

The description states the tool is 'Useful for monitoring server performance and debugging cache behavior', providing clear context. However, it does not explicitly mention when not to use it or alternatives, though none exist among siblings.

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

pm_list_personasA

List all available persona library entries.

Returns persona resources grouped by category, with resource URIs for direct retrieval via resources/read.

Returns: Markdown formatted list of persona references from pm-skills://personas/{category}/{persona}.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.6/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. It only mentions the return format (Markdown) and resource URIs, but does not disclose side effects, authentication needs, rate limits, or other behavioral traits expected for a read operation.

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 extremely concise: two sentences plus a returns line. Every sentence adds value without waste, and the core purpose 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?

For a simple list-all tool with no parameters and no output schema, the description adequately states what is returned and the format. However, it lacks details on error conditions or pagination, but these are less critical for a basic list operation.

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?

The input schema is empty with 0 parameters, and schema coverage is already 100%. The description adds no parameter information, which is acceptable given no parameters exist. Baseline score of 4 applies.

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 clearly specifies 'list all available persona library entries', uses a specific verb and resource, and distinguishes from sibling tools like 'pm_list_skills' by mentioning 'persona library entries' and the resource URI pattern.

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?

The description does not provide any guidance on when to use this tool versus alternatives, nor does it mention when not to use it. It simply states what it does without context relative to other tools.

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

pm_list_promptsA

List all available PM-Skills MCP prompts.

Prompts are conversation starters that help you begin common PM workflows with appropriate context.

Use this tool to discover available prompts. Then use MCP's prompts/get to invoke a prompt with your topic.

Returns: Markdown formatted list of all prompts with their descriptions.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.2/5.0
Behavior3/5

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

Without annotations, the description carries the burden. It discloses the return format (Markdown list) and states it lists 'all' prompts, but does not discuss side effects, prerequisites, or pagination. Adequate for a simple read-only listing.

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 efficiently cover purpose, context, usage, and output. No fluff; every sentence adds value.

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 tool's simplicity (no parameters, no output schema), the description is mostly complete, though it could mention whether the list is exhaustive or has any ordering convention.

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?

With no parameters and 100% schema coverage, the description adds no parameter info, which is acceptable. Baseline 4 for zero-parameter tools.

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 clearly states 'List all available PM-Skills MCP prompts' with a specific verb and resource, distinguishing it from siblings that list skills, personas, resources, or workflows.

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?

The description explains when to use this tool ('discover available prompts') and directs users to invoke prompts via 'prompts/get', providing clear context though not explicitly ruling out alternatives.

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

pm_list_resourcesA

List all available PM-Skills MCP resources.

Returns a categorized list of all skill instructions, templates, and examples available as MCP resources.

Resources can be accessed via resources/read using URIs like:

  • pm-skills://skills/{skill} - Full skill instructions

  • pm-skills://templates/{skill} - Blank template

  • pm-skills://examples/{skill} - Completed example

  • pm-skills://personas/{category}/{persona} - Persona library reference

Returns: Markdown formatted list of all resources organized by type with their URIs.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.9/5.0
Behavior4/5

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

With no annotations, the description carries the full burden. It explains the return format (categorized Markdown list with URIs) and mentions how resources can be accessed via resources/read. No side effects or destructive actions are expected for a list operation.

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

Conciseness4/5

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

The description is moderately sized with a clear structure: statement of purpose, URI patterns in bullet points, and expected return. Each sentence adds value, though it could be slightly more concise.

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 no output schema, the description adequately explains the return value (categorized list of resources with URIs). It covers usage context and expected output, making it complete for an agent to understand the tool's behavior.

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?

The tool has no parameters, and schema description coverage is 100%. The description adds value by documenting the output format and URI patterns, which is beyond what the schema provides. Baseline for zero params is 4.

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 clearly states the tool lists all available PM-Skills MCP resources, specifying the verb 'List' and resource 'all available... resources'. It distinguishes from siblings like pm_list_skills and pm_list_personas by being all-encompassing.

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?

The description does not provide guidance on when to use this tool versus alternatives like pm_list_skills or pm_list_personas. It lacks explicit when-to-use or when-not-to-use instructions, relying on implicit differentiation.

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

pm_list_skillsA

List all available PM-Skills tools.

Returns a categorized list of all PM-Skills tools organized by workflow phase and classification.

Use this tool to discover which skills are available before invoking specific skill tools.

Returns: Markdown formatted list of all skills with their tool names and descriptions.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.2/5.0
Behavior4/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. It states that the tool returns a 'Markdown formatted list of all skills with their tool names and descriptions.' This is transparent about the output format and behavior, with no side effects implied.

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 exceptionally concise with only three sentences. Each sentence adds value: purpose, usage guidance, and return format. No wasted words.

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?

Given no parameters and no output schema, the description fully covers what the tool does, why to use it, and what it returns. The context of sibling tools (e.g., pm_search_skills) is implicit, but still complete.

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 adds no parameter information because none exist, which is appropriate.

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?

The description clearly states the tool lists all available PM-Skills tools, categorized by workflow phase and classification. It uses specific verbs ('List all available') and identifies the resource. However, it does not explicitly differentiate from the sibling tool pm_search_skills, which could cause confusion.

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?

The description includes a direct usage guideline: 'Use this tool to discover which skills are available before invoking specific skill tools.' This provides clear context on when to use it. No exclusion criteria are given, but for a listing tool, this is adequate.

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

pm_list_workflowsA

List all available PM-Skills workflows.

Workflows are pre-defined sequences of skills for common PM workflows like feature kickoff, lean validation, and experimentation.

Use this tool to discover available workflows before invoking a specific workflow tool.

Returns: Markdown formatted list of all workflows with their descriptions and steps.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.6/5.0
Behavior4/5

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

No annotations provided, but the description discloses the return format (Markdown formatted list) and implies a read-only operation. For a zero-parameter list tool, this is adequate transparency.

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 extremely concise—three short sections—with the core purpose first, then explanation, usage guidance, and return format. Every sentence serves a purpose.

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 simple list tool with no parameters and no output schema, the description is complete: it covers purpose, usage context, and output format. It doesn't discuss edge cases, but that's acceptable given the tool's simplicity.

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?

No parameters, so schema coverage is 100%. The description adds value by explaining what workflows are (pre-defined sequences) and giving examples, beyond the empty schema.

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 clearly states 'List all available PM-Skills workflows' with a specific verb and resource. It distinguishes from sibling tools like pm_list_skills (lists skills) and pm_workflow_* tools (specific invocations).

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 advises to use this tool before invoking a specific workflow tool, providing clear guidance on when to use it and implying when not to (if you already know the workflow).

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

pm_search_skillsA

Search PM-Skills by keyword.

Searches across skill names, descriptions, and content to find relevant skills for your needs.

Args:

  • query (string, required): Search term(s) to find matching skills

  • searchContent (boolean, default: false): Also search within skill instructions

Returns: Markdown formatted list of matching skills with relevance context.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesSearch term(s) to find matching skills
searchContentNoAlso search within skill instructions (slower but more thorough)

TDQS

A4/5.0
Behavior4/5

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

With no annotations, the description takes full responsibility for behavioral disclosure. It explains the search scope (names, descriptions, content), the effect of the searchContent parameter, and the return format (Markdown list with relevance). This is sufficient for a read-like operation.

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 concise with three focused sections: main purpose, Args list, and Returns. Every sentence contributes value without redundancy or filler.

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 covers the tool's purpose, parameters, and return format adequately. However, it could be more complete by mentioning result limits or pagination, though these are minor omissions for a search tool.

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 coverage for both parameters is 100%, so the description adds minimal value beyond restating the schema. The 'Returns' line provides output format information but does not enhance parameter understanding.

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 clearly states it searches PM-Skills by keyword across skill names, descriptions, and content. This specific verb and resource effectively distinguish it from sibling tool pm_list_skills, which likely lists all skills.

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 implies usage for finding specific skills via keyword search, but it does not explicitly state when to use this tool over alternatives like pm_list_skills or other search tools. No when-not guidance is provided.

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

pm_validateA

Validate a PM artifact against its skill template.

Checks that an output document contains the expected sections from a skill's template.

Args:

  • skill (string, required): The skill name to validate against (e.g., "prd", "hypothesis", "user_stories")

  • output (string, required): The artifact content to validate

Returns: Validation result with section checklist and suggestions for improvement.

ParametersJSON Schema
NameRequiredDescriptionDefault
skillYesSkill name to validate against (e.g., "prd", "hypothesis")
outputYesThe artifact content to validate

TDQS

A3.8/5.0
Behavior4/5

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

The description implicitly indicates this is a read-only validation operation by stating it returns a result. Without annotations, it carries the behavioral transparency burden well, though it could be more explicit about having no side effects.

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

Conciseness4/5

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

The description is well-structured with a clear purpose sentence, followed by parameter and return value descriptions. It is concise without extraneous information, though the parameter section is somewhat redundant with the schema.

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 tool with two parameters and no output schema, the description fully covers what the tool does, its inputs, and its output format. No additional information is needed for correct usage.

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 coverage is 100% with clear descriptions for both parameters. The tool description adds minimal additional meaning beyond repeating parameter purposes, meeting the baseline for high schema coverage.

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 clearly states the tool validates a PM artifact against its skill template, specifying the verb and resource. It distinguishes from sibling tools like pm_list_skills and pm_search_skills, which have different purposes.

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?

No guidance is provided on when to use this tool versus alternatives, such as when to validate versus simply listing or searching skills. The description lacks explicit usage context or exclusions.

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

pm_workflow_customer_discoveryA

Customer Discovery workflow - Transform raw research into a clear, validated problem worth solving.

Effort Level: standard

Steps:

  1. pm_interview_synthesis

  2. pm_jtbd_canvas

  3. pm_opportunity_tree

  4. pm_problem_statement

Use this tool to get a complete workflow plan. The AI client orchestrates execution by calling each step's tool in sequence.

Args:

  • topic (string, required): The subject or feature for this workflow

  • context (string, optional): Additional context for the workflow

Returns: Markdown workflow plan with steps, guidance, and execution instructions.

ParametersJSON Schema
NameRequiredDescriptionDefault
topicYesThe subject or feature for this workflow
contextNoAdditional context, constraints, or requirements

TDQS

A3.5/5.0
Behavior2/5

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

No annotations are provided, so the description must carry the full burden. It mentions 'Effort Level: standard' and describes the output format, but does not disclose side effects, idempotency, rate limits, or error conditions, leaving significant behavioral aspects unaddressed.

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

Conciseness4/5

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

The description is well-structured with a clear purpose, effort level, steps list, and usage instruction. It is slightly verbose but every section adds value, earning a high score for conciseness and front-loading.

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 tool returns a workflow plan, and the description covers input parameters, steps, and execution instructions. It lacks details on interpreting the plan or error handling, but given the absence of an output schema, the description is fairly complete for its purpose.

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 coverage is 100% with both parameters already described. The description repeats the schema ('topic (string, required)', 'context (string, optional)') without adding new semantics, achieving a baseline score of 3.

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 clearly states the tool's purpose: 'Customer Discovery workflow - Transform raw research into a clear, validated problem worth solving.' It lists the specific steps and differentiates from sibling workflows like pm_workflow_feature_kickoff by its unique name and step sequence.

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 includes 'Use this tool to get a complete workflow plan' which indicates a clear context for use. However, it lacks explicit guidance on when not to use it or alternatives among the many sibling workflows, leaving differentiation largely implicit.

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

pm_workflow_experiment_cycleA

Experiment Cycle workflow - Complete experimentation workflow from hypothesis through learning capture.

Effort Level: standard

Steps:

  1. pm_hypothesis

  2. pm_experiment_design

  3. pm_instrumentation_spec

  4. pm_experiment_results

  5. pm_lessons_log

Use this tool to get a complete workflow plan. The AI client orchestrates execution by calling each step's tool in sequence.

Args:

  • topic (string, required): The subject or feature for this workflow

  • context (string, optional): Additional context for the workflow

Returns: Markdown workflow plan with steps, guidance, and execution instructions.

ParametersJSON Schema
NameRequiredDescriptionDefault
topicYesThe subject or feature for this workflow
contextNoAdditional context, constraints, or requirements

TDQS

A4.3/5.0
Behavior4/5

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

The description explains the tool returns a Markdown workflow plan with steps and guidance, and outlines the steps. No annotations are provided, but the description covers the main behavior. It lacks mention of authorization or side effects, but for a plan-generating tool, this is acceptable.

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 concise, well-structured with bullet points for steps, and front-loaded with the purpose. Every sentence adds value.

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 moderate-complexity workflow plan tool, the description covers the workflow steps, parameters, and return value. No output schema exists, but the description adequately explains what is returned. Complete given context.

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?

Parameter schema coverage is 100% and both parameters are described in the schema. The description repeats the parameter info but adds no extra semantics beyond the schema. Baseline score 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 description clearly states it is a complete experimentation workflow from hypothesis through learning capture, and explicitly mentions use to get a workflow plan. It lists specific steps, distinguishing it from sibling workflow tools.

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?

The description says 'Use this tool to get a complete workflow plan' and that the AI orchestrates execution, providing clear usage context. However, it does not explicitly state when not to use or compare to alternatives.

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

pm_workflow_feature_kickoffA

Feature Kickoff workflow - Complete workflow for kicking off a new feature, from problem definition through implementation-ready requirements.

Effort Level: standard

Steps:

  1. pm_problem_statement

  2. pm_hypothesis

  3. pm_solution_brief

  4. pm_prd

  5. pm_user_stories

Use this tool to get a complete workflow plan. The AI client orchestrates execution by calling each step's tool in sequence.

Args:

  • topic (string, required): The subject or feature for this workflow

  • context (string, optional): Additional context for the workflow

Returns: Markdown workflow plan with steps, guidance, and execution instructions.

ParametersJSON Schema
NameRequiredDescriptionDefault
topicYesThe subject or feature for this workflow
contextNoAdditional context, constraints, or requirements

TDQS

A3.9/5.0
Behavior4/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. It transparently states the output is a 'Markdown workflow plan with steps, guidance, and execution instructions' and lists the five steps. No destructive behavior is implied, and the read-only nature is clear.

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

Conciseness4/5

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

The description is well-structured with sections (Effort Level, Steps, Args, Returns) and is front-loaded with purpose. It is concise enough but could be slightly shorter; however, every sentence adds value.

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 multi-step workflow tool, the description is complete: it explains the workflow purpose, steps, effort level, execution pattern (AI orchestrates), parameters, and return type. No output schema exists, but the description adequately describes the return format. It lacks details on error handling or step dependencies, but these are beyond typical scope.

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 parameters are already well-documented. The description repeats the parameter definitions ('topic' and 'context') but adds only minimal context beyond the schema, such as grouping them under 'Args.' No additional syntax or format details are provided.

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 clearly states the tool's purpose: 'Complete workflow for kicking off a new feature, from problem definition through implementation-ready requirements.' It lists specific steps and distinguishes from sibling workflows by focusing on a standard feature kickoff, unlike other specialized workflows like lean startup or customer discovery.

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 states when to use: 'Use this tool to get a complete workflow plan' and notes that the AI should orchestrate execution. However, it does not explicitly compare to or exclude other workflow tools, leaving the agent to infer when to choose this one over siblings like pm_workflow_lean_startup or pm_workflow_triple_diamond.

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

pm_workflow_lean_startupA

Lean Startup Validation workflow - Build-Measure-Learn cycle for validating product hypotheses through experimentation.

Effort Level: comprehensive

Steps:

  1. pm_hypothesis

  2. pm_experiment_design

  3. pm_instrumentation_spec (optional)

  4. pm_experiment_results

  5. pm_pivot_decision

Use this tool to get a complete workflow plan. The AI client orchestrates execution by calling each step's tool in sequence.

Args:

  • topic (string, required): The subject or feature for this workflow

  • context (string, optional): Additional context for the workflow

Returns: Markdown workflow plan with steps, guidance, and execution instructions.

ParametersJSON Schema
NameRequiredDescriptionDefault
topicYesThe subject or feature for this workflow
contextNoAdditional context, constraints, or requirements

TDQS

A3.9/5.0
Behavior3/5

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

No annotations provided, so description carries the burden. It states it returns a Markdown plan without side effects. While adequate, it could be more explicit about being a non-destructive read-only plan generation.

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

Conciseness4/5

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

Well-structured with clear sections: purpose, effort level, steps, args, returns. Front-loaded with purpose. Could be slightly more concise but no wasted sentences.

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 workflow plan generator with 2 parameters and no output schema, the description adequately explains the output (Markdown plan) and the steps involved. Complete enough for an agent to use appropriately.

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 coverage is 100%, so baseline 3 applies. Description adds minimal new meaning beyond the schema: 'subject or feature' for topic and 'additional context' for context. No extra detail on format or constraints.

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 clearly names the workflow as 'Lean Startup Validation' and explains it as a 'Build-Measure-Learn cycle', providing specific steps. This distinguishes it from other workflow siblings which have different purposes.

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?

Explicitly states 'Use this tool to get a complete workflow plan' and describes orchestration by calling step tools in sequence. Lacks explicit when-not-to-use but provides sufficient context for appropriate use.

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

pm_workflow_post_launch_learningA

Post-Launch Learning workflow - Set up measurement, evaluate results, and capture learnings after a feature ships.

Effort Level: comprehensive

Steps:

  1. pm_instrumentation_spec

  2. pm_dashboard_requirements

  3. pm_experiment_results

  4. pm_retrospective

  5. pm_lessons_log

Use this tool to get a complete workflow plan. The AI client orchestrates execution by calling each step's tool in sequence.

Args:

  • topic (string, required): The subject or feature for this workflow

  • context (string, optional): Additional context for the workflow

Returns: Markdown workflow plan with steps, guidance, and execution instructions.

ParametersJSON Schema
NameRequiredDescriptionDefault
topicYesThe subject or feature for this workflow
contextNoAdditional context, constraints, or requirements

TDQS

A4.3/5.0
Behavior4/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. It discloses that the tool returns a Markdown workflow plan and describes the effort level as 'comprehensive.' It also lists the steps and what the plan includes. There is no mention of destructive actions or auth needs, which is acceptable for a workflow planning tool.

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

Conciseness4/5

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

The description is well-structured with a bolded title, bulleted steps, and clear sections for arguments and returns. It is front-loaded with the purpose. While it could be slightly more concise (e.g., the 'Steps' list could be inline), it remains easy to scan.

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 tool has 2 parameters (one required), no nested objects, and no output schema. The description explains the return value (Markdown workflow plan) and provides execution guidance (AI orchestrates steps). This is sufficient for a workflow generation tool.

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 100% (both parameters have descriptions). The description adds context beyond the schema by explaining 'topic' as 'The subject or feature for this workflow' and 'context' as 'Additional context, constraints, or requirements.' This reinforces the schema but does not introduce new syntax 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 clearly states it is a 'Post-Launch Learning workflow' for setting up measurement, evaluating results, and capturing learnings after a feature ships. It lists specific steps (pm_instrumentation_spec, pm_dashboard_requirements, etc.), distinguishing it from sibling workflows like pm_workflow_feature_kickoff or pm_workflow_lean_startup.

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?

The description says 'Use this tool to get a complete workflow plan' and implies post-launch context. It notes that the AI orchestrates execution by calling each step's tool. However, it does not explicitly state when not to use this tool or mention alternative workflows for different phases.

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

pm_workflow_product_strategyA

Product Strategy workflow - Frame a major strategic initiative with competitive context and documented decisions.

Effort Level: comprehensive

Steps:

  1. pm_competitive_analysis

  2. pm_stakeholder_summary

  3. pm_opportunity_tree

  4. pm_solution_brief

  5. pm_adr

Use this tool to get a complete workflow plan. The AI client orchestrates execution by calling each step's tool in sequence.

Args:

  • topic (string, required): The subject or feature for this workflow

  • context (string, optional): Additional context for the workflow

Returns: Markdown workflow plan with steps, guidance, and execution instructions.

ParametersJSON Schema
NameRequiredDescriptionDefault
topicYesThe subject or feature for this workflow
contextNoAdditional context, constraints, or requirements

TDQS

A3.7/5.0
Behavior3/5

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

No annotations are provided, so the description must disclose behavior. It describes the tool as returning a Markdown workflow plan and lists steps. It mentions 'Effort Level: comprehensive' and that the AI client orchestrates execution, but does not discuss side effects, permissions, or if any data is modified. Given the tool is a planner, the description is adequate but not thorough.

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

Conciseness4/5

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

The description is well-structured with a header, effort level, steps list, args, and returns. It is front-loaded and each section is concise. Minor redundancy in the args section (repeats schema) but overall efficient.

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 workflow tool, the description lists all steps, arguments, and the return format (Markdown plan). It provides enough context for an agent to understand what the workflow entails. Without an output schema, the description compensates by describing the output. However, it does not specify what each step returns or how they combine.

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 coverage is 100% for both parameters. The description repeats the parameter names and descriptions from the schema, adding that 'context' is optional and the return format. This adds minimal value beyond the schema, so a baseline score 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 description clearly states it is a 'Product Strategy workflow' to 'frame a major strategic initiative with competitive context and documented decisions'. The steps (e.g., pm_competitive_analysis) distinguish it from sibling workflow tools like pm_workflow_feature_kickoff or pm_workflow_lean_startup.

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 says 'Use this tool to get a complete workflow plan' and that 'The AI client orchestrates execution'. It implies usage for product strategy initiatives but lacks explicit guidance on when to use this vs. sibling workflows or when not to use it.

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

pm_workflow_quick_prdA

Quick PRD workflow - Streamlined workflow for rapidly creating a PRD when the problem and solution are already well-understood.

Effort Level: quick

Steps:

  1. pm_problem_statement

  2. pm_prd

Use this tool to get a complete workflow plan. The AI client orchestrates execution by calling each step's tool in sequence.

Args:

  • topic (string, required): The subject or feature for this workflow

  • context (string, optional): Additional context for the workflow

Returns: Markdown workflow plan with steps, guidance, and execution instructions.

ParametersJSON Schema
NameRequiredDescriptionDefault
topicYesThe subject or feature for this workflow
contextNoAdditional context, constraints, or requirements

TDQS

A3.9/5.0
Behavior3/5

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

No annotations provided, so description carries full burden. It discloses that the tool returns a workflow plan and that steps are executed sequentially by the AI client. However, it does not mention side effects, authentication needs, or potential limitations beyond the plan generation.

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

Conciseness4/5

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

The description is well-structured with a header, effort level, steps, usage note, arguments, and return format. It is clear and front-loaded, though it could be slightly more concise by avoiding repetition of the schema.

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 explains the return type (Markdown workflow plan) and the orchestration model. For a workflow tool with no output schema, it provides sufficient context for an AI agent to use it correctly, especially given the sibling tools for different workflows.

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 coverage is 100% with both parameters described. The description repeats the schema info in an Args block without adding significant new meaning. Baseline of 3 is appropriate as schema already documents the 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 clearly states the tool's purpose: 'Quick PRD workflow - Streamlined workflow for rapidly creating a PRD when the problem and solution are already well-understood.' It distinguishes from sibling workflow tools by specifying the quick, well-understood context.

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?

The description explicitly states when to use: 'when the problem and solution are already well-understood.' The sibling list provides context for alternatives, but no explicit when-not-to-use or alternative names are given.

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

pm_workflow_sprint_planningA

Sprint Planning workflow - Prepare sprint-ready stories with edge case coverage from a backlog or PRD.

Effort Level: quick

Steps:

  1. pm_refinement_notes

  2. pm_user_stories

  3. pm_edge_cases

Use this tool to get a complete workflow plan. The AI client orchestrates execution by calling each step's tool in sequence.

Args:

  • topic (string, required): The subject or feature for this workflow

  • context (string, optional): Additional context for the workflow

Returns: Markdown workflow plan with steps, guidance, and execution instructions.

ParametersJSON Schema
NameRequiredDescriptionDefault
topicYesThe subject or feature for this workflow
contextNoAdditional context, constraints, or requirements

TDQS

A4.3/5.0
Behavior4/5

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

With no annotations provided, the description carries full burden. It discloses that the tool returns a workflow plan (not executing steps), includes steps, effort level, and execution instructions ('The AI client orchestrates execution by calling each step's tool in sequence'). No contradictions.

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 highly structured: title, effort level, numbered steps, usage instruction, args, returns. Each sentence serves a purpose without fluff. Information is front-loaded with the core purpose.

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?

Given the tool's complexity (workflow orchestrator with multiple steps) and lack of annotations and output schema, the description fully covers: what it does, what it returns (Markdown plan), how it works (orchestration), and parameter details. No gaps.

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 coverage is 100%, so baseline is 3. The description restates the two parameters with nearly identical descriptions from the schema, adding minimal extra meaning (e.g., 'from a backlog or PRD'). Does not provide format or syntax details beyond schema.

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 clearly states 'Sprint Planning workflow - Prepare sprint-ready stories with edge case coverage from a backlog or PRD.' It specifies the verb (prepare) and resource (sprint-ready stories), clearly distinguishing it from sibling workflow tools like pm_workflow_feature_kickoff or pm_workflow_quick_prd.

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?

The description says 'Use this tool to get a complete workflow plan' and explains the AI orchestrates execution by calling tools in sequence. It provides clear context but does not explicitly state when not to use it or name alternatives. However, the context is sufficient for a workflow orchestrator.

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

pm_workflow_stakeholder_alignmentC

Stakeholder Alignment workflow - Build a compelling case for leadership buy-in before committing resources.

Effort Level: standard

Steps:

  1. pm_stakeholder_summary

  2. pm_problem_statement

  3. pm_solution_brief

  4. pm_launch_checklist

Use this tool to get a complete workflow plan. The AI client orchestrates execution by calling each step's tool in sequence.

Args:

  • topic (string, required): The subject or feature for this workflow

  • context (string, optional): Additional context for the workflow

Returns: Markdown workflow plan with steps, guidance, and execution instructions.

ParametersJSON Schema
NameRequiredDescriptionDefault
topicYesThe subject or feature for this workflow
contextNoAdditional context, constraints, or requirements

TDQS

C2.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 must fully convey behavioral traits. It describes the return format but does not disclose side effects (e.g., read-only, no resource creation) or any constraints beyond parameters. This is inadequate for a tool that returns a plan.

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

Conciseness4/5

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

The description is reasonably concise and well-structured with effort level and steps. Some redundancy exists (e.g., 'Use this tool to get a complete workflow plan' overlaps with the first sentence), but it remains clear and scannable.

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?

Given moderate complexity and no output schema, the description explains the return format and steps. However, it lacks usage context relative to sibling workflows and does not detail the structure of the returned Markdown plan, leaving gaps for an agent.

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% for both parameters (topic and context). The description repeats the schema's parameter descriptions without adding new meaning, so it meets the baseline but provides no extra value.

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?

The description clearly states the tool provides a Stakeholder Alignment workflow plan and builds a case for leadership buy-in. However, it does not distinguish this workflow from sibling workflow tools like pm_workflow_feature_kickoff or pm_workflow_lean_startup, which serve different purposes.

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?

The description offers minimal guidance on when to use this tool. It says 'Build a compelling case for leadership buy-in before committing resources,' but no explicit criteria for selection over alternatives or exclusions are given, which is insufficient given many sibling workflow tools.

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

pm_workflow_technical_discoveryA

Technical Discovery workflow - Evaluate technical feasibility and document architecture decisions.

Effort Level: standard

Steps:

  1. pm_spike_summary

  2. pm_adr

  3. pm_design_rationale

Use this tool to get a complete workflow plan. The AI client orchestrates execution by calling each step's tool in sequence.

Args:

  • topic (string, required): The subject or feature for this workflow

  • context (string, optional): Additional context for the workflow

Returns: Markdown workflow plan with steps, guidance, and execution instructions.

ParametersJSON Schema
NameRequiredDescriptionDefault
topicYesThe subject or feature for this workflow
contextNoAdditional context, constraints, or requirements

TDQS

A3.8/5.0
Behavior4/5

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

No annotations provided, so description carries full burden. It discloses the tool returns a plan and the AI client orchestrates execution, not performing actions directly. It also notes effort level and steps, making behavior clear.

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?

Description is well-structured with sections, effort level, and numbered steps. Every sentence is informative with no redundancy or wordiness. Front-loaded with purpose.

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?

Two parameters are sufficiently described. The return value is specified as a Markdown workflow plan. The description explains the execution model and step sequence. Minor gap: no details on output structure, but it's adequate for a workflow tool.

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?

Input schema coverage is 100%, and description repeats parameter explanations exactly as in schema. It does not add new meaning or constraints beyond the schema's own descriptions, so baseline score of 3 applies.

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?

The description clearly states the tool evaluates technical feasibility and documents architecture decisions. It provides a specific verb and resource. However, it does not differentiate from sibling workflow tools, so it lacks explicit distinction.

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 says 'Use this tool to get a complete workflow plan' and implies technical discovery context, but it does not provide explicit when-to-use vs alternatives or when-not-to-use. Sibling workflow tools exist without comparative guidance.

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

pm_workflow_triple_diamondA

Triple Diamond workflow - Comprehensive end-to-end workflow following the Triple Diamond framework from discovery through delivery.

Effort Level: comprehensive

Steps:

  1. pm_interview_synthesis (optional)

  2. pm_stakeholder_summary (optional)

  3. pm_problem_statement

  4. pm_hypothesis

  5. pm_opportunity_tree (optional)

  6. pm_solution_brief

  7. pm_prd

Use this tool to get a complete workflow plan. The AI client orchestrates execution by calling each step's tool in sequence.

Args:

  • topic (string, required): The subject or feature for this workflow

  • context (string, optional): Additional context for the workflow

Returns: Markdown workflow plan with steps, guidance, and execution instructions.

ParametersJSON Schema
NameRequiredDescriptionDefault
topicYesThe subject or feature for this workflow
contextNoAdditional context, constraints, or requirements

TDQS

A3.9/5.0
Behavior3/5

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

With no annotations, the description carries full burden. It explains that the tool returns a Markdown workflow plan and that the AI orchestrates steps, but does not disclose behavioral traits like side effects or prerequisites. As a read-only plan generation tool, this is adequate but could be more explicit.

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

Conciseness4/5

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

The description is well-structured with clear sections: title, effort level, steps, usage instruction, args, returns. It is front-loaded and concise, though slightly verbose in listing steps.

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?

Despite no output schema, the description explains the return format (Markdown workflow plan). It also lists steps and their optionality, providing sufficient context for a workflow planning tool.

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 parameters are well-documented in the schema. The description repeats the parameter names and brief descriptions but adds no significant new meaning beyond the schema.

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 clearly identifies the tool as a comprehensive end-to-end workflow following the Triple Diamond framework, listing its steps. This distinguishes it from sibling workflow tools that use different frameworks.

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?

The description states to use it to get a complete workflow plan and explains that the AI client orchestrates execution. It provides context on when to use it but does not explicitly mention when not to use it or compare to alternatives.

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. 19 tool updatesv2.9.3
    • First observedpm_cache_stats
    • First observedpm_list_personas
    • First observedpm_list_prompts
    • First observedpm_list_resources
    • First observedpm_list_skills
    • First observedpm_list_workflows
    • First observedpm_search_skills
    • First observedpm_validate
    • First observedpm_workflow_customer_discovery
    • First observedpm_workflow_experiment_cycle
    • First observedpm_workflow_feature_kickoff
    • First observedpm_workflow_lean_startup
    • First observedpm_workflow_post_launch_learning
    • First observedpm_workflow_product_strategy
    • First observedpm_workflow_quick_prd
    • First observedpm_workflow_sprint_planning
    • First observedpm_workflow_stakeholder_alignment
    • First observedpm_workflow_technical_discovery
    • First observedpm_workflow_triple_diamond

TDQS

A3.7/5.0
Disambiguation5/5

All tools have distinct purposes. Utility tools (list, validate, search, cache) are clearly separate from workflow tools. Each workflow targets a different PM process with unique step sequences, leaving no ambiguity.

Naming Consistency4/5

Most tools follow a pm_verb_noun pattern (e.g., pm_list_skills, pm_workflow_feature_kickoff). However, pm_cache_stats uses noun_noun and pm_validate is just a verb, creating minor inconsistencies.

Tool Count5/5

19 tools provide a comprehensive set covering utility operations, workflow planning, and validation. The number is well-scoped for a PM skills server without being overwhelming.

Completeness2/5

The server lacks the core skill tools (e.g., pm_problem_statement, pm_prd) needed to execute workflows. Workflows only return plans, and the only direct skill tool is pm_validate, leaving agents unable to create artifacts.

Maintenance

ActivityMaintained
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/product-on-purpose/pm-skills-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server