{
"mcpServers": {
"kk-toolkit": {
"command": "/path/to/kk_server_mcp_toolkit"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 172 days ago.
Will it work with my client?
Transport: stdio, sse, http. 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 Kk_server_mcp_toolkit and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
一个使用 Rust 和 rmcp 构建的 Model Context Protocol (MCP) 服务器工具包。
这个 MCP 服务器提供了 3 个 BatchReportEvent 解析工具:
支持的压缩格式:
CommonUtility.GzipDecompressAppSecurity.Gzip2Decompress(AES-128-CBC 解密 + Gzip 解压)工具会自动尝试所有格式,并返回成功解析的结果。
从 Releases 页面下载对应平台的版本:
kk_server_mcp_toolkit-macos-arm64.tar.gzkk_server_mcp_toolkit-macos-x86_64.tar.gzkk_server_mcp_toolkit-linux-x86_64.tar.gzkk_server_mcp_toolkit-windows-x86_64.zip解压后:
# macOS/Linux
tar -xzf kk_server_mcp_toolkit-*.tar.gz
chmod +x kk_server_mcp_toolkit
# macOS 需要移除隔离标记
xattr -d com.apple.quarantine kk_server_mcp_toolkit
# 克隆仓库
git clone <your-repo-url>
cd kk_server_mcp_toolkit
# 编译
cargo build --release
# 二进制文件位于
./target/release/kk_server_mcp_toolkit
在 ~/.lmstudio/mcp.json 中添加:
{
"mcpServers": {
"kk-toolkit": {
"command": "/path/to/kk_server_mcp_toolkit"
}
}
}
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"kk-toolkit": {
"command": "/path/to/kk_server_mcp_toolkit"
}
}
}
kk_server_mcp_toolkit/
├── Cargo.toml # 项目配置和依赖
├── Cargo.lock # 依赖锁定文件
├── src/
│ └── main.rs # MCP 服务器实现 (199 行)
├── target/
│ └── release/ # 编译后的二进制文件
│ └── kk_server_mcp_toolkit
└── README.md # 本文件
#[tool(description = "回显消息到客户端")]
async fn echo(&self, message: String) -> Result<CallToolResult, ErrorData> {
Ok(CallToolResult::success(vec![Content::text(format!(
"Echo: {}", message
))]))
}
#[tool(description = "计算两个数字的和")]
async fn add(&self, a: f64, b: f64) -> Result<CallToolResult, ErrorData> {
Ok(CallToolResult::success(vec![Content::text(format!(
"{} + {} = {}", a, b, a + b
))]))
}
impl ServerHandler for ToolkitServer {
fn get_info(&self) -> ServerInfo {
ServerInfo {
protocol_version: ProtocolVersion::V_2024_11_05,
capabilities: ServerCapabilities::builder()
.enable_tools()
.build(),
server_info: Implementation {
name: "kk_server_mcp_toolkit".to_string(),
version: "0.1.0".to_string(),
title: Some("KK 服务器工具包".to_string()),
// ...
},
// ...
}
}
}
ToolkitServer impl 块中添加新方法#[tool(description = "...")] 标注async fn tool_name(&self, params...) -> Result<CallToolResult, ErrorData>CallToolResult::success(vec![Content::text(...)]) 返回结果cargo build --releasecargo test
cargo clippy
cargo fmt
MIT License