
Universal MCP Server
A model-agnostic Model Context Protocol server implementation that works with any compatible AI model or client, allowing tools like file operations to be accessed through the MCP standard.
README
Universal MCP Server
A model-agnostic Model Context Protocol (MCP) server implementation that works with any compatible AI model or client, not just Claude Desktop.
🎯 Project Goals
- Universal Compatibility: Works with any model that supports MCP (Claude, local models via Hugging Face, OpenAI, etc.)
- Simple Architecture: Clean, from-scratch implementation following official MCP specification
- Extensible Tools: Easy to add new tools and capabilities
- Learning-Focused: Well-documented code to understand MCP internals
📋 Project Scope
Phase 1: Core MCP Server
- [x] JSON-RPC 2.0 over stdio communication
- [x] Basic MCP protocol methods (
initialize
,tools/list
,tools/call
) - [x] File reading tool for specified directories
- [ ] Error handling and validation
- [ ] Configuration via command line/config file
Phase 2: Tool Expansion
- [ ] File writing capabilities
- [ ] Directory listing and navigation
- [ ] Text processing tools (search, replace, etc.)
- [ ] System information tools
- [ ] Custom tool plugin system
Phase 3: Multi-Model Client
- [ ] Generic MCP client library
- [ ] Hugging Face model integration
- [ ] OpenAI API integration
- [ ] Local model support (Ollama, etc.)
- [ ] Web interface for testing
🏗️ Architecture
┌─────────────────┐ JSON-RPC ┌─────────────────┐
│ AI Model │ ◄──────────────► │ MCP Server │
│ (Any Provider) │ (stdio) │ (Python) │
└─────────────────┘ └─────────────────┘
│
▼
┌─────────────────┐
│ Tools │
│ • File Reader │
│ • File Writer │
│ • Directory Ops │
└─────────────────┘
🚀 Quick Start
Running the MCP Server
# Install dependencies
pip install -r requirements.txt
# Run the server (communicates via stdio)
python mcp_server.py --allowed-paths ./data ./documents
# Test with a simple echo
echo '{"jsonrpc":"2.0","method":"tools/list","id":1}' | python mcp_server.py
Integrating with Models
Claude Desktop
{
"mcpServers": {
"file-tools": {
"command": "python",
"args": ["path/to/mcp_server.py", "--allowed-paths", "./data"]
}
}
}
Hugging Face Models
from mcp_client import MCPClient
from transformers import pipeline
# Initialize your model
model = pipeline("text-generation", model="microsoft/DialoGPT-medium")
# Connect to MCP server
mcp_client = MCPClient("python mcp_server.py")
# Use tools through the model
response = model("Can you read the file data/example.txt?")
tool_result = mcp_client.call_tool("read_file", {"path": "data/example.txt"})
🛠️ Available Tools
File Operations
read_file
: Read contents of a file within allowed pathslist_directory
: List files and folders in a directoryfile_info
: Get file metadata (size, modified date, etc.)
Planned Tools
write_file
: Write content to filessearch_files
: Search for text within filesexecute_command
: Run system commands (with safety restrictions)
📁 Project Structure
universal-mcp-server/
├── mcp_server.py # Main MCP server implementation
├── mcp_client.py # Generic client for any model
├── tools/
│ ├── __init__.py
│ ├── file_tools.py # File operation tools
│ └── system_tools.py # System information tools
├── examples/
│ ├── huggingface_client.py
│ ├── openai_client.py
│ └── test_tools.py
├── config/
│ └── server_config.yaml
├── requirements.txt
└── README.md
🔧 Configuration
Server Configuration (config/server_config.yaml
)
server:
name: "Universal File Tools"
version: "1.0.0"
security:
allowed_paths:
- "./data"
- "./documents"
max_file_size: "10MB"
tools:
file_reader:
enabled: true
file_writer:
enabled: false # Disabled by default for security
Command Line Options
python mcp_server.py \
--config config/server_config.yaml \
--allowed-paths ./data ./docs \
--max-file-size 5MB \
--log-level INFO
🧪 Testing
Unit Tests
python -m pytest tests/
Manual Testing
# Test tool listing
echo '{"jsonrpc":"2.0","method":"tools/list","id":1}' | python mcp_server.py
# Test file reading
echo '{"jsonrpc":"2.0","method":"tools/call","params":{"name":"read_file","arguments":{"path":"data/test.txt"}},"id":2}' | python mcp_server.py
Integration Tests
# Test with different models
python examples/test_huggingface.py
python examples/test_openai.py
🔐 Security Considerations
- Path Restrictions: Only allow file access within specified directories
- File Size Limits: Prevent reading of extremely large files
- Input Validation: Sanitize all tool parameters
- Command Execution: Disabled by default, whitelist approach when enabled
🤝 Contributing
- Follow the official MCP specification
- Add tests for new tools
- Update documentation
- Ensure compatibility across different model providers
📚 Resources
🎓 Learning Outcomes
By building this project, you'll understand:
- How MCP protocol works under the hood
- JSON-RPC communication patterns
- Building model-agnostic AI tool interfaces
- Security considerations for AI tool access
- Integrating with various AI model providers
Next Steps: Start with mcp_server.py
implementing basic file reading, then expand to multiple tools and model integrations!
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.