Lotus Wisdom MCP Server

Lotus Wisdom MCP Server

By linxule GitHub

MCP server for structured problem-solving using the Lotus Sutra's wisdom framework. Beautiful visualizations, multiple thinking approaches, compatible with various MCP clients (e.g., Claude Desktop, Cursor, Cherry Studio).

mcp mcp-server
Overview

What is Lotus Wisdom MCP Server?

Lotus Wisdom MCP Server is an implementation of a structured problem-solving tool that utilizes the wisdom framework of the Lotus Sutra, combining analytical and intuitive thinking approaches.

How to use Lotus Wisdom MCP Server?

To use the Lotus Wisdom MCP Server, submit a problem to solve through compatible MCP clients like Claude Desktop or Cursor, and the server will guide you through a structured thought process.

Key features of Lotus Wisdom MCP Server?

  • Multi-faceted problem-solving approach inspired by the Lotus Sutra
  • Step-by-step thought process with various thinking techniques
  • Meditation pauses to allow insights to emerge naturally
  • Beautifully formatted thought process visualizations
  • Final integration of insights into a clear response

Use cases of Lotus Wisdom MCP Server?

  1. Breaking down complex problems requiring multi-faceted understanding
  2. Questions that benefit from both direct and gradual approaches
  3. Situations requiring both analytical and intuitive understanding
  4. Tasks that benefit from meditative pauses to allow insight

FAQ from Lotus Wisdom MCP Server?

  • Can the Lotus Wisdom MCP Server handle all types of problems?

Yes! It is designed to assist with a wide range of problems that require thoughtful analysis and insight.

  • Is there a cost to use the Lotus Wisdom MCP Server?

No! The server is free to use for everyone.

  • How does the meditation feature work?

The meditation feature allows users to pause and reflect, facilitating deeper insights during the problem-solving process.

Content

Lotus Wisdom MCP Server

Lotus Flower

An MCP server implementation that provides a tool for problem-solving using the Lotus Sutra's wisdom framework, combining analytical thinking with intuitive wisdom.

Features

  • Multi-faceted problem-solving approach inspired by the Lotus Sutra
  • Step-by-step thought process with different thinking techniques
  • Meditation pauses to allow insights to emerge naturally
  • Beautifully formatted thought process visualization with colors and symbols
  • Final integration of insights into a clear response

Background

This MCP server was developed from the Lotus OS prompt, which was designed to implement a cognitive framework based on the Lotus Sutra. The MCP server format makes this framework more accessible and easier to use with Claude and other AI assistants.

Note: The original prompt framework may work less effectively with newer Claude models, but this MCP server implementation provides consistent functionality across model versions.

Implementation Details

The server implements a structured thinking process using the following components:

Tag Types

The server organizes thoughts using various tag categories (all valid values for the tag input parameter):

  • Skillful Means: upaya, expedient, direct, gradual, sudden
  • Non-Dual Recognition: recognize, transform, integrate, transcend, embody
  • Meta-Cognitive Awareness: examine, reflect, verify, refine, complete
  • Process Steps: open, engage, transform, express, meditate
  • Final Output: OUTPUT

Thought Visualization

Each thought is beautifully formatted with:

  • Colorful output using the chalk library
  • Tag-specific symbols (e.g., 🔆 for skillful means, ☯️ for non-dual recognition)
  • Box-drawing characters to create clear thought boundaries
  • Special meditation formatting with pause indicators
  • Final output with double-line borders for emphasis

Note: The visualization appears in the server console output, helping developers track the thinking process.

Process Flow

  1. The user submits a problem to solve
  2. The model works through a sequence of thoughts using different tags
  3. Each thought builds on previous ones and may revise understanding
  4. Meditation pauses can be included for clarity
  5. The process concludes with a final OUTPUT thought

Tool

lotuswisdom

A tool for problem-solving using the Lotus Sutra's wisdom framework, with various approaches to understanding.

Inputs:

  • tag (string): The current processing technique (must be one of the core tags listed above)
  • content (string): The content of the current processing step
  • stepNumber (integer): Current number in sequence
  • totalSteps (integer): Estimated total steps needed
  • nextStepNeeded (boolean): Whether another step is needed
  • isMeditation (boolean, optional): Whether this step is a meditative pause
  • meditationDuration (integer, optional): Duration for meditation in seconds

Usage

The Lotus Wisdom tool is designed for:

  • Breaking down complex problems requiring multi-faceted understanding
  • Questions that benefit from both direct and gradual approaches
  • Problems where apparent contradictions need integration
  • Situations requiring both analytical and intuitive understanding
  • Tasks that benefit from meditative pauses to allow insight
  • Questions containing their own inherent wisdom

Example Usage

Here's how a conversation with Claude might flow when using the Lotus Wisdom MCP server:

User: "Help me understand the relationship between freedom and responsibility."

Claude would then use the lotuswisdom tool through multiple steps:

  1. First, establish an opening thought:
{
  "tag": "open",
  "content": "The question explores the relationship between freedom and responsibility, which contain an apparent tension but also deep connection.",
  "stepNumber": 1,
  "totalSteps": 5,
  "nextStepNeeded": true
}
  1. Then engage with different perspectives:
{
  "tag": "direct",
  "content": "Freedom and responsibility are two sides of the same coin. True freedom isn't absence of constraints but the capacity to choose our response within constraints.",
  "stepNumber": 2,
  "totalSteps": 5,
  "nextStepNeeded": true
}
  1. Perhaps take a meditation pause:
{
  "tag": "meditate",
  "content": "Contemplating how freedom without responsibility becomes chaos, and responsibility without freedom becomes oppression.",
  "stepNumber": 3,
  "totalSteps": 5,
  "nextStepNeeded": true,
  "isMeditation": true
}
  1. Integrate the understanding:
{
  "tag": "integrate",
  "content": "Freedom and responsibility mutually enable each other. Our freedom to choose gives rise to our responsibility for what we choose, and our willingness to take responsibility expands our freedom.",
  "stepNumber": 4,
  "totalSteps": 5,
  "nextStepNeeded": true
}
  1. Provide a final output:
{
  "tag": "OUTPUT",
  "content": "Freedom and responsibility exist in dynamic balance. Freedom is the power to choose, while responsibility is accountability for those choices. They're not opposing forces but complementary aspects of human agency. Without freedom, responsibility would be mere obligation. Without responsibility, freedom would degrade into impulsivity. The most fulfilled lives embrace both: using freedom to make meaningful choices while taking responsibility for their consequences.",
  "stepNumber": 5,
  "totalSteps": 5,
  "nextStepNeeded": false
}

The result would be a thoughtful, multi-perspective response to the question that shows the process of arriving at wisdom rather than just stating conclusions.

Configuration

Usage with Claude Desktop

Add this to your claude_desktop_config.json:

{
  "mcpServers": {
    "lotus-wisdom": {
      "command": "npx",
      "args": [
        "-y", 
        "lotus-wisdom-mcp"
      ]
    }
  }
}

From GitHub

{
  "mcpServers": {
    "lotus-wisdom": {
      "command": "npx",
      "args": [
        "-y", 
        "git+https://github.com/linxule/lotus-wisdom-mcp.git"
      ]
    }
  }
}

docker

{
  "mcpServers": {
    "lotus-wisdom": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "lotus-wisdom-mcp"
      ]
    }
  }
}

Building

Docker:

docker build -t lotus-wisdom-mcp -f Dockerfile .

License

This MCP server is licensed under the MIT License. For more details, please see the LICENSE file in the project repository.

No tools information available.

This is a basic MCP Server-Client Impl using SSE

mcp server-client
View Details

-

mcp model-context-protocol
View Details

Mirror of

image-generation mcp-server
View Details

Buttplug.io Model Context Protocol (MCP) Server

mcp buttplug
View Details

Secure MCP server for analyzing Excel files with oletools

oletools mcp-server
View Details

MCP web search using perplexity without any API KEYS

mcp puppeteer
View Details