Syncnox MCP Server
Enables AI agents to manage routes via Syncnox backend, with tools to add stops, optimize routes, get ETAs, and retrieve route details.
README
Syncnox MCP Server
An MCP server that gives AI agents (like Claude) direct access to the Syncnox route-management backend.
Transport
Streamable HTTP — the server exposes a single HTTP endpoint at /mcp.
This means you can deploy it in Docker, expose it over the network, and connect multiple remote clients.
Authentication
Every request must include the header:
X-API-Key: <your MCP_API_KEY>
The server itself also authenticates to your Syncnox FastAPI backend using a Bearer token (API_KEY).
Available Tools
| Tool | What it does |
|---|---|
add_stop |
Add a new stop to an existing route |
optimize_route |
Re-order stops for fastest time or shortest distance |
get_eta |
Get ETA for the whole route or a single stop |
get_route |
Fetch full route details including all stops |
Project Layout
syncnox-mcp/
├── server.py ← entry point, Streamable HTTP app + auth middleware
├── config.py ← settings loaded from .env
├── api_client.py ← shared httpx client for Syncnox backend
├── tools/
│ ├── __init__.py
│ └── routes.py ← route & stop tools (add more files here)
├── requirements.txt
└── .env ← secrets (not committed to git)
Setup
# 1. Create & activate virtual env
python -m venv .venv
source .venv/bin/activate
# 2. Install dependencies
pip install -r requirements.txt
# 3. Configure
cp .env .env.local # edit values
# Set: API_BASE_URL, API_KEY, MCP_API_KEY, PORT
# 4. Run
python server.py
Server starts at http://0.0.0.0:8100.
Connecting a Client
In Claude Desktop (claude_desktop_config.json):
{
"mcpServers": {
"syncnox": {
"type": "http",
"url": "http://localhost:8100/mcp",
"headers": {
"X-API-Key": "changeme-mcp-secret"
}
}
}
}
Health Check
curl http://localhost:8100/health
# → OK
Adding More Tools
- Create
tools/drivers.py(copyroutes.pyas a template) - Add
from tools import driversinserver.py - Call
drivers.register(mcp)below the existingroutes.register(mcp)
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
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.
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.