Skip to main content
Glama

Get PM Playbook

get_pm_playbook

Retrieve project management methodology guides for session workflows to standardize processes and improve team coordination.

Instructions

Get PM session methodology guide. No auth needed.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • Complete registration and handler implementation of get_pm_playbook tool. Defines the tool name, title, description, input schema (empty object), and the async handler function that returns a stub playbook with PM methodology guidance. The handler constructs the playbook text string, wraps it with finalizeToolResult, and returns it in MCP content format.
    server.registerTool(
      "get_pm_playbook",
      {
        title: "Get PM Playbook",
        description: "Get PM session methodology guide. No auth needed.",
        inputSchema: z.object({}),
      },
      async () => {
        // The playbook would be bundled or fetched. For now, return a stub.
        const playbook =
          "PM Playbook: Use pm_focus for dashboard, standup for daily summary. " +
          "Prioritize blocked cards first, then stale cards. " +
          "Save observations with save_workflow_preferences.";
        return {
          content: [
            {
              type: "text",
              text: JSON.stringify(finalizeToolResult({ playbook })),
            },
          ],
        };
      },
    );
  • Input schema definition for get_pm_playbook tool - an empty z.object({}) indicating no input parameters are required.
    inputSchema: z.object({}),
  • Import statement for registerPmTools function which registers the get_pm_playbook tool.
    import { registerPmTools } from "./pm.js";
  • Registration call where registerPmTools is invoked, causing get_pm_playbook to be registered with the MCP server.
    registerPmTools(server);
Behavior3/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 adds some behavioral context by stating 'No auth needed,' which is useful for understanding access requirements. However, it lacks details on response format, error handling, or any other operational traits, making it minimally adequate but incomplete.

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 with two short sentences that directly state the purpose and an important behavioral note ('No auth needed'). There is no wasted language, and it's front-loaded with the core action, making it efficient and easy to parse.

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 the tool's simplicity (0 parameters, no output schema, no annotations), the description is adequate but minimal. It covers the basic purpose and an auth note, but for a tool that likely returns a guide, more context on the content or format would be helpful, especially without an output schema. It's complete enough to be usable but lacks depth.

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 0 parameters with 100% coverage, so no parameter documentation is needed. The description doesn't add parameter details, which is appropriate here, but it also doesn't compensate for any gaps since there are none. A baseline of 4 is given as it meets expectations for a parameterless tool.

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 action ('Get') and resource ('PM session methodology guide'), making the purpose understandable. However, it doesn't differentiate this tool from potential siblings like 'get_account' or 'get_card' that also retrieve resources, leaving room for ambiguity about why this specific guide is needed.

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 provides no guidance on when to use this tool versus alternatives. With many sibling tools like 'get_account' or 'list_projects', there's no indication of context, prerequisites, or exclusions, leaving the agent to guess based on the name alone.

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

Install Server

Other Tools

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/rangogamedev/codecks-mcp'

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