Jij MCP Server
A server that provides tools and utilities to support the implementation of Jij Modeling, featuring easy configuration and an extensible architecture for custom modeling workflows.
A server that provides tools and utilities to support the implementation of Jij Modeling, featuring easy configuration and an extensible architecture for custom modeling workflows.
A server that provides tools to support the implementation of Jij Modeling.
The Jij MCP Server contains various tools and utilities designed to assist with the implementation of JijModeling.
The MCP server can be configured in your settings file as follows:
{
"mcpServers": {
"jij": {
"command": "uv",
"args": [
"--directory",
"<YOUR PATH>/jij-mcp-server",
"run",
"jij_mcp/server.py"
]
}
}
}
This configuration specifies:
- Server name: jij
- Command to run: uv
- Arguments:
- --directory
: Specifies the server location
- Path to your server directory
- run
: Command to execute the server
- jij_mcp/server.py
: Server script to run
Once configured, the MCP server will provide various tools to help with JijModeling implementation.
Apache License 2.0
[
{
"description": "n Provide a guide to JijModeling.nn Returns:n str: The guide to JijModeling.n ",
"inputSchema": {
"properties": {},
"title": "learn_jijmodelingArguments",
"type": "object"
},
"name": "learn_jijmodeling"
},
{
"description": "n Check the code for JijModeling rules.nn Args:n code (str): The code to check.nn Returns:n dict: The result of the check.n ",
"inputSchema": {
"properties": {
"code": {
"title": "Code",
"type": "string"
}
},
"required": [
"code"
],
"title": "jm_checkArguments",
"type": "object"
},
"name": "jm_check"
}
]