Developer Tools
pflow.xyz
A visual editor for creating, simulating, and analyzing Petri net models, with code generation for state machines, resource flows, game mechanics, and token standards.
ENDPOINT 1
https://sim.pflow.xyz/mcp
Known tools 0
No tool metadata was available in the registry cache.
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.pflow-xyz]
url = "https://sim.pflow.xyz/mcp"
enabled = true
bearer_token_env_var = "MCP_BEARER_TOKEN"
Authentication is required. Replace the placeholder locally and never commit a secret.
Claude Code
.mcp.json
{
"mcpServers": {
"pflow-xyz": {
"type": "http",
"url": "https://sim.pflow.xyz/mcp",
"headers": {
"Authorization": "Bearer YOUR_BEARER_TOKEN"
}
}
}
}
Authentication is required. Replace the placeholder locally and never commit a secret.
Claude Desktop
Settings → Connectors → Add custom connector
Name: pflow-xyz
Remote MCP URL: https://sim.pflow.xyz/mcp
Add the URL as a custom connector, then complete its supported authorization flow. Claude Desktop remote connectors are configured in the UI.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"pflow-xyz": {
"url": "https://sim.pflow.xyz/mcp",
"headers": {
"Authorization": "Bearer YOUR_BEARER_TOKEN"
}
}
}
}
Authentication is required. Replace the placeholder locally and never commit a secret.
Visual Studio Code
.vscode/mcp.json
{
"servers": {
"pflow-xyz": {
"type": "http",
"url": "https://sim.pflow.xyz/mcp",
"headers": {
"Authorization": "Bearer ${input:mcp-token}"
}
}
},
"inputs": [
{
"type": "promptString",
"id": "mcp-token",
"description": "pflow-xyz bearer token",
"password": true
}
]
}
Authentication is required. Replace the placeholder locally and never commit a secret.
Generic MCP
Client-specific MCP configuration
{
"name": "pflow-xyz",
"transport": "streamable-http",
"url": "https://sim.pflow.xyz/mcp",
"headers": {
"Authorization": "Bearer YOUR_BEARER_TOKEN"
}
}
Authentication is required. Replace the placeholder locally and never commit a secret.
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
ENDPOINT 2
https://pilot.pflow.xyz/mcp
MCP server metadata
- Name
- petri-pilot
- Version
- dev
Known tools 38
petri_amm_depthDepth chart for a constant-product AMM: plots slippage (or output price) as a function of trade size.
Potential side effectspetri_analyzeAnalyze a Petri net model for behavioral properties including reachability, deadlocks, liveness, boundedness, and element importance.
Inferred read-onlypetri_applicationGenerate a composed application from an Application specification: every entity becomes its own Petri net (subnet), the app is their composition.
Inferred read-onlypetri_bundleGenerate a composed application from a raw bundle document: subnets (inline Petri net models) joined by token/data/event/guard links.
Inferred read-onlypetri_conformanceCheck how well a Petri net model matches real observed behavior, by replaying an event log against it.
Inferred read-onlypetri_distributionRun N stochastic paths and visualize the distribution of an observable at the final time.
Inferred read-onlypetri_docsGenerate markdown documentation from a Petri net model with mermaid diagrams for visualization.
Inferred read-onlypetri_explainExplain the math behind any concept used in this MCP — formulas, intuition, derivations, worked examples, and what tool to try next.
Inferred read-onlypetri_fit_discreteFit transition rates to observed discrete event data — which transition fired at what time — by maximising the exact CTMC (Gillespie/SSA) log-likelihood.
Inferred read-onlypetri_frontendGenerate a vanilla JavaScript ES modules frontend application from a Petri net model.
Inferred read-onlypetri_heatmapRender the model's marking as a 2D colored grid heatmap (viridis colormap).
Inferred read-onlypetri_migrateMigrate a Petri net model from v1 (flat) to v2 (nested) schema format.
Inferred read-onlypetri_odeRun an ODE (mass-action kinetics) simulation of the Petri net using the Tsit5 solver (matches pflow.xyz).
Inferred read-onlypetri_ode_sensitivityODE sensitivity analysis: perturb each transition's rate by a small delta and measure how much an observable's equilibrium value moves.
Inferred read-onlypetri_ode_sweepRun multiple ODE trajectories at different rates and overlay them on one plot.
Inferred read-onlypetri_param_heatmap2D parameter sweep: vary two rate constants over a grid, run each combo to equilibrium, render the observable as a viridis heatmap.
Inferred read-onlypetri_phase_plotPhase-space portrait: run an ODE, project trajectory into the (place_x, place_y) plane (no time axis).
Inferred read-onlypetri_rate_scanParameter sweep: vary one transition's mass-action rate over a list of values, run each to equilibrium, plot observables (steady-state place concentrations) vs the swept rate.
Inferred read-onlypetri_sankeySankey-style flow diagram: run an ODE, compute integrated flow through each arc, render the net with arc widths proportional to flow magnitude.
Inferred read-onlypetri_scenarioAnswer a what-if about a Petri net: override the initial marking (staff on duty, stock on hand, queue depth), override rates, or vary a rate over time, then run it forward.
Inferred read-onlypetri_stochasticGillespie Stochastic Simulation Algorithm (SSA) over the Petri net's discrete marking.
Inferred read-onlypetri_verifyCheck whether a Petri net model satisfies stated correctness properties.
Inferred read-onlypetri_visualizeGenerate an SVG visualization of a Petri net model showing places, transitions, and arcs.
Inferred read-onlyCONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.petri-pilot]
url = "https://pilot.pflow.xyz/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"petri-pilot": {
"type": "http",
"url": "https://pilot.pflow.xyz/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: petri-pilot
Remote MCP URL: https://pilot.pflow.xyz/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"petri-pilot": {
"url": "https://pilot.pflow.xyz/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"petri-pilot": {
"type": "http",
"url": "https://pilot.pflow.xyz/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "petri-pilot",
"transport": "streamable-http",
"url": "https://pilot.pflow.xyz/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
TRUST AND VERIFICATION EVIDENCE
Trust Data Available
BuiltWith Trust API v2 evidence for pflow.xyz was fetched 2026-08-17T03:52:27.269Z.
pflow.xyz is assessed as Trusted: Domain has an established technology history spanning over a year.
Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.