-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
enhancementNew feature or requestNew feature or requestoh-plannedCreated via oh-plan skillCreated via oh-plan skill
Description
Goal
Add Memex tooling (CLI and MCP server) to the stable bottle manifest, enabling knowledge graph queries from Claude Code.
Context
Memex is a local knowledge graph for AI assistants. It consists of:
- memex CLI (
memex-clicrate): Rust binary for storing/querying knowledge - memex MCP (
@cloud-atlas-ai/memex-mcp): Node.js MCP server that exposes CLI operations to Claude Code
The MCP server shells out to the CLI, so both must be installed.
Relevant files:
/tools/memex.json(create) - tool definition for CLI/tools/memex-mcp.json(create) - tool definition for MCP server/bottles/stable/manifest.json(update) - add to tools, plugins, prerequisites
Pattern to follow: See existing oh-mcp.json for MCP server pattern, datasphere.json for CLI binary pattern.
Blocked By
-
memex-climust be published to crates.io (currently not published) -
@cloud-atlas-ai/memex-mcpmust be published to npm (currently not published)
Acceptance Criteria
-
/tools/memex.jsoncreated with correct crates.io package info- binary:
memex, package:memex-cli, install viacargo install memex-cli
- binary:
-
/tools/memex-mcp.jsoncreated with correct npm package info- install via
claude mcp add memex -s user -- npx -y @cloud-atlas-ai/memex-mcp@{version}
- install via
- Stable manifest updated:
tools.memexversion addedtools.memex-mcpversion added (if needed for curated MCP)pluginsincludesmemex-mcpprerequisites.cargoupdated to mention memex
-
bottle install stablesuccessfully installs both components - After install,
claude mcp list | grep memexshows the MCP server
Notes
- The MCP server needs the CLI binary on PATH. If that's a problem, the MCP install command can include
-e MEMEX_CLI_PATH=...but this complicates user setup. - Current memex-cli version is 0.4.0, memex-mcp is 0.1.0
- Consider whether to make memex-mcp depend on memex tool in the bottle install order (tools install before plugins currently)
coderabbitai
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestoh-plannedCreated via oh-plan skillCreated via oh-plan skill