Unified MCP Server
A server that exposes AI tools and resources through REST API, MCP, and WebSocket protocols using simple decorators.
README
š Unified MCP Server - One tool server; multiple protocols
A simple server that seamlessly exposes AI tools and resources through multiple protocols: REST API, MCP (Model Context Protocol), and WebSocket connections.
⨠Features
š Triple Protocol Support
- REST API: Standard HTTP endpoints for web integration
- MCP over HTTP: Model Context Protocol for AI assistants (Claude, etc.)
- WebSocket: Real-time bidirectional communication
šÆ Developer Experience
- Simple Decorators:
@tool,@resource,@resource_template,@prompt- that's it! - Type Safety: Full type hints with mypy support
- Async/Await: Native async support throughout
šļø Production Ready
- Comprehensive Logging: Structured logging with configurable levels
- Error Handling: Graceful error responses and recovery
- CORS Support: Cross-origin requests handled
- Health Checks: Built-in monitoring endpoints
š¦ Installation
Using uv (Recommended)
# Install uv if you haven't already
curl -LsSf https://astral.sh/uv/install.sh | sh
# Create and activate virtual environment
uv venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
# Install the package
uv add unified-mcp-server
Using pip
pip install unified-mcp-server
Development Installation
# Clone the repository
git clone <repository-url>
cd unified-mcp-server
# Using uv (recommended)
uv sync --dev
# Or using pip
pip install -e ".[dev]"
š Quick Start
Basic Example
from unified_server import create_server, tool, resource, prompt
# Define tools with simple decorators
@tool(description="Add two numbers together")
def add(a: int, b: int) -> int:
"""Add two integers and return the result"""
return a + b
@tool(description="Analyze text sentiment")
def analyze_sentiment(text: str) -> dict:
"""Analyze the sentiment of given text"""
# Your sentiment analysis logic here
return {"sentiment": "positive", "confidence": 0.95}
# Define resources (data sources)
@resource(
uri="config://app/settings",
description="Application configuration",
mime_type="application/json"
)
def get_config():
return {
"app_name": "My App",
"version": "1.0.0",
"features": {"ai_enabled": True}
}
# Define prompts for AI interactions
@prompt(description="Code review prompt")
def code_review_prompt(language: str):
return [{
"role": "user",
"content": {
"type": "text",
"text": f"Review this {language} code for best practices"
}
}]
# Create and run server
if __name__ == "__main__":
server = create_server(name="my-server", version="1.0.0")
server.run(host="0.0.0.0", port=8000)
š Complete Example
See src/tool_server.py for a comprehensive example with:
- Multiple tools (math, search, sentiment analysis)
- Various resources (config, user data, documentation)
- Advanced prompts with parameters
- Real file loading
- Error handling
š§ Usage Examples
š REST API
# List all available tools
curl http://localhost:8000/tools
# Execute a tool
curl -X POST http://localhost:8000/tools/add \
-H "Content-Type: application/json" \
-d '{"a": 15, "b": 27}'
# Get all resources
curl http://localhost:8000/resources
# Read a specific resource
curl http://localhost:8000/resources/get_config
# List available prompts
curl http://localhost:8000/prompts
# Generate a prompt
curl -X POST http://localhost:8000/prompts/code_review_prompt \
-H "Content-Type: application/json" \
-d '{"language": "python"}'
š¤ MCP Integration
Claude Desktop Configuration
{
"mcpServers": {
"unified-server": {
"command": "npx",
"args": ["@modelcontextprotocol/server-everything", "http://localhost:8000/mcp"]
}
}
}
Direct MCP Client
import asyncio
from mcp import ClientSession, StdioServerParameters
from mcp.client.stdio import stdio_client
async def main():
# Connect to your unified server
async with stdio_client(StdioServerParameters(
command="python",
args=["-m", "your_server_module"]
)) as (read, write):
async with ClientSession(read, write) as session:
# Initialize the connection
await session.initialize()
# List available tools
tools = await session.list_tools()
print(f"Available tools: {[tool.name for tool in tools.tools]}")
# Call a tool
result = await session.call_tool("add", {"a": 10, "b": 20})
print(f"Result: {result.content}")
asyncio.run(main())
š WebSocket Connection
// Connect via WebSocket for real-time communication
const ws = new WebSocket('ws://localhost:8000/ws');
ws.onopen = function() {
// Send tool execution request
ws.send(JSON.stringify({
type: 'tool_call',
tool: 'add',
parameters: { a: 5, b: 3 }
}));
};
ws.onmessage = function(event) {
const response = JSON.parse(event.data);
console.log('Tool result:', response.result);
};
š Examples
Basic Usage
examples/basic_example.py- Simple tools and resourcesexamples/advanced_example.py- Async functions, complex schemas
Production Example
src/tool_server.py- Full-featured server with:- š§ Tools: Math operations, search, sentiment analysis
- š Resources: Configuration, user data, documentation
- š¬ Prompts: System prompts, code review, debugging
- š File Operations: Loading real files from disk
šļø Architecture
src/unified_server/
āāā šļø core/ # Core server and registry
ā āāā server.py # Main FastAPI server
ā āāā registry.py # Tool/resource registry
ā āāā config.py # Configuration management
āāā šØ decorators/ # Decorator implementations
ā āāā tool.py # @tool decorator
ā āāā resource.py # @resource decorator
ā āāā resource_template.py # @resource template decorator
ā āāā prompt.py # @prompt decorator
āāā š£ļø routes/ # HTTP route handlers
ā āāā tools.py # Tool execution endpoints
ā āāā resources.py # Resource access endpoints
ā āāā prompts.py # Prompt generation endpoints
ā āāā mcp.py # MCP protocol endpoints
āāā š§ handlers/ # Protocol handlers
ā āāā mcp_handlers.py # MCP message handling
āāā š ļø utils/ # Utilities
āāā inspection.py # Function signature analysis
āāā logging.py # Logging configuration
š API Documentation
Once your server is running, visit:
- š Interactive Docs:
http://localhost:8000/docs(Swagger UI) - š ReDoc:
http://localhost:8000/redoc(Alternative documentation) - š§ OpenAPI Schema:
http://localhost:8000/openapi.json
š ļø Development
Setup Development Environment
# Using uv (recommended)
uv sync --dev
source .venv/bin/activate
# Using pip
pip install -e ".[dev]"
Running Tests
# Run all tests
pytest
# Run with coverage
pytest --cov=unified_server
# Run specific test file
pytest tests/test_tools.py -v
Code Quality
# Format code
black src tests examples
# Lint code
ruff check src tests examples
# Type checking
mypy src
# Run all quality checks
make lint # if using the provided Makefile
Project Commands
# Start development server with auto-reload
uv run python src/tool_server.py
# Run basic example
uv run python examples/basic_example.py
# Run advanced example
uv run python examples/advanced_example.py
š³ Docker Support
# Build image
docker build -t unified-mcp-server .
# Run container
docker run -p 8000:8000 unified-mcp-server
# Using docker-compose
docker-compose up
š¤ Contributing
- Fork the repository
- Create a feature branch:
git checkout -b feature/amazing-feature - Commit your changes:
git commit -m 'Add amazing feature' - Push to the branch:
git push origin feature/amazing-feature - Open a Pull Request
š License
This project is licensed under the MIT License - see the LICENSE file for details.
š Acknowledgments
- FastAPI for the excellent web framework
- MCP Protocol for standardizing AI tool interfaces
- Pydantic for data validation and serialization
- uvicorn for ASGI server implementation
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.