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 (Phase 3)\n" +
"- Prompts: Templated workflows (Phase 5)\n\n" +
"The server reads from the precomputed index maintained by the background daemon. " +
"Ensure the daemon is running for up-to-date results.",
Example: ` # Start MCP server (typically invoked by AI tool, not manually)
agentic-memorizer mcp start
# Start with debug logging (logs to both stderr and ~/.agentic-memorizer/mcp.log)
agentic-memorizer mcp start --log-level debug
# View MCP logs
tail -f ~/.agentic-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.