Skip to content

Latest commit

 

History

History
47 lines (32 loc) · 928 Bytes

File metadata and controls

47 lines (32 loc) · 928 Bytes

Installing Lumen for OpenCode

Install Lumen as an OpenCode plugin from npm. The plugin registers a local MCP server automatically.

Prerequisites

Installation

Add Lumen to the plugin array in your opencode.json:

{
  "plugin": ["@ory/lumen-opencode"]
}

Restart OpenCode. The plugin registers a local mcp.lumen server that runs scripts/run stdio on all platforms (cross-spawn resolves scripts/run.cmd via PATHEXT on Windows).

Verify

opencode mcp list

Then ask OpenCode to call the Lumen semantic_search, health_check, or index_status MCP tools directly.

Updating

Restart OpenCode after updating the version pin in opencode.json, or pin a specific version:

{
  "plugin": ["@ory/lumen-opencode@0.0.29"]
}

Uninstalling

Remove the @ory/lumen-opencode entry from opencode.json and restart OpenCode.