Omni Server
About
A MCP Server to get familiarize to Model Context Protocol
Details
- Author
- abhijithk1
- Downloads
- 154
- Categories
- Other
Jump to
- MCP server implementation using Python
- Modular project structure with clear separation of prompts, tools, data, and resources
- Easily configurable with .env and Poetry
- Designed to integrate with Claude Desktop
- Uses uv for dependency management
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
Omni ServerCommand (node, npx, python, etc.)Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
Clone the repository, create a virtual environment with uv, install dependencies using uv pip install -e ., and optionally create a .env file. Run the server with python main.py. To integrate with Claude Desktop, configure claude_desktop_config.json with the path to the projectβs Python executable and main.py.
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"omni server": {
"omni-server": {
"command": "uv",
"args": [
"venv"
]
}
}
}
}
McpServers
{
"omni-server": {
"command": "uv",
"args": [
"venv"
]
}
}
Omni Server
Omni Server is a Model Context Protocol (MCP) server designed to help developers familiarize themselves with the MCP framework. It serves as a foundational tool for understanding and implementing MCP-based applications.
---
Features
- π MCP server implementation using Python
- π Modular project structure with clear separation of prompts, tools, data, and resources
- βοΈ Easily configurable with .env and Poetry
- π§ Designed to integrate seamlessly with Claude Desktop
---
Project Structure
omni-server/
βββ data/ # Data files and datasets
βββ prompts/ # Prompt templates and related files
βββ resources/ # Static resources and assets
βββ tools/ # Utility scripts and tools
βββ utils/ # Helper functions and utilities
βββ .env # Environment variable definitions
βββ .gitignore # Git ignore rules
βββ .python-version # Python version specification
βββ README.md # Project documentation
βββ main.py # Main application entry point
βββ pyproject.toml # Project metadata and dependencies
βββ server.py # Server initialization and configuration
βββ uv.lock # Dependency lock file
---
Getting Started
Prerequisites
- Python 3.8 or higher
- uv for dependency management
---
Installation
1. Clone the repository:
git clone https://github.com/abhijithk1/omni-server.git
cd omni-server
2. Install dependencies using uv:
```bash
uv venv
uv pip install -r requirements.txt # if using requirements.txt
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.



