2025-04-02-mcp-server
Verified Safeby fern-api
Overview
This server acts as a Model Context Protocol (MCP) tool to facilitate interactions with MongoDB AI for answering database-related questions and to check local MongoDB daemon versions.
Installation
npx -y @fern-api/2025-04-02-mcp-server@latestSecurity Notes
The server uses `child_process.exec` to run `mongod --version`. While the command is hardcoded and safe in this specific implementation, using `exec` can be a security risk if user input were to influence the command string. The server also acts as a proxy to an external MongoDB AI service (`https://knowledge.mongodb.com`), meaning its security is partly dependent on the upstream service. No direct hardcoded secrets or obvious malicious patterns were found in the provided source code. The `message` payload to the external API is JSON stringified, which helps prevent direct injection on the client side.
Similar Servers
mongodb-mcp-server
Provides a robust AI agent interface for interacting with MongoDB databases and MongoDB Atlas cloud services, enabling tool-calling for data management, monitoring, and search operations.
tiger-cli
Tiger CLI provides a Model Context Protocol (MCP) server that enables AI assistants to interact with Tiger Cloud database services, manage service lifecycles, execute SQL queries, and access documentation via proxied tools.
influxdb-mcp-server
An MCP server to interact with an InfluxDB instance, providing access to resources, tools for data management, and prompt templates for common queries and data formats.
mcp_cosmosdb_go
Provides an MCP server for interacting with Azure Cosmos DB databases, containers, and items, primarily intended as a learning and experimental tool for AI tooling.