mcp/cmd/openbrain-mcp
Snider b2ed228b3f feat(ax-10): bring mcp to v0.8.0-alpha.1 + CLI test scaffold
- Migrate go.mod direct + indirect deps from dappco.re/go/core/X (pre-migration paths) to dappco.re/go/X at v0.8.0-alpha.1
- Update all Go source imports across 49 files: dappco.re/go/core/{ai,api,cli,io,log,process,rag,webview,ws,i18n,inference} -> dappco.re/go/{ai,api,cli,io,log,process,rag,webview,ws,i18n,inference}
- Add tests/cli/mcp/Taskfile.yaml AX-10 scaffold (build / vet / test under default deps), per RFC-CORE-008-AGENT-EXPERIENCE.md §10
- mcp is library + 4 binaries (brain-seed, core-mcp, mcpcmd, openbrain-mcp); the build target validates all of them

Closes tasks.lthn.sh/view.php?id=198

Co-Authored-By: Athena <athena@lthn.ai>
2026-04-24 23:35:37 +01:00
..
main.go feat(ax-10): bring mcp to v0.8.0-alpha.1 + CLI test scaffold 2026-04-24 23:35:37 +01:00
README.md feat(mcp): add cmd/openbrain-mcp stdio wrapper for Claude Code 2026-04-23 15:22:13 +01:00

openbrain-mcp

openbrain-mcp is a thin stdio MCP wrapper for the OpenBrain tools registered in pkg/mcp/brain.

Install:

go install dappco.re/go/mcp/cmd/openbrain-mcp@latest

Add it to Claude Code:

claude mcp add openbrain -- openbrain-mcp --brain-url=http://127.0.0.1:8000/v1/brain --api-key=$OPENBRAIN_API_KEY

The wrapper exposes:

  • brain_remember
  • brain_recall
  • brain_forget
  • brain_list

Flags:

  • --brain-url: OpenBrain BrainService URL. Defaults to http://127.0.0.1:8000/v1/brain.
  • --api-key: OpenBrain API key. Defaults to OPENBRAIN_API_KEY.

The process logs to stderr only. Stdout is reserved for MCP framing.