@enteros/skill-mcp
v0.1.3
Published
MCP server that exposes EnterOS skills over the Model Context Protocol: loads a skill tree built with @enteros/skill-core, persists work with @enteros/skill-ledger, and serves the skill tools to any MCP client (run via the skill-mcp CLI).
Downloads
472
Maintainers
Readme
@enteros/skill-mcp
An MCP (Model Context Protocol) server that exposes EnterOS skills to any MCP
client. It loads a skill tree built with @enteros/skill-core, persists work
with @enteros/skill-ledger, and serves each skill's tools over a stdio
transport.
Install
npm install @enteros/skill-mcpRun the server
The package ships a skill-mcp binary (stdio MCP server):
skill-mcp --config <path> --tenant <id> [--scope <module-id-prefix>] [--admin]Environment:
ENTEROS_DATA_DIR(required) — tenant state root for the ledger.ENTEROS_TENANT— fallback for--tenant.ENTEROS_MOUNT_ROOT(default: cwd) — whereskills.registry.jsonand the root composite live.ENTEROS_DEV=1— load skills fromsrc/for the dev loop.
Point your MCP client (e.g. Claude Desktop / any MCP host) at the skill-mcp
command with those args/env and it will discover the skill tools exposed by your
registry.
Programmatic use
import { bootSkillMcp } from "@enteros/skill-mcp";
const { server, runtime } = await bootSkillMcp(/* ...boot options... */);License
MIT © Molecule AI
