- Home
- MCP servers
- DeepLucid3D UCPF Server
DeepLucid3D UCPF Server
- typescript
14
GitHub Stars
typescript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"mushroomfleet-deeplucid3d-mcp": {
"command": "node",
"args": [
"path/to/DeepLucid3D-MCP/build/index.js"
]
}
}
}You set up and run the DeepLucid3D UCPF Server to perform Unified Cognitive Processing using MCP. This server provides structured cognitive tools for state assessment, knowledge mapping, recursive questioning, creative perspective generation, and robust problem decomposition with optional cross-session context. It helps you analyze problems, explore novel viewpoints, and break complex challenges into manageable parts while maintaining awareness of the whole system.
How to use
You interact with the UCPF Server through an MCP client. Use it to run problem analyses, generate creative perspectives, and manage persistent state across sessions. Start a session, choose a tool, and set the session context as needed. You will receive structured cognitive processing outputs such as cognitive state assessment, knowledge dimension mappings, recursive questions, and multiple perspectives to guide your solution.
How to install
Prerequisites you need before installation are installed Node.js (v14 or higher) and npm (v6 or higher). Ensure your environment supports Model Context Protocol usage.
Step 1: Clone the project repository to your local machine.
git clone https://github.com/yourusername/DeepLucid3D-UCPF-Server.git
cd DeepLucid3D-UCPF-Server
Step 2: Install the project dependencies.
npm install
Step 3: Build the project to generate the runnable artifacts.
npm run build
Step 4: Configure MCP settings to register the server for MCP access. Add a configuration block that references the local build output. You will run the server locally via Node.js.
{
"mcpServers": {
"ucpf": {
"command": "node",
"args": ["path/to/DeepLucid3D-MCP/build/index.js"],
"env": {},
"disabled": false,
"autoApprove": []
}
}
}
Additional setup notes
Restart your MCP-compatible application after adding the MCP server configuration; this ensures the server is loaded and ready to accept tool requests through MCP.
Notes on usage and capabilities
The UCPF Server exposes core capabilities including cognitive state assessment, knowledge dimension mapping, recursive self-questioning, creative perspective generation, and problem decomposition with optional state persistence. Use these features to guide problem solving, generate novel viewpoints, and maintain context across sessions whenever needed.
Available tools
analyze_problem
Process a problem statement through the full UCPF framework, yielding cognitive state assessment, knowledge mappings, recursive questions, and structured perspectives.
creative_exploration
Generate novel perspectives and connections for a topic, including metaphorical thinking and multiple viewpoints.
manage_state
Control session state for UCPF processing, enabling, disabling, resetting, or querying status to maintain continuity across sessions.