drio
Open app

lumina

Source

centralized local knowledge base and mcp servers

Catalog onlyCatalog onlySTDIO

Overview

Lumina is a centralized local knowledge base and MCP (Multi-Channel Platform) server designed to store and manage information efficiently.

To use Lumina, set up the server on your local machine and configure it to manage your knowledge base. You can access it through the provided interface.

  • Centralized storage for local knowledge management - Multi-Channel Platform support for various data types - Easy configuration and setup for local use
  1. Managing project documentation and resources in a centralized location.
  2. Storing and retrieving knowledge for team collaboration.
  3. Supporting local applications that require a knowledge base.

Add to your AI client

Use these steps to connect lumina in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "lumina-abramelintheclown": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-lumina-abramelintheclown"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "lumina-abramelintheclown": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-lumina-abramelintheclown"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "lumina-abramelintheclown": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-lumina-abramelintheclown"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "lumina-abramelintheclown": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-lumina-abramelintheclown"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "lumina-abramelintheclown": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-lumina-abramelintheclown"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "lumina-abramelintheclown": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-lumina-abramelintheclown"
      ]
    }
  }
}

FAQ

Is Lumina open-source?

Yes! Lumina is available under the Apache-2.0 license.

Can Lumina be used for large datasets?

Yes! Lumina is designed to handle various data sizes efficiently.

How do I contribute to Lumina?

You can contribute by submitting issues or pull requests on the GitHub repository.