# lab-system-rmcp **Repository Path**: lauset/lab-system-rmcp ## Basic Information - **Project Name**: lab-system-rmcp - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-08-22 - **Last Updated**: 2025-08-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Lab System Mcp Server RMcp Server ## Cli - rmcp_sqlexec_sse - rmcp_sqlexec_stdio - rmcp_gd_sse - rmcp_gd_stdio ## Usage 1. stdio json ```json { "mcpServers": { "rmcp-sqlexec-stdio": { "command": "project/target/debug/rmcp_sqlexec_stdio", "args": [ "--database-url", "mysql://username:password@localhost:3306/db", "--max-connections", "1", "--timeout", "10", "--log-level", "debug" ] }, "rmcp-gd-stdio": { "command": "project/target/debug/rmcp_gd_stdio", "args": [ "--ws-url", "ws://localhost:9080" ] } } } ``` 2. sse json ```shell # SqlExec sse url http://localhost:3321/sse -d database_url # Gd sse url http://localhost:3322/sse -w ws_url ``` ## Run development ```shell # SqlExec print help cargo run --bin rmcp_sqlexec_sse -- -h cargo run --bin rmcp_sqlexec_stdio -- -h # Gd print help cargo run --bin rmcp_gd_sse -- -h cargo run --bin rmcp_gd_stdio -- -h ``` test ```shell # SqlExec print help ./target/debug/rmcp_sqlexec_sse -h # Gd print help ./target/debug/rmcp_gd_sse -h ``` ## Build ```shell cargo clean cargo build ``` ## Crates Sql Exec: - rmcp_db - rmcp_sqlexec_sse - rmcp_sqlexec_stdio Godot: - rmcp_gd - rmcp_gd_sse - rmcp_gd_stdio