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();
    }
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