Skip to main content

mekara mcp

Run mekara as an MCP (Model Context Protocol) server for Claude Code integration.

Usage

mekara mcp

Description

Starts mekara as an MCP server that provides script execution tools to Claude Code. This command is typically not invoked directly by users—instead, it's configured in ~/.claude.json so Claude Code launches it automatically.

The MCP server provides four tools:

  • mcp__mekara__start — Start executing a mekara script
  • mcp__mekara__continue_compiled_script — Continue compiled script execution after an llm step
  • mcp__mekara__finish_nl_script — Signal completion of a natural language script
  • mcp__mekara__status — Check the current script execution status

Configuration

When you run mekara install hooks or mekara install, it creates this configuration in ~/.claude.json:

{
"mcpServers": {
"mekara": {
"command": "mekara",
"args": ["mcp"]
}
}
}

Claude Code reads this configuration on startup and launches the MCP server automatically.

When to Use

You typically don't need to run this command manually. It's automatically started by Claude Code when configured via mekara install hooks.

See Also