FastMCP-Server
Verified Safeby Sitanshuu
Overview
A microservice for managing employee leave requests, including checking balances, applying for leave, and viewing history.
Installation
python server.pySecurity Notes
The code does not use `eval` or `exec`. There are no hardcoded secrets or obvious malicious patterns. Input validation for dates is present. The `employee_id` access (e.g., `employee_leaves[employee_id]`) can lead to `KeyError` if an invalid ID is provided, which is then caught and a string returned, rather than crashing the server. This is a robustness point, not a direct security flaw.
Similar Servers
Trackor
Provides an MCP server for tracking personal expenses, including adding, listing, summarizing, updating, and exporting data.
practice-mcp-server
A personal AI assistant backend server for managing notes, tasks, and calendar events, with web scraping and semantic search capabilities.
my-first-mcp-server
Manages employee annual leave balances and historical leave dates through an MCP server.
my_mcp_employee_server
Provides a micro-tool server for managing employee records (CRUD operations) via an MCP API.