Claude Typer
Allows Claude to type text directly into Google Docs with human-like keystroke simulation, approval mode, and configurable writing style presets.
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., "@Claude TyperType 'Meeting at 3pm' into the active window"
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.
Claude Typer
A Windows MCP extension for Claude Desktop that lets Claude type text directly into any active application (Google Docs, Word, Notepad, browser, etc.) with human-like typing behavior and configurable writing style.
Features
Human-like typing — Simulates realistic keystroke timing with digraph acceleration, thinking pauses, speed drift, and natural variance
Approval mode — Preview text before Claude types it (on by default). Approve, reject, or request changes
Configurable speed — WPM slider (30–150) and consistency control
Clipboard paste — Instant paste mode for large blocks of text
Keyboard shortcuts — Send formatting commands (Ctrl+B, Ctrl+I, etc.) to any app
Emergency stop — Cancel typing mid-stream if something goes wrong
Writing style presets — Intellectual, smart, concise, casual, professional, and more
Grade-level targeting — Adjust output complexity from 1st grade to postgraduate
Style cloning — Calibration questionnaire that learns your writing style
Settings GUI — Live control panel with sliders, toggles, action log, and profile management
Window targeting — Find and focus specific application windows with verification
Health diagnostics — Built-in health check to troubleshoot issues
Action log — Rolling history of all operations for review
Quick Start
1. Install Python dependencies
cd claude-typer
pip install -r requirements.txt2. Register with Claude Desktop
Add this to your Claude Desktop config file.
Standard location: %APPDATA%\Claude\claude_desktop_config.json
Microsoft Store version: Check under %LOCALAPPDATA%\Packages\AnthropicPBC.claude_*\LocalCache\Roaming\Claude\claude_desktop_config.json
{
"mcpServers": {
"claude-typer": {
"command": "python",
"args": ["C:\\full\\path\\to\\claude-typer\\server.py"]
}
}
}Tip: Use the full absolute path to
server.py. Replace backslashes with double backslashes in JSON.
3. Restart Claude Desktop
Close and reopen Claude Desktop. You should see "Claude Typer" listed in the MCP tools menu (hammer icon). The settings GUI window will also appear.
Usage Examples
Once connected, you can ask Claude things like:
"Type 'Hello, world!' into my Notepad window"
"Focus Google Docs and type a paragraph about climate change"
"Set typing speed to 60 WPM with high consistency"
"Switch to the concise writing preset"
"Start a style calibration session"
"Paste this code block into VS Code"
"Press Ctrl+B to toggle bold, then type 'Important'"
"Turn off approval mode so you can type directly"
"Run a health check"
"Stop typing"
MCP Tools Reference
Typing
Tool | Description |
| Type text character-by-character (stages for approval if approval mode is on) |
| Instant clipboard paste (stages for approval if approval mode is on) |
| Approve staged text and execute the type/paste |
| Cancel staged text without typing |
| Emergency stop — cancel typing in progress |
| Send keyboard shortcuts like |
Configuration
Tool | Description |
| Adjust typing behavior |
| Set writing style |
| Toggle approval mode on/off |
| View current configuration, pending text, and active window |
Window Management
Tool | Description |
| See which window is focused |
| Focus a window by partial title match |
| Verify the right window is focused before typing |
| List all visible windows |
Style Profiles
Tool | Description |
| Begin style cloning questionnaire |
| Answer a calibration question |
| List saved profiles |
| Delete a profile |
Diagnostics
Tool | Description |
| Check all dependencies, clipboard, display, and window management |
| View recent action history |
Approval Mode
By default, Claude Typer requires your approval before typing anything. When you ask Claude to type text:
Claude generates the text and calls
type_text()The text is staged (not typed yet) and shown to you as a preview
You review it and say "looks good" → Claude calls
approve_pending()→ typing beginsOr say "change X" → Claude calls
reject_pending()and regenerates
You can turn this off with configure_approval(false) or via the GUI checkbox.
Settings GUI
The settings window launches automatically alongside the MCP server. It provides:
WPM slider (30–150)
Consistency slider (0.0–1.0)
Human-Like Mode toggle
Require Approval toggle
Always On Top toggle
Style preset dropdown
Grade level slider (1–16)
Profile selector
Status indicator with health info
Active window display (updates every 2s)
Scrollable action log with timestamps
Changes in the GUI are applied immediately and persisted to config.json.
Human-Like Typing Mode
When enabled, the typing engine simulates realistic human behavior:
Digraph acceleration — Common letter pairs (th, er, in, etc.) are typed faster
Word boundary pauses — Small hesitation at the start of new words
Thinking pauses — Occasional longer pauses mid-sentence
Sentence boundary pauses — Natural pauses after periods and question marks
Speed drift — WPM gradually fluctuates ±15% over time
Log-normal distribution — Occasional longer pauses, rarely faster-than-normal bursts
Safety Features
Failsafe: Move your mouse to any screen corner to abort typing immediately (pyautogui built-in)
Emergency stop: Call
stop_typing()to cancel mid-typeTyping lock: Prevents concurrent typing operations from conflicting
Clipboard preservation: Original clipboard contents are restored after paste operations
File Structure
claude-typer/
├── server.py # MCP server entry point
├── typing_engine.py # Keystroke simulation and timing
├── style_engine.py # Writing style presets and profiles
├── calibration.py # Style cloning questionnaire
├── gui.py # Settings GUI (tkinter)
├── window_manager.py # Window detection and focusing
├── config.json # Persisted settings
├── claude_typer.log # Log file (created on first run)
├── profiles/ # Custom style profiles
├── requirements.txt # Python dependencies
└── README.md # This fileTroubleshooting
Run health_check() first — it will identify most issues automatically.
Claude Desktop doesn't see the tools:
Verify the path in
claude_desktop_config.jsonis correct and uses double backslashesMake sure Python is on your PATH, or use the full path to
python.exeRestart Claude Desktop completely (check system tray)
Typing goes to the wrong window:
Use
check_window("Google Docs")to verify the right window is focusedUse
focus_window_by_title()to target the correct app before typing
Typing stops mid-way or behaves oddly:
Check
get_action_log()for error detailsEnsure no other program is grabbing keyboard focus
The failsafe may have triggered — check if your mouse is near a screen corner
GUI doesn't appear:
The GUI runs in a background thread; it may take a moment to appear
Check
claude_typer.logfor error messagesEnsure tkinter is installed (comes with standard Python)
Microsoft Store version of Claude Desktop:
The config file path differs from the standard install
Look in
%LOCALAPPDATA%\Packages\AnthropicPBC.claude_*\LocalCache\Roaming\Claude\
License
MIT
This server cannot be installed
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
- 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/DoperDodge/Claude-Typer-MCP-Extention'
If you have feedback or need assistance with the MCP directory API, please join our Discord server