Simple MCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Simple MCPdownload the latest Python tutorial video from YouTube as MP3"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MCP Server - Modular Architecture
This MCP (Model Context Protocol) server is built with a clean, modular architecture for maintainable, scalable, and robust development.
π Project Structure
MCP-test/
βββ main.py # Main entry point
βββ config.py # Configuration and constants
βββ persistence.py # Data persistence layer
βββ scheduler.py # Job scheduling functionality
βββ tools/ # MCP tools organized by concern
β βββ __init__.py # Tools package initialization and registry
β βββ basic_tools.py # Basic utility tools
β βββ control_tools.py # Server control tools (restart, shutdown, etc)
β βββ file_tools.py # File system operations
β βββ persistence_tools.py # Persistence management tools
β βββ scheduling_tools.py # Scheduling-related tools
β βββ system_tools.py # System information and commands
β βββ telegram_tools.py # Telegram integration
β βββ youtube_tools.py # YouTube-related tools
βββ requirements.txt # Python dependencies
βββ .env # Environment variables (create this)
βββ README.md # This fileRelated MCP server: Modular MCP Server
π Quick Start
Install dependencies:
pip install -r requirements.txtCreate environment file:
# Create .env file with your configuration TG_TOKEN=your_telegram_bot_token ADMIN_ID=your_telegram_chat_idRun the server:
python main.py
π Available Tools
Basic Tools
echoβ Echo back input text
File Tools
read_fileβ Read the contents of a filewrite_fileβ Write content to a filecreate_fileβ Create a new empty filecreate_folderβ Create a new directorylist_filesβ List files and folders in a directorydelete_fileβ Delete a filerename_fileβ Rename or move a filemove_folderβ Move a folder (directory) to a new location
System Tools
system_infoβ Get basic system information (platform, memory, CPU, etc.)list_processesβ List running processes (PID, name, user)run_python_codeβ Execute a Python code snippet and return the outputinstall_python_libraryβ Install a Python library (via pip) and update requirements.txt
Telegram Integration
send_telegram_messageβ Send Telegram messages, audio, video, or documents (with optional metadata)receive_telegram_updatesβ Receive and download incoming Telegram messages and files
Scheduling & Job Tools (still in testing)
schedule_telegram_messageβ Schedule a Telegram message to be sent at a specific time (supports ISO datetime or relative times like "in 10 minutes")schedule_function_callβ Schedule any registered function to run once at a specified timeschedule_recurring_jobβ Schedule recurring jobs using cron expressions or intervals (e.g., "every 5 minutes", "0 9 ** 1-5")list_scheduled_jobsβ List all currently scheduled jobs with detailscancel_scheduled_jobβ Cancel a scheduled job by its IDget_available_functionsβ List all functions available for schedulingget_job_execution_logβ View the execution history and results of scheduled jobs
Persistence Tools
update_persistent_infoβ Add or update a key-value pair in persistent storageget_persistent_infoβ Retrieve all persistent data, or a specific key's valuedelete_persistent_info_keyβ Delete a key from persistent storage
Control Tools
type_textβ Simulate typing text using the keyboardpress_hotkeyβ Press a combination of keys as a hotkey (e.g., Ctrl+Tab)switch_to_windowβ Switch focus to a window with a specified titlelist_open_windowsβ List the titles of all currently open windowsmove_mouse_toβ Move the mouse cursor to specified screen coordinatesclick_mouseβ Click the mouse at specified coordinates or at the current position
YouTube Tools
youtube_download_videoβ Download a YouTube video as MP4youtube_download_audioβ Download YouTube audio as MP3youtube_video_infoβ Get detailed YouTube video information
π§ Architecture Benefits
Separation of Concerns
config.py: Centralized configuration
persistence.py: Data storage abstraction
scheduler.py: Scheduling logic isolated
tools/: Tools organized by functionality
Maintainability
Add new tools by creating new modules
Clear dependencies between components
Consistent error handling and logging
Scalability
Modular design for easy extension
Shared MCP instance prevents conflicts
Function registry enables dynamic scheduling
π Data Persistence
The server automatically persists:
Scheduled Jobs: Survives server restarts
Execution Logs: Detailed job run history
Persistent Info: Custom key-value storage
Files created:
scheduled_jobs.jsonβ Job definitionsjob_execution_log.jsonβ Execution historypersistent_info.jsonβ Custom datamain.logβ Application logserror.logβ Error logs
π οΈ Development
Adding New Tools
Create a new module in
tools/Import the shared MCP instance:
from . import mcpDefine your tool function with
@mcp.tool()decoratorRegister the function in
tools/__init__.pyif needed
Adding New Persistence Functions
Add functions to
persistence.pyImport and use them in your tools
Follow the existing pattern for error handling
π Troubleshooting
Check logs in
main.loganderror.logVerify environment variables in
.envEnsure all dependencies are installed
Check file permissions for persistence
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseBqualityDmaintenanceProvides a complete end-to-end MCP server implementation with file system tools, web scraping capabilities, and system information access. Includes ready-to-use configuration files and integration examples for Claude Desktop, ChatGPT, and other AI models.Last updated6
- FlicenseBqualityDmaintenanceA config-driven, zero-dependency MCP server with plugin architecture that enables filesystem operations, shell commands, HTTP requests, and utilities through simple JSON configuration.Last updated31
- AlicenseBqualityDmaintenanceA comprehensive MCP server with 30+ custom tools organized into categories: date/time operations, file management, system information, text processing, and web operations. Enables async communication with robust error handling and flexible CLI integration.Last updated311MIT
- Alicense-qualityDmaintenanceA modular MCP server providing file operations, web search, URL scraping, and sandboxed command execution for LLM interactions.Last updated1MIT
Related MCP Connectors
Personal assistant MCP server with search, execute, packages, jobs, secrets, and integrations.
A MCP server built for developers enabling Git based project management with project and personalβ¦
Cloud-hosted MCP server for durable AI memory
Appeared in Searches
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/karar-hayder/Simple-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server