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 scriptmcp__mekara__continue_compiled_script— Continue compiled script execution after an llm stepmcp__mekara__finish_nl_script— Signal completion of a natural language scriptmcp__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
- mekara install — Install MCP server configuration
- MCP Integration — Technical details about the MCP implementation