python-mcp-server
Verified Safeby changren-wcr
Overview
Deploys a simple tool-serving API using fastmcp that exposes basic arithmetic functions, primarily intended for integration with AI agents or other systems requiring callable external tools.
Installation
python server.pyEnvironment Variables
- PORT
Security Notes
The provided source code is clean, with no apparent malicious patterns, hardcoded secrets, or dangerous functions like 'eval'. It serves a simple API; overall security relies on the FastMCP library and the deployment environment's network configuration.
Similar Servers
mcp-math-server
This server provides a set of basic mathematical operations (addition, subtraction, multiplication, division, modulus) as tools via the FastMCP framework, intended for integration with AI agents or larger computational platforms.
test_remote_mcp_server
This server provides a basic remote service for performing simple arithmetic operations and generating random numbers using the FastMCP framework.
mcp-server
This server provides a simple mathematical 'add' tool via the Multi-tool Coordination Protocol (MCP) framework, designed for integration into a larger MCP ecosystem.
simple_mcp_server
This server exposes Python functions as an API using FastMCP, primarily intended for LLM function calling to integrate custom tools with AI models.