McpServerWithCustomObjectMapper
Verified Safeby Nik95
Overview
This server implements a Spring AI Micro-Agent Protocol (MCP) tool server, demonstrating a custom Jackson ObjectMapper configuration for serialization/deserialization.
Installation
mvn spring-boot:runSecurity Notes
The code is simple and straightforward, defining a basic MCP tool with custom Jackson ObjectMapper configuration. No 'eval' or dynamic code execution is present. Input is handled as simple strings, mitigating common injection risks. No hardcoded secrets or suspicious network activity are visible. 'failOnUnknownProperties(false)' is used, which could be a deserialization risk in more complex scenarios with untrusted inputs and vulnerable gadgets, but for this specific, simple tool, it does not pose an immediate or critical threat.
Similar Servers
kStock-mcp-server
This server provides an MCP (Micro-Capability Protocol) interface to interact with the Korean Investment API, enabling functionalities like fetching stock prices, account information, financial data, and executing stock buy/sell orders.
mcp400
A Java-based server application, likely related to game development, specifically hinted as a Minecraft server.
mcp-server
A custom or modified Minecraft server implementation, likely related to the Minecraft Coder Pack (MCP) for mod/plugin development.
mcp-java-demo
A demo implementation of an MCP (Model Context Protocol) server for handling WebSocket communication, message dispatching, and executing registered tools.