quri-sdk-mcp-server

QunaSys/quri-sdk-mcp-server

3.1

If you are the rightful owner of quri-sdk-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to dayong@mcphub.com.

QURI Parts MCP server is designed to facilitate communication between Model Context Protocol (MCP) servers and Large Language Models (LLMs).

QURI Parts MCP server

The purpose of this project is to provide an MCP server for LLMs.

This repo uses UV for package management

Config

The configuration file for this MCP server should look something like

{
    "mcpServers": {
        "quri_sdk": {
            "command": "uv",
            "args": [
                "--directory",
                "PATH/TO/THIS/MODULE",
                "run",
                "quri_sdk_mcp/server.py"
            ]
        }
    }
}

or if you use WSL

{
    "mcpServers": {
        "quri_sdk": {
            "command": "wsl",
            "args": [
                "bash",
                "-c",
                "PATH/TO/UV/EXECUTABLE/IN/WSL/uv --directory PATH/TO/THIS/MODULE run quri_sdk_mcp/server.py"
            ]
        }
    }
}