We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66446f4 commit da78304Copy full SHA for da78304
2 files changed
.github/workflows/ci.yml
@@ -46,7 +46,6 @@ jobs:
46
- name: Run Clippy
47
run: cargo make clippy
48
continue-on-error: false
49
- if: matrix.os == 'ubuntu-latest' # Run Clippy only on Linux to save time
50
51
- name: Run Rustfmt
52
run: cargo make fmt -- --check
crates/rust-mcp-sdk/tests/common/common.rs
@@ -5,6 +5,8 @@ use rust_mcp_schema::{
5
use rust_mcp_sdk::mcp_client::ClientHandler;
6
7
pub const NPX_SERVER_EVERYTHING: &str = "@modelcontextprotocol/server-everything";
8
+
9
+#[cfg(unix)]
10
pub const UVX_SERVER_GIT: &str = "mcp-server-git";
11
12
pub fn test_client_info() -> InitializeRequestParams {
0 commit comments