tos-bridge
Verified Safeby No-Smoke
Overview
Bridges Claude Desktop/Code to a VPS-hosted Token Optimization System using Qdrant (vector database) and Neo4j (knowledge graph) for graph-enhanced search and document management.
Installation
docker run -i --rm -e QDRANT_URL=http://your-qdrant:6333 -e QDRANT_API_KEY=your-api-key -e NEO4J_URI=bolt://your-neo4j:7687 -e NEO4J_USER=neo4j -e NEO4J_PASSWORD=your-password -e OLLAMA_URL=http://host.docker.internal:11434 ghcr.io/no-smoke/tos-bridge:latestEnvironment Variables
- QDRANT_URL
- QDRANT_API_KEY
- NEO4J_URI
- NEO4J_PASSWORD
Security Notes
The server uses environment variables for sensitive configurations like Qdrant API keys and Neo4j passwords, which is good practice. Database queries are parameterized, preventing SQL/Cypher injection. There are no obvious signs of 'eval' or direct shell command execution from user input. The primary security consideration for deployment is controlling environment variables (QDRANT_URL, NEO4J_URI, OLLAMA_URL), as malicious manipulation could lead to SSRF (Server-Side Request Forgery) by directing the server to internal network resources. However, this is an operational risk common to services that connect to configurable external endpoints, not a direct vulnerability in the code logic itself.
Similar Servers
qdrant-loader
A Model Context Protocol (MCP) server that provides advanced Retrieval-Augmented Generation (RAG) capabilities to AI development tools by bridging a QDrant knowledge base for intelligent, context-aware search.
mcp-raganything
Provides a FastAPI REST API and MCP server for Retrieval Augmented Generation (RAG) capabilities, integrating with the RAG-Anything and LightRAG libraries for multi-modal document processing and knowledge graph operations.
RDFPortal-MCP
Facilitates SPARQL queries and API interactions with various biological/biomedical RDF databases for research and data integration.
ragflow-claude-desktop-local-mcp
This server integrates RAGFlow's knowledge base and document management APIs with LLMs like Claude Desktop, providing enriched context and enhanced retrieval capabilities through a Model Context Protocol (MCP) interface.