MCP server intelligence profile

Lotus Wisdom MCP Server

Enables problem-solving using a structured wisdom framework inspired by the Lotus Sutra, combining analytical thinking with intuitive wisdom through multi-faceted contemplative approaches and meditation pauses

Hybridlinxule
Awaiting current scanNpm · 0.8.0

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

1Distribution channel
2Independently observed tools
0Linked remote endpoints
AvailableVersion intelligence

Detailed security scan evidence is not public for this MCP yet. Public identity, registry metadata, and independently observed protocol inventory remain available.

Install and connect

Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.

Install lotus-wisdom-mcp from npm

Version 0.8.0 declares 1 executable entrypoint.

npm install --save-exact lotus-wisdom-mcp@0.8.0
npx -y -p lotus-wisdom-mcp@0.8.0 lotus-wisdom
MCP client configuration example
{
  "mcpServers": {
    "lotus-wisdom-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "-p",
        "lotus-wisdom-mcp@0.8.0",
        "lotus-wisdom"
      ]
    }
  }
}

Identity

Canonical sluglotus-wisdom-mcp-server-b0925904DeploymentHybrid
Canonical packagenpm:lotus-wisdom-mcpRepositorylinxule/lotus-wisdom-mcp
First publishedLatest release
Last security verificationClassification confidence82%
PublicationDraftOfficial distributionNot verified

Distributions

ChannelIdentifierCurrent versionVersionsSource
npmlotus-wisdom-mcp0.8.015Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
npmlotus-wisdom-mcp0.8.0CurrentSep 5, 20262 toolsSucceeded · 1 resources · 2 promptsEvidence restricted
Enterprise protection

Continuously monitor this MCP for security risk

Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.

  • Independent exact-version security scans
  • Continuous release and vulnerability monitoring
  • Risk-change alerts with capability context
  • Historical evidence and API exports
Custom pricingContact salesTailored to your organization, integrations, data needs, and support requirements.

Current version evidence

No public current-version evidence is available yet.

Current protocol inventory

2025-06-18Negotiated protocol
lotus-wisdomServer-reported name
4Capability groups
Aug 15, 2026Observed

Tools 2

ToolCategoryAnnotationsRisk
lotuswisdomContemplative reasoning tool. Use for complex problems needing multi-perspective understanding, contradictions requiring integration, or questions holding their own wisdom. **Workflow:** Always start with tag='begin' (returns framework). Then continue with contemplation tags. Do NOT output wisdom until status='WISDOM_READY'. **Tags:** begin (FIRST - receives framework), then: open/engage/express (process), examine/reflect/verify/refine/complete (meta-cognitive), recognize/transform/integrate/transcend/embody (non-dual), upaya/expedient/direct/gradual/sudden (skillful-means), meditate (pause).
Input schema
{
  "type": "object",
  "properties": {
    "tag": {
      "type": "string",
      "enum": [
        "begin",
        "upaya",
        "expedient",
        "direct",
        "gradual",
        "sudden",
        "recognize",
        "transform",
        "integrate",
        "transcend",
        "embody",
        "examine",
        "reflect",
        "verify",
        "refine",
        "complete",
        "open",
        "engage",
        "express",
        "meditate"
      ],
      "description": "Current processing technique (wisdom-domain tag)"
    },
    "content": {
      "type": "string",
      "minLength": 1,
      "description": "Your contemplation for this step"
    },
    "stepNumber": {
      "type": "integer",
      "minimum": 1,
      "default": 1,
      "description": "Current step number"
    },
    "totalSteps": {
      "type": "integer",
      "minimum": 1,
      "default": 5,
      "description": "Estimated total steps needed (adjustable as you go)"
    },
    "nextStepNeeded": {
      "type": "boolean",
      "default": true,
      "description": "Whether another step is needed"
    },
    "isMeditation": {
      "type": "boolean",
      "description": "Whether this step is a meditative pause"
    },
    "meditationDuration": {
      "type": "integer",
      "minimum": 1,
      "maximum": 10,
      "description": "Duration for the meditation pause in seconds (1-10)"
    },
    "previousJourney": {
      "type": "string",
      "description": "Pass the journey string from the previous response to maintain journey tracking (e.g. \"begin → open → examine\")."
    }
  },
  "required": [
    "tag",
    "content"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
Output schema
{
  "type": "object",
  "properties": {
    "status": {
      "type": "string"
    },
    "contemplation": {
      "type": "string"
    },
    "welcome": {
      "type": "string"
    },
    "currentStep": {
      "type": "string"
    },
    "finalStep": {
      "type": "string"
    },
    "wisdomDomain": {
      "type": "string"
    },
    "journey": {
      "type": "string"
    },
    "finalJourney": {
      "type": "string"
    },
    "domainJourney": {
      "type": "string"
    },
    "stepNumber": {
      "type": "number"
    },
    "totalSteps": {
      "type": "number"
    },
    "nextStepNeeded": {
      "type": "boolean"
    },
    "processLength": {
      "type": "number"
    },
    "journeyLength": {
      "type": "number"
    },
    "processComplete": {
      "type": "boolean"
    },
    "instruction": {
      "type": "string"
    },
    "duration": {
      "type": "number"
    },
    "prompt": {
      "type": "string"
    },
    "steps": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "tag": {
            "type": "string"
          },
          "domain": {
            "type": "string"
          },
          "stepNumber": {
            "type": "number"
          },
          "brief": {
            "type": "string"
          }
        },
        "required": [
          "tag",
          "stepNumber",
          "brief"
        ],
        "additionalProperties": false
      }
    }
  },
  "required": [
    "status"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
Annotations
{
  "title": "Lotus Wisdom",
  "readOnlyHint": true,
  "destructiveHint": false,
  "idempotentHint": true,
  "openWorldHint": false
}
Read onlyNon-destructiveIdempotentClosed world
lotuswisdom_summaryGet a summary of the current contemplative journey
Input schema
{
  "type": "object",
  "properties": {
    "previousJourney": {
      "type": "string",
      "description": "Pass the journey string from a previous response to reconstruct the current journey summary."
    }
  },
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
Output schema
{
  "type": "object",
  "properties": {
    "status": {
      "type": "string"
    },
    "journeyLength": {
      "type": "number"
    },
    "domainJourney": {
      "type": "string"
    },
    "steps": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "tag": {
            "type": "string"
          },
          "domain": {
            "type": "string"
          },
          "stepNumber": {
            "type": "number"
          },
          "brief": {
            "type": "string"
          }
        },
        "required": [
          "tag",
          "stepNumber",
          "brief"
        ],
        "additionalProperties": false
      }
    }
  },
  "required": [
    "status",
    "journeyLength",
    "domainJourney",
    "steps"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
Annotations
{
  "title": "Lotus Wisdom Journey Summary",
  "readOnlyHint": true,
  "destructiveHint": false,
  "idempotentHint": true,
  "openWorldHint": false
}
Read onlyNon-destructiveIdempotentClosed world

Resources 1

  • ui://lotuswisdom/journey.htmlui://lotuswisdom/journey.html

    Interactive visualization of the contemplative journey

Resource templates 0

  • None observed.

Prompts 2

  • contemplatecontemplate

    Scaffold a Lotus Wisdom contemplative inquiry into a question or problem.

  • deep-inquirydeep-inquiry

    Begin a longer contemplative inquiry that moves deliberately across wisdom domains (process → meta-cognitive → non-dual → meditation).

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

Lotus Wisdom MCP Server questions

How do I install Lotus Wisdom MCP Server?

Install the selected package version with: npm install --save-exact lotus-wisdom-mcp@0.8.0

What tools does Lotus Wisdom MCP Server provide?

Lotus Wisdom MCP Server exposed 2 tools during independent protocol observation, including lotuswisdom, lotuswisdom_summary.

Is Lotus Wisdom MCP Server secure?

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

Explore related MCP server guides

Curated product and capability guides containing this catalog record.

Official vs Community MCP Servers

Let’s talk about MCP security.

Share your details and our security team will contact you.