fastmcp-server
by swissmarley
Overview
Local web GUI and MCP server for developing and experimenting with FastMCP-based tools, offering a web interface to manage functions and integrate with LLM clients.
Installation
No command providedSecurity Notes
The server allows arbitrary Python code execution via the `POST /api/functions` endpoint, enabling users to add custom functions at runtime. While the project states it 'attempts to restrict builtins,' this is not a full sandbox and is explicitly warned as 'dangerous.' Running untrusted code is not recommended, and exposing the server beyond `localhost` would greatly increase the risk of remote code execution.
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
A server for exposing local tool APIs via the Model Context Protocol (MCP) to be consumed by AI/ML clients or agents.
mcp_server_test
Implements a Model Context Protocol (MCP) server to expose Python functions as tools, resources, and prompts for AI agent interaction, facilitating local file system operations, simple arithmetic, and account tracking.
mcp-server-demo
Demonstrates an MCP (Multi-Agent Communication Protocol) server using the FastMCP 2.0 framework, exposing tools, resources, and prompts via an HTTP API.