这是一个简单的Rust语言编写的MCP_WEB框架,是cline+server的Mcp框架结构,局域网可用,里面除了简单的信息没有任何填充,带静态web界面
{
"mcpServers": {
"mcp-server-rust-test": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
这是一个简单的Rust语言编写的MCP_WEB框架,是cline+server的Mcp框架结构,局域网可用,里面除了简单的信息没有任何填充,带静态web界面
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
Apache-2.0. View license →
Is it maintained?
Last commit 175 days ago.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for Mcp Server Rust Test and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
这是一个用 Rust 编写的简单 MCP (Multi-Client Protocol) 服务器,适用于本地局域网使用。
cargo run
服务器将在以下端口启动:
http://localhost:3030http://localhost:3032详细API文档请参阅 API_DOCUMENTATION.md
POST /mcp - 处理 MCP 消息 (端口 3032)GET /health - 健康检查端点 (端口 3032)GET / - Web管理界面 (端口 3030)GET /static/ - 静态文件服务 (端口 3030)GET /api/messages - 获取消息历史 (端口 3030)POST /api/clear - 清除消息历史 (端口 3030)MCP服务器包含一个内置的Web管理界面,可通过 http://localhost:3030 访问。该界面提供以下功能:
curl http://localhost:3032/health
curl -X POST http://localhost:3032/mcp \
-H "Content-Type: application/json" \
-d '{"id": "1", "method": "echo", "params": {"message": "Hello MCP"}}'
在 Windows PowerShell 中使用 Invoke-WebRequest:
# 健康检查
Invoke-WebRequest -Uri http://localhost:3032/health -Method GET
# 发送 MCP 消息
$body = '{"id": "1", "method": "echo", "params": {"message": "Hello MCP"}}'
Invoke-WebRequest -Uri http://localhost:3032/mcp -Method POST -Body $body -ContentType "application/json"