Does Voicetypr connect to Cursor or Claude Code as a plugin?
No. In interactive use, Voicetypr inserts transcribed text into the focused field. That makes it portable across apps, but it does not give Voicetypr repository context, agent state, or tool access.
Can an AI agent or script call Voicetypr directly?
A script can invoke the installed Voicetypr CLI. The source documents status, models, transcribe, and record commands, with --json available for machine-readable output. The calling script remains responsible for validation, routing, and any agent action that follows.
Is the network-sharing HTTP server a public API contract?
The public repository includes versioned HTTP routes used for network transcription, but this review found no separate public compatibility or stability document for direct consumers. Prefer the documented CLI unless you are prepared to track the source-level HTTP implementation.
Does it run offline?
Local Whisper or Parakeet transcription runs on the device after the selected model is downloaded. Optional cloud speech-to-text and optional AI formatting are different modes with different data flows.
How do I get JSON output for my pipeline?
Add --json to a CLI call. For example, voicetypr transcribe --file note.wav --json returns { text, words, metadata, model, engine }. You can also set --model and --engine per call, and use --server <host:port> with an optional --password to route to a running instance.
Does Voicetypr run or control the AI agent?
No. It supplies transcribed text. It does not submit the prompt, choose tools, approve terminal actions, execute an agent loop, or speak the agent's response.
Was the CLI hands-on tested for this guide?
Not for this July 2026 update. We reviewed the public Rust source and release notes, but did not install a release build or execute the commands. Run voicetypr --help and test non-sensitive audio in your own environment before adding it to automation.