Handwrytten MCP Server
OfficialClick on "Deploy 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., "@Handwrytten MCP ServerSend a birthday card to Alice at 456 Oak Ave"
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.
Handwrytten MCP Server
An MCP (Model Context Protocol) server that lets AI assistants like Claude send real handwritten notes through Handwrytten — robots with real pens writing your messages on physical cards, mailed to your recipients.
What can it do?
What can't it do!
Once connected, your AI assistant can:
Send handwritten notes — single or bulk, with per-recipient customization
Browse cards and fonts — discover available stationery templates and handwriting styles
Manage addresses — save, update, and delete recipient and sender addresses
Create custom cards — upload images, add logos and text, design your own cards
Include gift cards and inserts — attach gift cards or marketing inserts to orders
Manage QR codes — create and attach QR codes to custom cards
Track orders — check order status, view history, get tracking info
Related MCP server: SolMail MCP
Quick Start
Option A: Remote Server (OAuth — recommended)
OAuth setup: Claude keeps /mcp; ChatGPT uses /chatgpt/mcp. Each advertises its own automatic OAuth registration using a separate backend client credential pair. See OpenAI and OAuth setup for environment variables, callbacks, and compatibility limitations.
ChatGPT
Connect to https://mcp.handwrytten.com/chatgpt/mcp using OAuth; automatic registration selects the ChatGPT client. Add the exact callback displayed by ChatGPT to that client's backend redirect allowlist. Full instructions: OPENAI-SETUP.md.
The Handwrytten MCP server supports OAuth 2.0 authentication. Connect directly from Claude.ai, Claude Desktop, or Claude Code — no API key needed. You'll sign in with your Handwrytten account when prompted.
Claude.ai
Add Handwrytten from the MCP integrations menu — no installation required.
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"handwrytten": {
"url": "https://mcp.handwrytten.com/mcp"
}
}
}Config file locations:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
Claude Code
claude mcp add handwrytten --transport http https://mcp.handwrytten.com/mcpOption B: Remote Server (API Key — third-party clients & gateways)
The hosted server also accepts your Handwrytten API key directly — the recommended path for MCP gateways (such as Runlayer), custom agents, and other integrations where an interactive OAuth sign-in isn't practical.
Get your API key from the API settings page.
Point your client at
https://mcp.handwrytten.com/mcpand send the key on every request using either header format:
# Preferred: dedicated API key header
X-API-Key: your_api_key_here
# Also accepted: raw Authorization header (no "Bearer" prefix)
Authorization: your_api_key_hereNote: Authorization: Bearer <token> is reserved for OAuth access tokens — don't send your API key with a Bearer prefix.
Runlayer example: add a remote MCP server with URL https://mcp.handwrytten.com/mcp (HTTP transport) and configure a custom header X-API-Key with your Handwrytten API key (or a secret reference, e.g. 1Password).
Security tip: API keys are long-lived credentials. Store them in a secrets manager and regenerate your key from the API settings page if it's ever exposed.
Option C: Local Server (API Key)
For development or self-hosted setups, you can run the server locally with an API key.
Sign up at handwrytten.com and get your API key from the API settings page.
Install and configure:
npm install -g @handwrytten/mcp-serverClaude Desktop (local)
{
"mcpServers": {
"handwrytten": {
"command": "handwrytten-mcp",
"env": {
"HANDWRYTTEN_API_KEY": "your_api_key_here"
}
}
}
}Claude Code (local)
claude mcp add handwrytten -- env HANDWRYTTEN_API_KEY=your_api_key_here handwrytten-mcpStart Using It
Just ask your AI assistant naturally:
"Send a thank-you card to Jane Doe at 123 Main St, Phoenix, AZ 85001"
"What cards do you have available for birthdays?"
"Send handwritten notes to everyone in this CSV file"
Available Tools
Orders (Core)
Tool | Description |
| Send a handwritten note — the primary tool. Supports single and bulk sends. |
| Get order details including status and tracking |
| List orders with pagination |
Cards & Fonts
Tool | Description |
| Browse all available card/stationery templates |
| Get details of a specific card |
| Get card categories (Thank You, Birthday, etc.) |
| Browse handwriting styles for orders |
| Browse printed fonts for custom card text zones |
Address Book
Tool | Description |
| List saved recipient addresses |
| Save a new recipient address |
| Update an existing recipient |
| Delete recipient address(es) |
| List saved sender (return) addresses |
| Save a new sender address |
| Delete sender address(es) |
| Get supported countries |
| Get states/provinces for a country |
Gift Cards & Inserts
Tool | Description |
| Browse gift card products with denominations |
| Browse card inserts (business cards, flyers) |
Custom Cards
Tool | Description |
| Get available card dimensions |
| Upload a cover or logo image |
| Check image quality requirements |
| List uploaded images |
| Delete an uploaded image |
| Create a custom card design |
| Get custom card details |
| Delete a custom card |
QR Codes
Tool | Description |
| List account QR codes |
| Create a new QR code |
| Delete a QR code |
| Browse decorative QR code frames |
Basket (Advanced)
Tool | Description |
| Add an order to the basket |
| Submit the basket for processing |
| List items in the basket |
| Count basket items |
| Remove a basket item |
| Clear the basket |
| List previously submitted baskets |
Account
Tool | Description |
| Get account profile and credits balance |
| List saved handwriting signatures |
Example Conversations
Simple send:
You: "Send a thank-you note to John Smith at 456 Oak Ave, Tempe AZ 85281 from our company" Claude: calls list_cards → list_fonts → send_order
Bulk send:
You: "Send birthday cards to all these people: [list/CSV]" Claude: calls list_cards → list_fonts → send_order with array of recipients
Custom card:
You: "Create a custom card with our company logo and send it to our top 5 clients" Claude: calls upload_custom_image → create_custom_card → list_recipients → send_order
Development
git clone https://github.com/handwrytten/handwrytten-mcp-server
cd handwrytten-mcp-server
npm install
npm run buildTest locally in stdio mode (API key auth):
HANDWRYTTEN_API_KEY=your_key node dist/index.jsRun the HTTP server with OAuth (clients supply their own OAuth credentials):
MCP_SERVER_URL=http://localhost:3000 \
MCP_TRANSPORT=http \
node dist/index.jsCaller-supplied API keys remain supported. To deliberately enable a shared environment API key for a private HTTP deployment, also set MCP_ALLOW_API_KEY_FALLBACK=true. Local stdio API-key behavior is unchanged.
Built On
Handwrytten TypeScript SDK — the official SDK this server wraps
Model Context Protocol SDK — the MCP framework
Privacy & Support
Privacy Policy: handwrytten.com/privacy-policy
Support: handwrytten.com/contact or email mcp@handwrytten.com
License
MIT
Submission data-handling draft: PRIVACY-DISCLOSURE.md. Deployment and preview checks: OPENAI-SETUP.md.
Related MCP Connectors
Let AI agents prepare, review, pay for, and send real letters and postcards.
Let AI agents prepare, review, pay for, and send real letters and postcards.
Send personalized physical gifts and letters to business contacts from AI agents
Send real pen-written letters, cards and postcards: quote, preview, order and track by mail.
Related MCP Servers
- AlicenseNot gradedqualityNot gradedmaintenanceEnables AI assistants to create, design, and send physical postcards directly through the PostcardAI platform. It provides comprehensive tools for managing contacts, generating postcard designs from prompts, and tracking mailing delivery metrics.-
- AlicenseAqualityDmaintenanceEnables AI agents to send physical letters and postcards to over 200 countries using Solana cryptocurrency for payment. It provides tools for generating mail quotes, managing wallet balances, and automating physical correspondence directly through the Model Context Protocol.437 npm1MIT
- AlicenseAqualityDmaintenanceSend real physical postcards worldwide via AI agents. Supports single and bulk send (up to 500 recipients), balance checking, delivery tracking, and volume pricing from $0.72/card.54 npm5MIT
- FlicenseNot gradedqualityCmaintenanceEnables AI assistants to prepare, price, review, pay for, and send real physical letters and postcards via a hosted MCP server.-