class Rubydex::CLI::Command::Mcp
Public Instance Methods
→ void
Source
# File lib/rubydex/cli/command/mcp.rb, line 16 def run parse_options! path = argv.shift || Dir.pwd abort_with_usage("unexpected argument: #{argv.first}") unless argv.empty? # The MCP server manages its own graph lifecycle for the given workspace, so it does not go # through `build_graph`. require "rubydex/mcp_server" Rubydex::MCPServer.run(path) end