UNO (Unified Narrative Operator) is a powerful text enhancement tool that transforms ordinary story content into rich, detailed narratives. Using advanced literary techniques and heuristic analysis, UNO can double the length of your text while preserving the original voice and intent. It serves as your personal narrative assistant, capable of analyzing text, growing underdeveloped elements, enriching descriptions, and improving overall flow.
The easiest way to install UNO for Claude Desktop is through Smithery:
npx -y @smithery/cli install @MushroomFleet/uno-mcp --client claude
Clone the repository
git clone https://github.com/your-username/uno-mcp.git
cd uno-mcp
Install dependencies
npm install
Build the TypeScript files
npm run build
Make the server executable (skip on Windows)
chmod +x dist/index.js
Test the server
node test-run.js
This will generate three sample files:
test-analysis.md
: Sample analysis reporttest-enhanced.txt
: Sample enhanced text (200%)test-custom-enhanced.txt
: Sample custom enhancement (150%)Edit Claude configuration file
C:\Users\[username]\AppData\Roaming\Claude\claude_desktop_config.json
~/Library/Application Support/Claude/claude_desktop_config.json
Add UNO to the MCP servers section
{
"mcpServers": {
"uno": {
"command": "node",
"args": ["/absolute/path/to/uno-mcp/dist/index.js"],
"disabled": false,
"autoApprove": []
}
}
}
Make sure to use the absolute path to your UNO installation.
Restart Claude to activate the UNO MCP server.
Edit VS Code Claude extension configuration
c:\Users\[username]\AppData\Roaming\Code\User\globalStorage\saoudrizwan.claude-dev\settings\cline_mcp_settings.json
~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json
Add the same configuration as shown above for Claude Desktop.
Restart VS Code or reload the window.
UNO provides three powerful MCP tools:
Use the analyze_text
tool to get a comprehensive report on your text:
<use_mcp_tool>
<server_name>uno</server_name>
<tool_name>analyze_text</tool_name>
<arguments>
{
"text": "As Sarah walked into the garden, she noticed the old statue in the corner. It was covered in moss and vines, almost hidden from view. She felt drawn to it somehow."
}
</arguments>
</use_mcp_tool>
This provides insights about narrative position, character focus, enhancement opportunities, and more.
Use the enhance_text
tool to automatically expand your text with all enhancement techniques:
<use_mcp_tool>
<server_name>uno</server_name>
<tool_name>enhance_text</tool_name>
<arguments>
{
"text": "As Sarah walked into the garden, she noticed the old statue in the corner. It was covered in moss and vines, almost hidden from view. She felt drawn to it somehow."
}
</arguments>
</use_mcp_tool>
This doubles your text length while preserving the original voice and intent.
Use the custom_enhance_text
tool for more control over which techniques to apply:
<use_mcp_tool>
<server_name>uno</server_name>
<tool_name>custom_enhance_text</tool_name>
<arguments>
{
"text": "As Sarah walked into the garden, she noticed the old statue in the corner. It was covered in moss and vines, almost hidden from view. She felt drawn to it somehow.",
"expansionTarget": 150,
"enableGoldenShadow": true,
"enableEnvironmental": true,
"enableActionScene": false,
"enableProseSmoother": true,
"enableRepetitionElimination": false
}
</arguments>
</use_mcp_tool>
UNO applies five key enhancement techniques:
Can you enhance this scene with more environmental details?
<use_mcp_tool>
<server_name>uno</server_name>
<tool_name>custom_enhance_text</tool_name>
<arguments>
{
"text": "Jack entered the abandoned warehouse, searching for clues.",
"expansionTarget": 300,
"enableEnvironmental": true,
"enableGoldenShadow": false,
"enableActionScene": false,
"enableProseSmoother": false,
"enableRepetitionElimination": false
}
</arguments>
</use_mcp_tool>
Let me help you expand this chapter:
<use_mcp_tool>
<server_name>uno</server_name>
<tool_name>enhance_text</tool_name>
<arguments>
{
"text": "[chapter excerpt]",
"expansionTarget": 180
}
</arguments>
</use_mcp_tool>
analyze_text
to understand what your text needscustom_enhance_text
with a lower expansion target (120-150%)enableActionScene: true
only for scenes that contain action elementsTo add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "uno" '{"command":"node","args":["/absolute/path/to/uno-mcp/dist/index.js"],"disabled":false,"autoApprove":[]}'
See the official Claude Code MCP documentation for more details.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"uno": {
"command": "node",
"args": [
"/absolute/path/to/uno-mcp/dist/index.js"
],
"disabled": false,
"autoApprove": []
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
2. Add this to your configuration file:
{
"mcpServers": {
"uno": {
"command": "node",
"args": [
"/absolute/path/to/uno-mcp/dist/index.js"
],
"disabled": false,
"autoApprove": []
}
}
}
3. Restart Claude Desktop for the changes to take effect