mcp_server_test
Verified Safeby KyleDeng
Overview
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.
Installation
python custom_mcp.pyEnvironment Variables
- ACCOUNTING_WORKING_DIR
Security Notes
The server primarily performs local file system operations and arithmetic calculations. The 'list_desktop_files' tool exposes desktop file names, which is a minor privacy consideration if exposed to untrusted agents, but is explicitly documented. No 'eval' or other direct code execution vulnerabilities found. Uses local network (127.0.0.1) for SSE transport by default, limiting immediate external exposure. Tools typically require user approval in the client agent.
Similar Servers
mcp-servers
Provides a curated collection of Model Context Protocol (MCP) server configurations to enable AI agents to interact with various developer tools and services.
zeromcp
A minimal, pure Python Model Context Protocol (MCP) server for exposing tools, resources, and prompts via HTTP/SSE and Stdio transports.
agents-mcp-usage
Demonstrates a Model Context Protocol (MCP) server integration with various AI agent frameworks.
mcp_server
Provides a Python server that exposes various external APIs (Microsoft Graph, GitHub, OpenWeatherMap) as tools to be consumed by AI assistants via the Model Context Protocol (MCP).