MCP Server
About
MCP Server is an implementation of the Model Context Protocol (MCP) that provides tools for AI agents and LLMs — including web search via SearXNG and secure file system operations. It is intended for developers building AI applications that need sandboxed tool access.
Details
- Author
- avinash539
- Downloads
- 151
- Categories
- Other
Jump to
- Web search with customizable parameters via SearXNG
- File system read, write, and list operations
- Extensible architecture for adding custom tools
- Docker and docker-compose deployment support
- Command-line interface for server management
- Full MCP specification support for resources and prompts
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
MCP 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
You can deploy MCP Server with Docker (recommended) or install directly using Python 3.13 and the uv package manager. The server is started via the command python -m mcp_server start and can be configured through environment variables or integrated with the Claude Desktop client using a claude_desktop_config.json entry.
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"mcp server": {
"mcp-server-avinash539": {
"command": "docker",
"args": [
"build",
"-t",
"mcp-server",
"."
]
}
}
}
}
McpServers
{
"mcp-server-avinash539": {
"command": "docker",
"args": [
"build",
"-t",
"mcp-server",
"."
]
}
}
MCP Server
A Model Context Protocol (MCP) server implementation that provides various tools for AI agents and LLMs, including search capabilities powered by SearXNG and file system operations.
Features
- Web Search: Perform web searches with customizable parameters using SearXNG
- File System Operations: Read, write, and manage files with security controls
- Extensible Architecture: Add custom tools following the MCP protocol
- Docker Support: Easy deployment with Docker and docker-compose
- Command-line Interface: Simple management through CLI
- Resources and Prompts: Full MCP specification support for resources and prompts
Requirements
- Python 3.13 (required)
- MCP SDK ≥ 1.6.0
- UV package manager for dependency management
- Docker (optional, for containerized deployment)
Implementation Approaches
This project demonstrates two approaches to implementing MCP servers:
1. FastMCP Decorator Approach (Recommended)
The simplified approach using FastMCP decorators in mcp_server/server.py:
```python
from mcp.server.fastmcp import FastMCP
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.



