drio
Open app

mcp_rs_test

Source

MCP server implementation in Rust

Catalog onlyCatalog onlySTDIO

Overview

MCP RS Test is a server implementation of the Model Context Protocol (MCP) developed in Rust. The project serves both as a learning tool for Rust programming and as a demonstration of the MCP protocol. # How to use MCP RS Test? To use MCP RS Test, you need to have Rust installed. Clone the repository from GitHub, and build the project using Cargo. To install the server, add specific configuration commands to your claude_desktop_config.json file. # Key features of MCP RS Test? - Implements the Model Context Protocol (MCP) - Written in Rust for performance and safety - Provides a hands-on learning experience for Rust developers # Use cases of MCP RS Test?

  1. Learning the implementation details and usage of the MCP protocol.
  2. Experimenting with building and deploying Rust applications.
  3. Serving as a reference implementation for developers interested in MCP. # FAQ from MCP RS Test? - What are the requirements to run MCP RS Test? > You need Rust version 1.83 or later to build and run the server. - How can I build MCP RS Test? > You can build the project by running cargo build for a debug build or cargo build --release for a release build. - Is there documentation available? > Yes, detailed instructions can be found in the project's README file on GitHub.

Add to your AI client

Use these steps to connect mcp_rs_test in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcp-rs-test-andrewsah": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-rs-test-andrewsah"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcp-rs-test-andrewsah": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-rs-test-andrewsah"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-rs-test-andrewsah": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-rs-test-andrewsah"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-rs-test-andrewsah": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-rs-test-andrewsah"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-rs-test-andrewsah": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-rs-test-andrewsah"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-rs-test-andrewsah": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-rs-test-andrewsah"
      ]
    }
  }
}