Text processing toolkit with 22 MCP tools for AI assistants - case transformation, encoding, hashing, text analysis, and notes management
npm install pomera-ai-commander
![]()

A desktop text "workbench" + MCP server: clean, transform, extract, and analyze text fast—manually in a GUI or programmatically from AI assistants (Cursor / Claude Desktop / MCP clients).
> Stop pasting text into 10 random websites. Pomera (GUI + MCP) - do web searches with MCP and save your work as Pomera Notes in case of text corruption in IDE! Your search API keys are stored encrypted in local database instead of JSON config file.
📊 Why AI needs Pomera! - Pomera's MCP tools reduce token usage upto 70-80% for deterministic operations.
Download latest release · Docs: Tools · MCP Guide · CrewAI Integration · Troubleshooting
---
Best-for workflows
- Cleaning pasted logs / PDFs (whitespace, wrapping, stats)
- Extracting emails/URLs/IDs via regex
- Normalizing case, sorting, columns
- Hashing/encoding utilities
- Letting Cursor/Claude call these as MCP tools in a repeatable pipeline
---
Python 3.8+ is required for all installation methods.
bash
Tkinter support (replace @3.14 with your Python version)
brew install python-tk@3.14
pip3 install requests reportlab python-docx
`$3
`bash
sudo apt-get install python3-tk
pip3 install requests reportlab python-docx
`$3
Tkinter is included with Python from python.org.
`cmd
pip install requests reportlab python-docx
`> Note: For PEP 668 protected environments, use
pip3 install --user or a virtual environment.---
Install / Run
$3
Download from Releases and run.$3
`bash
pip install pomera-ai-commander
then run:
pomera-ai-commander --help
`$3
`bash
npm install -g pomera-ai-commander
then run:
pomera-mcp --help
`$3
After installing via pip or npm, create a desktop shortcut for quick access:`bash
For pip install:
pomera-create-shortcutFor npm install (from package directory):
python create_shortcut.py
`---
MCP Server for AI Assistants
Pomera exposes 22 text processing tools via MCP. Configure your AI assistant:
Cursor (
.cursor/mcp.json):
`json
{
"mcpServers": {
"pomera": {
"command": "pomera-ai-commander"
}
}
}
`Claude Desktop (
claude_desktop_config.json):
`json
{
"mcpServers": {
"pomera": {
"command": "pomera-ai-commander"
}
}
}
`> 💡 Tip: If the simple command doesn't work, use the full path. Find it with:
>
`bash
> # For npm install:
> npm root -g
> # Then use: /pomera-ai-commander/pomera_mcp_server.py
>
> # For pip install:
> pip show pomera-ai-commander | grep Location
> ``See the full MCP Server Guide for Antigravity, executable configs, and troubleshooting.
---
MIT License - see LICENSE for details.