handy_prompt_lab
MCP server for building a user-approved transcript corpus from Handy, optimizing post-processing prompts against LM Studio, and promoting winning inference settings.
README
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.
[!IMPORTANT] 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.
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.db - Prompt-lab data:
./data/handy-prompts.sqlite - LM Studio:
~/.lmstudio - LM 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 smoke
The 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 = 1800
Restart 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}placeholder - LM 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.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.