pypddlengine
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@pypddlengineInitialize the planning problem from domain and problem files"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
pypddlengine
A Python PDDL engine and MCP (Model Context Protocol) server that enables AI agents to interactively explore PDDL planning problems.
Features
Standalone PDDL engine — parse, validate, and execute PDDL domains and problems
Interactive plan exploration — step through plans, query reachable actions, inspect world state
MCP server — expose the engine as tools to any MCP-compatible AI agent (Claude Desktop, VS Code, etc.)
Python API — direct programmatic access with structured JSON responses
Session logging — record agent interactions to CSV/JSON for analysis
Supported PDDL Features
Feature | Requirement | Notes |
STRIPS |
| Basic actions, positive/negative preconditions & effects |
Typing |
| Typed objects/parameters, type hierarchies |
Equality |
|
|
Negative preconditions |
|
|
Disjunctive preconditions |
|
|
Existential preconditions |
|
|
Universal preconditions |
|
|
Conditional effects |
|
|
Implication |
|
|
Numeric fluents |
|
|
Action costs / metric |
|
|
Constants | — |
|
Unsupported PDDL Features
Feature | Notes |
Durative actions ( | Raises an explicit error with a descriptive message |
Derived predicates ( | Not parsed; will fail on load |
Maximize metric | Only |
Arithmetic in conditions | Numeric expressions like |
Related MCP server: LLMMO Game Server
Installation
git clone https://github.com/kgoe-ait/pypddlengine
cd pypddlengine
uv syncOr install from PyPI (once published):
pip install pypddlengineUsage
Python API — Simulator
from pypddlengine.engine import Simulator
sim = Simulator(domain_str, problem_str, plan_str)
sim.step_all()
print(sim.is_goal_reached())Step through manually:
sim = Simulator(domain_str, problem_str)
sim.step(("move", ("loc1", "loc2")))
print(sim.get_executable_actions())
print(sim.is_goal_reached())Python API — Exploration API
Higher-level API with structured JSON responses, designed for AI agent tool use:
from pypddlengine.api import PDDLExplorationAPI
api = PDDLExplorationAPI(domain_str, problem_str)
actions = api.get_available_actions() # {"count": 4, "actions": [...]}
result = api.execute_action("move", ("a", "b")) # {"success": true, ...}
api.is_goal_reached() # {"goal_reached": false, ...}
api.reset()Session Logger
Wraps the exploration API and logs every interaction to CSV/JSON:
from pypddlengine.session_logger import PDDLSessionLogger
session = PDDLSessionLogger(domain_str, problem_str, session_id="experiment_1")
session.execute_action("move", ["loc1", "loc2"])
session.export_to_csv("session.csv")
session.export_to_json("session.json")
session.print_summary()MCP Server (Claude Desktop)
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"pddl-engine": {
"command": "uv",
"args": ["run", "python", "-m", "pypddlengine.server"],
"cwd": "/path/to/pypddlengine"
}
}
}MCP Server (VS Code)
Already configured in .vscode/mcp.json — works out of the box when opening this project.
MCP Tools
Once connected, the AI agent can use these tools:
Tool | Description |
| Initialize session with domain and problem PDDL strings |
| Initialize session from domain and problem file paths |
| Get all executable actions in current state |
| Execute an action by name and arguments |
| View all true predicates and fluents |
| Check if goal conditions are met |
| Reset to initial state |
| Review actions taken so far |
| Re-read the PDDL domain definition |
| Re-read the PDDL problem definition |
Running Tests
uv run pytestProject Structure
pypddlengine/
├── server.py # MCP server
├── api.py # Exploration API (structured JSON responses)
├── session_logger.py # Session logging wrapper
└── engine/ # Core PDDL engine
├── simulator.py # Plan simulation
├── parser/ # PDDL lexer & parser
├── interpreter/ # Domain/problem interpretation
└── execution/ # State management & action executionLicense
Apache 2.0 — see LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/AIT-Complex-Dynamical-Systems/pypddlengine'
If you have feedback or need assistance with the MCP directory API, please join our Discord server