INDIVIDUAL MCP TOOL
mwt_check_generation_status
Check the generation status of a writing profile: generating (in progress), completed (ready), or failed.
LIVE ENDPOINT
https://www.mywritingtwin.com/api/mcp
Connect to this endpoint to inspect the live schema for mwt_check_generation_status and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- No write-capable action terms were found; this is not proof that invocation has no side effects.
Parent server
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.mywritingtwin]
url = "https://www.mywritingtwin.com/api/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"mywritingtwin": {
"type": "http",
"url": "https://www.mywritingtwin.com/api/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: mywritingtwin
Remote MCP URL: https://www.mywritingtwin.com/api/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"mywritingtwin": {
"url": "https://www.mywritingtwin.com/api/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"mywritingtwin": {
"type": "http",
"url": "https://www.mywritingtwin.com/api/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "mywritingtwin",
"transport": "streamable-http",
"url": "https://www.mywritingtwin.com/api/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
mwt_analyze— Free style analysis preview.mwt_list_profiles— List all writing profiles for the authenticated user.mwt_get_profile— Retrieve a writing profile by ID.mwt_create_profile— Create a full Writing DNA profile from the user's writing.mwt_import_samples— Add the user's writing samples to their MyWritingTwin account (the collection a Writing Profile is built from).mwt_delete_profile— DESTRUCTIVE: permanently delete a writing profile by ID — this cannot be undone.mwt_create_checkout— Create a Stripe checkout link so the user can purchase a plan (starter or pro).mwt_claim_credentials— Redeem the claim_token returned by mwt_create_checkout (guest checkout) to receive the buyer's API key directly in this conversation — no email step.