gravibase-mcp

IgorShkuropat/gravibase-mcp

3.1

If you are the rightful owner of gravibase-mcp and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to dayong@mcphub.com.

The Gravibase MCP Server is a robust solution designed to facilitate seamless integration and communication between various applications and the Gravibase platform using the Model Context Protocol (MCP).

🛠️ Установка

  1. Установите Node.js

    Скачайте и установите Node.js 18 или новее с официального сайта:

    Проверьте установку:

    node --version  # должно быть >= 18.0.0
    npm --version
    
  2. Установите пакет глобально:

    npm install -g gravibase-mcp-server
    
  3. Узнайте путь установки пакета:

    npm root -g
    

    Это вернет путь к глобальной директории node_modules, например:

    • Linux/Mac: /usr/local/lib/node_modules или /home/user/.nvm/versions/node/v18.0.0/lib/node_modules
    • Windows: C:\Users\User\AppData\Roaming\npm\node_modules

    Полный путь до исполняемого файла будет:

    <npm root -g>/gravibase-mcp-server/dist/index.js
    
  4. Настройте MCP в Cursor/Claude Desktop:

    Откройте конфигурационный файл MCP:

    • Cursor: ~/.cursor/mcp.json (Linux/Mac) или %APPDATA%\.cursor\mcp.json (Windows)
    • Claude Desktop: ~/Library/Application Support/Claude/claude_desktop_config.json (Mac)

    Добавьте конфигурацию сервера:

    {
      "mcpServers": {
        "gravibase": {
          "command": "node",
          "args": ["/путь/из/npm-root-g/gravibase-mcp-server/dist/index.js"],
          "env": {
            "GRAVIBASE_URL": "https://url-to-gravibase.com",
            "GRAVIBASE_USERNAME": "your-username",
            "GRAVIBASE_PASSWORD": "your-password",
            "PROJECT_CODE": "your-project-code",
            "LOG_LEVEL": "info"
          }
        }
      }
    }
    
  5. Перезапустите редактор (Cursor или Claude Desktop)