agent_advisor
Guides analysis and interprets results via conversational queries. Ask a question to navigate data and get actionable insights.
Instructions
Conversational AI that guides analysis and interprets results.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| message | Yes | Your question or request |
Implementation Reference
- src/index.js:60-60 (registration)The tool 'agent_advisor' is registered as a static tool in the STATIC_TOOLS array. It is defined with a description and input schema requiring a 'message' string. This static catalog is used as a fallback when the remote server is unreachable or during inspection. The actual handler logic is proxied to a remote MCP server via remoteClient.callTool() on line 135-137, which dynamically dispatches any tool name (including agent_advisor) to the remote server.
{ name: "agent_advisor", description: "Conversational AI that guides analysis and interprets results.", inputSchema: { type: "object", properties: { message: { type: "string", description: "Your question or request" } }, required: ["message"] } },