MCP.so
登录

Mcp Server Rust

@lotharschulz

关于 Mcp Server Rust

Rust MCP Local Server

基本信息

分类

其他

运行时

node

传输方式

stdio

发布者

lotharschulz

配置

使用下面的配置,将此服务器添加到你的 MCP 客户端。

{
  "mcpServers": {
    "mcp-server": {
      "command": "node",
      "args": [
        "[your local path]/mcpserver/build/index.js"
      ]
    }
  }
}

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

What is Mcp Server Rust?

Mcp Server Rust integrates a Rust function (e.g., factorial) into an MCP client like Claude Desktop. It compiles Rust to WebAssembly, then serves it through a Node.js MCP server. This is for developers who want to call Rust code from an MCP‑based AI assistant.

How to use Mcp Server Rust?

First, build the Rust code with npm run build:wasm:release, then install dependencies with npm install. Next, add the server to Claude Desktop’s configuration file (~/Library/Application Support/Claude/claude_desktop_config.json on macOS, %APPDATA%\Claude\claude_desktop_config.json on Windows) as a custom MCP server. Finally, start Claude Desktop and consent to use the MCP server function.

Key features of Mcp Server Rust

  • Compiles Rust functions to WebAssembly
  • Exposes a factorial function as an MCP tool
  • Integrates with Claude Desktop via stdio
  • Simple Node.js command to launch the server
  • Includes a video tutorial on YouTube
  • Provides test commands for Rust code

Use cases of Mcp Server Rust

  • Run Rust‑powered calculations from a Claude Desktop conversation
  • Demonstrate how to connect Rust code with an MCP client
  • Prototype custom MCP tools written in Rust
  • Learn the build‑and‑release workflow for Rust + MCP

FAQ from Mcp Server Rust

What dependencies are required?

Node.js, npm, the Rust toolchain (cargo, rustc), and wasm‑pack (used by the build scripts).

Where is the Claude Desktop configuration file located?

On macOS it is ~/Library/Application Support/Claude/claude_desktop_config.json; on Windows it is %APPDATA%\Claude\claude_desktop_config.json.

How can I test the Rust code?

Run npm run test:rust or cd src/lib/rust-functions-lib && cargo test && cargo fmt --all -- --check.

What should I do if the Rust import fails?

The README shows a “Rust import failed” error and the solution is to run npm run build:wasm:release to rebuild the WebAssembly binding.

How is the MCP server started?

The server is launched by Node.js using the command “node [local path]/mcpserver/build/index.js”, as defined in the Claude Desktop configuration.

评论

其他 分类下的更多 MCP 服务器