mcp-server
Verified Safeby Nagavamsi178
Overview
A simple calculator API server providing basic arithmetic operations, complemented by a Streamlit web user interface.
Installation
python main.pySecurity Notes
The application runs locally on `127.0.0.1:8000` by default, which is generally safe. Input validation for division by zero is implemented. No 'eval' or other highly dangerous patterns are present. If deployed publicly, standard API security practices (e.g., authentication, rate limiting, more robust input sanitization) would be necessary, but this is beyond the scope of a simple calculator service.
Similar Servers
simple-calculator-mcp-server-v4
A server that provides basic arithmetic calculation functionalities via an API.
simple-calculator-mcp-server-v3
Provides a server-side implementation for basic calculator operations, potentially over a custom message communication protocol.
simple-calculator-mcp-server-v2
Provides an API server for simple arithmetic calculations, intended for multi-client access.
calculator-mcp-server
A Spring Boot server exposing a calculator tool via the Message Communication Protocol (MCP) for AI agent integration.