Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var StartCmd = &cobra.Command{
Use: "start",
Short: "Start the MCP server",
Long: "\nStart the MCP (Model Context Protocol) server for integration with AI tools\n" +
"like GitHub Copilot CLI and Claude Code.\n\n" +
"The server communicates via stdio using JSON-RPC 2.0 protocol and provides:\n" +
"- Resources: Semantic file index in multiple formats\n" +
"- Tools: Search, metadata lookup, and recent files queries\n" +
"- Prompts: Templated workflows\n\n" +
"The server gets data from the daemon HTTP API. Ensure the daemon is running " +
"with HTTP port enabled for full functionality.",
Example: ` # Start MCP server (typically invoked by AI tool, not manually)
memorizer mcp start
# Start with debug logging (logs to both stderr and ~/.memorizer/mcp.log)
memorizer mcp start --log-level debug
# View MCP logs
tail -f ~/.memorizer/mcp.log`,
PreRunE: validateStart,
RunE: runStart,
}
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.