
File System Utility MCP Server
Enables interaction with the local file system and retrieval of system information. Provides tools for listing directories, reading files, getting current time, and basic greeting functionality.
README
MCP Server
A basic Model Context Protocol (MCP) server implementation in Python that provides utility tools for interacting with the file system and getting system information.
Features
This MCP server provides the following tools:
- hello_world: A simple greeting tool that accepts an optional name parameter
- get_time: Get the current time in various formats (ISO, timestamp, or readable)
- list_files: List files and directories in a specified path
- read_file: Read the contents of a text file
Installation
Prerequisites
- Python 3.13+
- uv package manager
Setup
- Clone the repository:
git clone https://github.com/stef-codes/mcp-server.git
cd mcp-server
- Install dependencies using uv:
uv sync
Usage
Run the MCP server:
uv run python main.py
The server will start and listen for MCP connections via stdio transport.
Project Structure
├── main.py # Entry point and tool registration
├── server.py # Core MCP server implementation
├── tools.py # Tool implementations
├── pyproject.toml # Project configuration and dependencies
└── README.md # This file
Available Tools
hello_world
Greets a user with an optional name parameter.
Parameters:
name
(string, optional): Name to greet (defaults to "World")
get_time
Returns the current time in the specified format.
Parameters:
format
(string, optional): Format type - "iso", "timestamp", or "readable" (defaults to "iso")
list_files
Lists files and directories in the specified path.
Parameters:
path
(string, optional): Directory path to list (defaults to current directory)
read_file
Reads and returns the contents of a text file.
Parameters:
file_path
(string, required): Path to the file to read
Development
The server uses a modular architecture:
MCPServer
class handles server initialization and tool registration- Tools are implemented as async functions in
tools.py
- The
main.py
file registers all tools and starts the server
To add new tools:
- Implement the tool function in
tools.py
- Register it in
main.py
usingmcp_server.register_tool()
License
This project is open source and available under the MIT License.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.