mcp-server
Verified Safeby js-lib-rust
Overview
Serves as a minimal JSON-RPC backend exposing a set of predefined tools, likely intended for integration with AI agents or other systems needing external capabilities.
Installation
cargo runSecurity Notes
The server operates exclusively via stdin/stdout, eliminating direct network exposure. It processes JSON-RPC requests without dynamic code execution (e.g., 'eval' functions). Input parameters for tools are treated as strings and used in formatting, not interpreted as code. No hardcoded secrets were found. The primary attack vector would be malformed JSON leading to crashes, which is handled gracefully by skipping invalid requests.
Similar Servers
rust-mcp-schema
Provides a type-safe Rust implementation of the Model Context Protocol (MCP) schema, enabling developers to build robust MCP servers and clients.
zeromcp
A minimal, pure Python Model Context Protocol (MCP) server for exposing tools, resources, and prompts via HTTP/SSE and Stdio transports.
mcp-framework
A Rust framework for building AI agents with built-in Model Context Protocol (MCP) support, multi-LLM integration, and a web-based inspector for debugging.
kodegen
A Rust-native Model Context Protocol (MCP) server providing blazing-fast auto-coding and development tools for AI agents.