Agent Pm MCP Server

Planning and orchestration for AI-driven software development

Local serverstdio

What is the Agent Pm MCP server?

Planning and orchestration for AI-driven software development. The agent pm mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 3 defined tools rather than through you.

What it actually does

AgentPM is a planning and orchestration system for AI-driven software development. Installed locally as an MCP server, it integrates with any IDE that supports Anthropic's Model Context Protocol specification, including Cursor, Augment, VS Code Copilot, Cline and Roo.

  • Frictionless Setup — Get started simply by chatting with your coding agent - no CLIs or complex rules needed
  • Token/Context Optimization — Consolidates functionality around a core set of dynamic tools that are contextually economical and easy for coding agents to use and understand
  • Intelligent Context Management — Delivers the right information to your coding agent at the right time, optimizing token usage and eliminating the need for manual context handling or "memory banks"
  • Structured Output — Automatically generates clear, human-readable markdown documents; no need to decipher JSON or plain text files
  • Integrated Documentation Retrieval — Automatically retrieve relevant documentation through Context7 integration
  • Comprehensive Task Management — Creates well-structured tasks with proper dependencies, priorities, implementation details, and status tracking. Complex work can be broken down into manageable subtasks with clear relationships

Adding it to your client

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.

Its toolset

Everything the assistant can do here goes through one of these:

  • Prerequisites — The Prerequisites tool exposed by this server
  • Cursor — Add the following to your project's .cursor/mcp.json file (or install globally at ~/.cursor/mcp.json)
  • Augment — Add the following to your VS-Code Augment User Settings file (CMD+SHIFT+P > Augment: Edit Settings > Edit in settings.json): ~/Library/Application

Configuration

You will need 5 environment variables: PROJECT_ROOT, ANTHROPIC_API_KEY, PERPLEXITY_API_KEY, ANTHROPIC_BASE_URL, PERPLEXITY_BASE_URL. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

  • Node.js: Version 20.0.0 or higher - Anthropic API Key: For Claude AI integration - Perplexity API Key: For research-backed task generation

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the agent pm mcp server does with a few real requests.

When to reach for it

Among the knowledge and memory options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Agent Pm's toolset — Prerequisites, Cursor, Augment — is a fair guide to whether it matches your workflow. It is maintained by gannonh; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Agent Pm's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Available tools

ToolWhat it does
PrerequisitesThe Prerequisites tool exposed by this server.
CursorAdd the following to your project's .cursor/mcp.json file (or install globally at ~/.cursor/mcp.json).
AugmentAdd the following to your VS-Code Augment User Settings file (CMD+SHIFT+P > Augment: Edit Settings > Edit in settings.json): ~/Library/Application Support/Code/User/settings.json.

How to install the Agent Pm MCP server

{
    "mcpServers": {
        "agent-pm": {
          "command": "npx",
          "args": [
            "-y",
            "@gannonh/agent-pm@latest"
          ],
          "env": {
            "PROJECT_ROOT": "/path/to/project/root/",
            "ANTHROPIC_API_KEY": "sk-your-anthropic-api-key",
            "PERPLEXITY_API_KEY": "pplx-your-perplexity-api-key"
          }
        }
    }
  }

Configuration as documented by the project. Restart the client after saving.

Configuration

  • Node.js: Version 20.0.0 or higher - Anthropic API Key: For Claude AI integration - Perplexity API Key: For research-backed task generation
VariableDescriptionRequired
PROJECT_ROOTConfiguration value read at startup.Optional
ANTHROPIC_API_KEYCredential the server authenticates with.Yes
PERPLEXITY_API_KEYCredential the server authenticates with.Yes
ANTHROPIC_BASE_URLEndpoint or connection string the server talks to.Yes
PERPLEXITY_BASE_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use Agent Pm to Prerequisites.
  • Use Agent Pm to Cursor.
  • Use Agent Pm to Augment.

Frequently asked questions

It connects Agent Pm to MCP-compatible AI assistants such as Claude and Cursor, exposing 3 tools (Prerequisites, Cursor, Augment) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Agent Pm directly.