Skip to main content
Glama
linxule

Lotus Wisdom MCP Server

by linxule

lotuswisdom_summary

Summarize your contemplative journey using a structured wisdom framework that combines analytical thinking with intuitive insights.

Instructions

Get a summary of the current contemplative journey

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The core handler function for the lotuswisdom_summary tool. It generates a JSON summary of the current contemplative journey, including journey length, domain progression, and brief summaries of each step.
    public getJourneySummary(): { content: Array<{ type: string; text: string }> } {
      const domainJourney = this.thoughtProcess
        .map(step => step.wisdomDomain)
        .filter((domain, index, array) => index === 0 || domain !== array[index - 1])
        .join(' → ');
    
      return {
        content: [{
          type: "text",
          text: JSON.stringify({
            journeyLength: this.thoughtProcess.length,
            domainJourney: domainJourney,
            steps: this.thoughtProcess.map(step => ({
              tag: step.tag,
              domain: step.wisdomDomain,
              stepNumber: step.stepNumber,
              brief: step.content.substring(0, 50) + '...'
            }))
          }, null, 2)
        }]
      };
  • Schema definition for the lotuswisdom_summary tool, specifying no input parameters required.
    const JOURNEY_SUMMARY_TOOL: Tool = {
      name: "lotuswisdom_summary",
      description: "Get a summary of the current contemplative journey",
      inputSchema: {
        type: "object",
        properties: {},
        required: []
      }
    };
  • server.ts:496-498 (registration)
    Registration of the lotuswisdom_summary tool in the list of available tools returned by ListToolsRequest.
    server.setRequestHandler(ListToolsRequestSchema, async () => ({
      tools: [LOTUS_WISDOM_TOOL, JOURNEY_SUMMARY_TOOL],
    }));
  • server.ts:501-505 (registration)
    Dispatch logic in CallToolRequest handler that routes calls to lotuswisdom_summary to the getJourneySummary method.
    if (request.params.name === "lotuswisdom") {
      return wisdomServer.processThought(request.params.arguments);
    } else if (request.params.name === "lotuswisdom_summary") {
      return wisdomServer.getJourneySummary();
    }
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It states the tool 'Get[s] a summary,' which implies a read-only operation, but doesn't clarify aspects like authentication needs, rate limits, or what the summary contains (e.g., format, depth). This leaves significant gaps for a tool with no structured safety hints.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, clear sentence with zero wasted words. It is appropriately sized and front-loaded, directly stating the tool's purpose without unnecessary elaboration, making it highly efficient.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has 0 parameters, no annotations, and no output schema, the description is minimally complete. It states what the tool does but lacks details on behavioral traits, output format, or differentiation from siblings. For a simple tool with no complexity, this is adequate but leaves clear gaps in usage context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 0 parameters with 100% coverage, meaning no parameters are documented in the schema. The description doesn't mention any parameters, which is appropriate here. Since there are no parameters to explain, it meets the baseline of 4, as it doesn't need to compensate for missing schema information.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Get a summary') and the resource ('current contemplative journey'), providing a specific verb+resource combination. However, it doesn't differentiate from its sibling tool 'lotuswisdom' (which presumably handles the journey itself rather than summarizing it), so it doesn't reach the highest score.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description offers no guidance on when to use this tool versus its sibling 'lotuswisdom' or any alternatives. It implies usage in the context of a 'contemplative journey' but doesn't specify prerequisites, timing, or exclusions, leaving the agent with minimal contextual direction.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/linxule/lotus-wisdom-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server