MyFastMCPServer
Verified Safeby meghnakartha
Overview
A basic HTTP server exposing 'add' and 'get_weather' tools using the FastMCP framework for demonstrating API capabilities.
Installation
python my-server.pySecurity Notes
The provided source code is simple and contains no explicit security vulnerabilities like 'eval', obfuscation, or hardcoded secrets. It binds to '0.0.0.0', which is standard for a server but requires network-level security (firewall) if exposed to the public internet.
Similar Servers
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.
mcp_server_example
This server exposes simple Python functions as API endpoints using the FastMCP framework, providing a demonstration of a microservice.
mcp_server
This project demonstrates how to build and interact with a Micro-service Communication Protocol (MCP) server using the `fastmcp` library, exposing callable tools over HTTP.
learn-mcp-server
Exposing Python functions as networked tools or microservices using the FastMCP framework.