MIT Licensed · 9 packages

Plugin ecosystem for cortex-engine

Extend your agent with specialized cognitive tools. Each plugin adds MCP tools that integrate seamlessly with cortex-engine.

$ npm install @fozikio/tools-threads @fozikio/tools-journal

How plugins work

Install a plugin, register it with cortex-engine, and its tools appear in your MCP server automatically.

cortex.config.ts
import { defineConfig } from '@fozikio/cortex-engine';
import threads from '@fozikio/tools-threads';
import journal from '@fozikio/tools-journal';
import evolution from '@fozikio/tools-evolution';

export default defineConfig({
  provider: 'sqlite',
  embeddings: 'ollama',
  plugins: [threads(), journal(), evolution()],
});