Module: MicroMcp::ToolRegistry
- Defined in:
- lib/micro_mcp/tool_registry.rb
Class Method Summary collapse
-
.register_assistant_tool(name:, description:, question_param: "question", &block) ⇒ Object
Enhanced registration with better error handling and validation.
-
.register_qa_tool(name:, description:, system_prompt: "You are a helpful assistant.", max_tokens: 100) ⇒ Object
Specialized method for simple question-answering tools.
- .register_tool(name:, description: nil, arguments: nil, &block) ⇒ Object
Class Method Details
.register_assistant_tool(name:, description:, question_param: "question", &block) ⇒ Object
Enhanced registration with better error handling and validation
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
# File 'lib/micro_mcp/tool_registry.rb', line 34 def self.register_assistant_tool(name:, description:, question_param: "question", &block) raise ArgumentError, "block required" unless block arguments = Schema.object( question_param.to_sym => Schema.string("Question for the assistant").required ) register_tool(name: name, description: description, arguments: arguments) do |args, runtime| # Extend runtime with helper methods runtime.extend(RuntimeHelpers) result = block.call(args, runtime) # Auto-handle common return value patterns case result when Hash # If it looks like a create_message result, extract the text # Response format: { "role": "assistant", "content": { "type": "text", "text": "..." }, ... } if result.dig("content", "text") result["content"]["text"] else result end else result end end end |
.register_qa_tool(name:, description:, system_prompt: "You are a helpful assistant.", max_tokens: 100) ⇒ Object
Specialized method for simple question-answering tools
64 65 66 67 68 69 70 71 72 |
# File 'lib/micro_mcp/tool_registry.rb', line 64 def self.register_qa_tool(name:, description:, system_prompt: "You are a helpful assistant.", max_tokens: 100) register_assistant_tool(name: name, description: description) do |args, runtime| runtime.ask_assistant( args["question"], system_prompt: system_prompt, max_tokens: max_tokens ) end end |
.register_tool(name:, description: nil, arguments: nil, &block) ⇒ Object
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
# File 'lib/micro_mcp/tool_registry.rb', line 7 def self.register_tool(name:, description: nil, arguments: nil, &block) raise ArgumentError, "block required" unless block # Wrap the block with error handling for all tools wrapped_block = proc do |args, runtime| block.call(args, runtime) rescue => e # For test tools that are designed to fail, re-raise the error # so tests can verify the error behavior if name.to_s.include?("error") || name.to_s.include?("fail") || name.to_s.include?("use_captured_runtime") || e..include?("McpServer reference") raise e end # Better error reporting for unexpected failures error_msg = "Tool '#{name}' failed: #{e.message}" puts "ERROR: #{error_msg}" puts "Backtrace: #{e.backtrace.first(3).join("\n")}" if ENV["MCP_DEBUG"] error_msg end MicroMcpNative.register_tool(name, description, arguments, wrapped_block) end |