{"id":27139,"library":"mcp-hydrolix","title":"MCP Hydrolix","description":"An MCP (Model Context Protocol) server for Hydrolix, providing a bridge between AI agents and Hydrolix databases. Version 0.2.6 is the latest as of May 2026. The library is under active development, but with a small user base.","status":"active","version":"0.2.6","language":"python","source_language":"en","source_url":"https://github.com/hydrolix/mcp-hydrolix","tags":["mcp","hydrolix","database","ai","model-context-protocol"],"install":[{"cmd":"pip install mcp-hydrolix","lang":"bash","label":"Install from PyPI"}],"dependencies":[],"imports":[{"note":"The correct import is at the top level, not from a submodule.","wrong":"from mcp_hydrolix.server import HydrolixMCPServer","symbol":"HydrolixMCPServer","correct":"from mcp_hydrolix import HydrolixMCPServer"}],"quickstart":{"code":"import os\nfrom mcp_hydrolix import HydrolixMCPServer\n\nserver = HydrolixMCPServer(\n    hydrolix_endpoint=os.environ.get('HYDROLIX_ENDPOINT', ''),\n    hydrolix_token=os.environ.get('HYDROLIX_TOKEN', '')\n)\n# Run the server (blocks)\nserver.run()","lang":"python","description":"Create an MCP server pointing at a Hydrolix instance. Authentication is via endpoint URL and token."},"warnings":[{"fix":"Upgrade to Python 3.13 or later.","message":"The library requires Python >=3.13. Using it with older Python versions will fail with a syntax error.","severity":"gotcha","affected_versions":"all"},{"fix":"Refer to the official README for the exact parameter names.","message":"The HydrolixMCPServer constructor expects parameters 'hydrolix_endpoint' and 'hydrolix_token', but the parameter names might change in future versions (pre-1.0).","severity":"gotcha","affected_versions":"0.1.x, 0.2.x"},{"fix":"Update imports to use 'mcp_hydrolix'.","message":"The import path changed between 0.1.x and 0.2.x: previously 'from hydrolix_mcp import ...', now 'from mcp_hydrolix import ...'.","severity":"breaking","affected_versions":"<=0.1.x"}],"env_vars":null,"last_verified":"2026-05-01T00:00:00.000Z","next_check":"2026-07-30T00:00:00.000Z","problems":[{"fix":"Ensure Python 3.13+ is active and run 'pip install mcp-hydrolix'.","cause":"Running Python <3.13 or missing pip install.","error":"ModuleNotFoundError: No module named 'mcp_hydrolix'"},{"fix":"Upgrade to 0.2.6 with 'pip install --upgrade mcp-hydrolix' and use 'HydrolixMCPServer'.","cause":"Using a version older than 0.2.0, where the class was named 'HydrolixMCP'.","error":"ImportError: cannot import name 'HydrolixMCPServer' from 'mcp_hydrolix'"}],"ecosystem":"pypi","meta_description":null,"install_score":null,"install_tag":null,"quickstart_score":null,"quickstart_tag":null}