handy_prompt_lab
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@handy_prompt_labOptimize my Handy prompt using the approved annotations."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Handy Optimized Prompts
A local MCP app for building a user-approved transcript corpus from Handy, evaluating post-processing prompts against LM Studio, and promoting winning inference settings.
This repository is shared as an example for inspiration and adaptation. It reflects a personal local workflow and is not a production-ready package, supported product, or drop-in solution. Review and adapt its security, privacy, data-handling, and operational assumptions before using it.
Safety and data boundaries
Handy's
history.dbandsettings_store.jsonare read-only.Only
transcription_history.transcription_textis imported. Historical Handy post-processing output is ignored.Proposals, approved targets, dataset splits, prompts, and evaluation results live in this project's SQLite database.
Holdout examples are sealed after dataset creation. Optimization tools expose development examples and development failures only.
LM Studio settings are changed only by the promotion tool after a form confirmation. The existing per-model configuration is backed up first.
The project never downloads LM Studio models.
Related MCP server: Open Router Audio Transcription MCP
Requirements
macOS
Handy 0.9.0 or newer
LM Studio 0.4.0 or newer
Node.js 24 or newer
Default paths:
Handy history:
~/Library/Application Support/com.pais.handy/history.dbPrompt-lab data:
./data/handy-prompts.sqliteLM Studio:
~/.lmstudioLM Studio API:
http://127.0.0.1:1234
Override them with HANDY_HISTORY_DB, HANDY_PROMPTS_DB, LM_STUDIO_HOME,
or LM_STUDIO_BASE_URL.
Install and verify
npm install
npm test
npm run smokeThe smoke test reads the live Handy history into a temporary database and deletes that database afterward.
Connect to Codex Desktop over STDIO
The MCP server communicates through stdin and stdout only. It does not open an HTTP listener.
[mcp_servers.handy_prompt_lab]
command = "node"
args = ["/absolute/path/to/handy-optimized-prompts/src/server.js", "--stdio"]
startup_timeout_sec = 20
tool_timeout_sec = 1800Restart Codex after changing the server code or configuration.
Annotation workflow
Start a Codex task and say:
Let's update Handy annotations.
Codex should:
Call
sync_handy_history.Call
list_transcripts_needing_proposalswith a maximum of 20.Generate conservative corrections and call
save_correction_proposals.Call
show_annotation_lab.
The widget saves each user decision through save_annotation_and_next and
loads the next proposal directly. It does not use ui/message or
ui/update-model-context.
End the task after annotation. Do not optimize the prompt in the same task, because that task has seen the prospective holdout transcripts.
Optimization workflow
Start a fresh Codex task and say:
Optimize my Handy prompt using the approved annotations.
Codex should:
Call
prepare_optimization_datasetwith the required fresh-task confirmation.Inspect
get_development_examples.Call
list_lm_studio_models.Create a prompt/model/settings candidate with
create_prompt_candidate.Call
run_development_eval.Inspect detailed development failures with
get_development_failures.Iterate until the development candidate is satisfactory.
Freeze it with
freeze_prompt_candidate.Call
run_holdout_evalonce. This returns aggregate metrics only.
The initial dataset uses a chronological split: the newest 20% are holdout. With fewer than five approved records, one record is held out when possible. Newly collected transcripts should supply rolling holdouts in later cycles.
Evaluation behavior
Candidates version:
Handy prompt-template text containing the literal
${output}placeholderLM Studio model key
Temperature
Maximum output tokens
Optional top-p, top-k, min-p, and repeat penalty
For every evaluation record, the evaluator replaces ${output} with the raw
transcript and sends the complete rendered prompt as a single user message.
Candidates without ${output} are rejected. This matches Handy's legacy path
for custom providers that do not advertise structured-output support.
Evaluation requests match Handy 0.9.0's custom-provider behavior by sending
top-level reasoning_effort: "none". This is fixed rather than a candidate
setting because Handy does not expose it. Model-specific thinking toggles in
LM Studio remain unchanged during promotion.
The primary quality metric is normalized exact match. Normalization performs Unicode NFC cleanup, line-ending normalization, non-breaking-space conversion, outer trimming, and repeated horizontal-whitespace collapse. It preserves capitalization, punctuation, quote and dash style, numbers, words, word order, and line breaks.
The evaluator runs models sequentially. It records the initially loaded LM Studio models, loads the candidate model if necessary, and restores the originally loaded models after the run.
Promotion
plan_lm_studio_promotion shows the proposed per-model default changes.
promote_candidate_to_lm_studio requires:
A frozen candidate
A completed holdout evaluation
An accepted form confirmation
Promotion updates inference fields in:
~/.lmstudio/.internal/user-concrete-model-default-config/<model-key>.json
It preserves unrelated fields such as model-specific thinking toggles and creates a timestamped backup. Reload the model after promotion. The tool returns the winning prompt for manual entry in Handy; it does not write Handy settings.
References
License
This example is shared under the Common Grace License 1.0.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/glitchassassin/handy-prompt-optimizer'
If you have feedback or need assistance with the MCP directory API, please join our Discord server