An MCP server that exposes the SIRIO library for creation and analysis of Petri Nets
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"sirio": {
"args": [
"-Dspring.ai.mcp.server.stdio=true",
"-jar",
"C:\\PATH-TO-SIRIO_mcp_server\\target\\sirio_mcp_server-0.0.1-SNAPSHOT.jar"
],
"command": "java"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server implementation that exposes powerful Petri Net modeling and analysis capabilities through the SIRIO/OrisTool library. This server enables AI assistants (like Claude, Gemini) to create, manipulate, and analyze Generalized Stochastic Petri Nets (GSPNs) through a standardized tool-calling interface.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in developer-tools / education
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
Workspace template + MCP server for Claude Code, Codex CLI, Cursor & Windsurf. Multi-agent knowledge engine (ag-refresh / ag-ask) that turns any codebase into a queryable AI assistant.
MCP server for accessing Figma plugin console logs and screenshots via Cloudflare Workers or local mode
MCP server for using the GitLab API
MCP Security Weekly
Get CVE alerts and security updates for SIRIO_mcp_server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server implementation that exposes powerful Petri Net modeling and analysis capabilities through the SIRIO/OrisTool library. This server enables AI assistants (like Claude, Gemini) to create, manipulate, and analyze Generalized Stochastic Petri Nets (GSPNs) through a standardized tool-calling interface.
This project bridges the gap between AI-powered development tools and formal modeling techniques by:
The server uses the SIRIO/OrisTool library, a powerful Java framework for modeling and analyzing stochastic systems.
The project uses Spring Boot 3.5.7 and includes:
spring-ai-starter-mcp-server - MCP protocol implementationsirio (org.oris-tool) v2.0.5 - Petri Net modeling and analysisjackson-databind - JSON serialization for analysis resultsgit clone https://github.com/NicMen99/SIRIO_mcp_server.git
cd SIRIO_mcp_server
Use the Maven Wrapper to build the project:
.\mvnw.cmd clean package
This command will:
target/sirio_mcp_server-0.0.1-SNAPSHOT.jarCheck that the JAR file was created successfully:
ls target\sirio_mcp_server-0.0.1-SNAPSHOT.jar
To enable GitHub Copilot to communicate with the SIRIO MCP server, you need to configure the MCP connection using STDIO transport.
Create the .vscode directory in your project root if it doesn't exist:
mkdir .vscode -Force
Create a file named mcp.json in the .vscode directory with the following content:
{
"servers": {
"sirio": {
"command": "C:\\Program Files\\Java\\jdk-25\\bin\\java.exe", // or wherever you have the java executable for the desired version
"args": [
"-jar",
"C:\\PATH-TO-YOUR-PROJECT\\target\\sirio_mcp_server-0.0.1-SNAPSHOT.jar"
]
}
}
}
Important Configuration Notes:
\\) in Windows pathscommand path to match your JDK installation"sirio" can be changed, but it identifies this server in VS CodeTo enable remote debugging, uncomment the debug args in mcp.json:
{
"servers": {
"sirio": {
"command": "C:\\Program Files\\Java\\jdk-25\\bin\\java.exe", // or wherever you have the java executable for the desired version
"args": [
"-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=5005",
"-jar",
"C:\\PATH-TO-SIRIO_mcp_server\\target\\sirio_mcp_server-0.0.1-SNAPSHOT.jar"
]
}
}
}
Thi