Planexe

v1.0.0Coding Agentsstable

MCP server for generating rough-draft project plans from natural-language prompts.

agiaiai-planningllamaindexmcp
Share:
380
Stars
0
Downloads
0
Weekly
0/5

What is Planexe?

Planexe is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to mcp server for generating rough-draft project plans from natural-language prompts.

MCP server for generating rough-draft project plans from natural-language prompts.

This server falls under the Coding Agents category on MCPgee, the world's largest MCP server directory with 33,000+ servers.

Features

  • MCP server for generating rough-draft project plans from nat

Use Cases

AI project plan generation
PDDL-based planning
Natural language planning
PlanExeOrg

Maintainer

LicenseMIT
Languagepython
Versionv1.0.0
UpdatedMay 21, 2026
Statushealthy
Maintenanceactive

Works with

ClaudeOpenAIwindowsmacoslinux

Installation

Manual Installation

npx planexe

Configuration

Configuration Details

Config File

claude_desktop_config.json

Performance

Response Metrics

Response Time< 200ms
ThroughputMedium

Resource Usage

Memory UsageLow
CPU UsageLow

How to Set Up and Use Planexe

PlanExe is an MCP server that turns a short natural-language idea into a detailed, multi-page project plan in roughly 15 minutes. It uses LLM pipelines (via OpenRouter, Ollama, or LM Studio) and PDDL-based planning to produce structured work-breakdown structures, feasibility assessments, and task hierarchies. Developers, product managers, and researchers use it to rapidly scaffold complex project plans without manual document writing.

Prerequisites

  • An OpenRouter account with a funded API key (or a local Ollama/LM Studio instance as an alternative)
  • A PlanExe account at home.planexe.org if using the hosted cloud MCP endpoint
  • Docker and Docker Compose (recommended) OR Python 3.10+ for local runs
  • An MCP-compatible client such as Claude Desktop or Claude Code
1

Create a PlanExe account and obtain credentials

Sign up at home.planexe.org to get a PlanExe API key (format: pex_...). If you prefer a fully local setup, you will use OpenRouter or Ollama instead and can skip cloud account creation.

2

Set up your LLM backend

PlanExe calls an LLM to generate plans. The easiest path is an OpenRouter API key. Alternatively, install and run Ollama locally with a capable model.

# Option A: export your OpenRouter key
export OPENROUTER_API_KEY="sk-or-..."

# Option B: start Ollama with a capable model
ollama serve
ollama pull llama3.1:70b
3

Run PlanExe via Docker Compose (recommended)

Clone the repository and bring up the worker and frontend services. Copy the example env file first and fill in your API keys.

git clone https://github.com/PlanExeOrg/PlanExe.git
cd PlanExe
cp .env.docker-example .env
# Edit .env and set OPENROUTER_API_KEY
docker compose up worker_plan frontend_multi_user
4

Add PlanExe to your MCP client configuration

Point your MCP client at the hosted cloud endpoint using your PlanExe API key. The remote MCP URL is https://mcp.planexe.org/mcp and requires the X-API-Key header.

5

Test the server by creating a sample plan

Use the plan_create tool in your MCP client with a short natural-language description of your project idea. Poll plan_status until the plan is complete, then retrieve results with plan_file_info.

Planexe Examples

Client configuration

Connect to the hosted PlanExe MCP endpoint. Replace the X-API-Key value with your pex_... key from the dashboard.

{
  "mcpServers": {
    "planexe": {
      "command": "npx",
      "args": ["planexe"],
      "env": {
        "OPENROUTER_API_KEY": "sk-or-your-key-here"
      }
    }
  }
}

Prompts to try

After connecting, ask Claude to use PlanExe's tools to build a project plan.

- "Use PlanExe to create a project plan for building a B2B SaaS invoicing platform"
- "Generate a rough-draft plan for launching a community podcast in 90 days"
- "Create a work-breakdown structure for migrating a monolith to microservices"
- "Show me the example plans available in PlanExe"
- "Check the status of my latest PlanExe plan"

Troubleshooting Planexe

plan_create returns an error about missing LLM credentials

Ensure OPENROUTER_API_KEY is set in your environment or .env file. If using Ollama, confirm the server is running on localhost:11434 and the model you selected with model_profiles is actually pulled.

Plan generation takes much longer than expected or hangs

Full plans can take 10-20 minutes. Use plan_status to poll progress. If it is stuck, try plan_retry. Lightweight models (e.g. mistral-7b) produce faster but shallower plans than GPT-4-class models.

Docker Compose services exit immediately on startup

Check that your .env file exists and contains valid values (OPENROUTER_API_KEY at minimum). Run `docker compose logs worker_plan` to see the specific error.

Frequently Asked Questions about Planexe

What is Planexe?

Planexe is a Model Context Protocol (MCP) server that mcp server for generating rough-draft project plans from natural-language prompts. It connects AI assistants to external tools and data sources through a standardized interface.

How do I install Planexe?

Follow the installation instructions on the Planexe GitHub repository. Clone the repo, install dependencies, and add the server config to your AI client.

Which AI clients work with Planexe?

Planexe works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.

Is Planexe free to use?

Yes, Planexe is open source and available under the MIT license. You can use it freely in both personal and commercial projects.

Browse More Coding Agents MCP Servers

Explore all coding agents servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.

Quick Config Preview

{ "mcpServers": { "planexe": { "command": "npx", "args": ["-y", "planexe"] } } }

Add this to your claude_desktop_config.json or .cursor/mcp.json

Read the full setup guide →

Ready to use Planexe?

Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.

33,000+ ServersFree & Open SourceStep-by-Step Guides