Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"com-textarttools-textarttools-mcp": {
"args": [
"-y",
"@anthropic/mcp-remote"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Transform text with Unicode styles and create ASCII art banners. A production-ready Model Context Protocol (MCP) server deployed globally on Cloudflare Workers.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@anthropic/mcp-remote' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @anthropic/mcp-remote against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in design / writing
MCP server for accessing Figma plugin console logs and screenshots via Cloudflare Workers or local mode
Official Miro MCP server - Supports context to code and creating diagrams, docs, and data tables.
A mcp server to allow LLMS gain context about shadcn ui component structure,usage and installation,compaitable with react,svelte 5,vue & React Native
AI image generation and editing with prompt optimization and quality presets. Powered by Nano Banana
MCP Security Weekly
Get CVE alerts and security updates for com.textarttools/textarttools-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
🌐 Live Server: https://mcp.textarttools.com
Transform text with Unicode styles and create ASCII art banners. A production-ready Model Context Protocol (MCP) server deployed globally on Cloudflare Workers.

Install the MCP remote proxy:
npm install -g @anthropic/mcp-remote
Add to your Claude Desktop config (claude_desktop_config.json):
{
"mcpServers": {
"textarttools": {
"command": "mcp-server",
"args": ["https://mcp.textarttools.com/sse"]
}
}
}
Restart Claude Desktop and start using text styling tools!
Try the live API directly:
# Transform text to bold Unicode style
curl -X POST https://mcp.textarttools.com/sse \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "unicode_style_text",
"arguments": {
"text": "Hello World",
"style": "bold"
}
}
}'
# Create ASCII art banner
curl -X POST https://mcp.textarttools.com/sse \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "ascii_art_text",
"arguments": {
"text": "Hello",
"font": "Big"
}
}
}'
The server provides 7 MCP tools:
Unicode Text Styling:
unicode_style_text - Transform text with any of 23 Unicode styleslist_available_styles - Get all available styles with examplespreview_styles - Preview text in multiple stylesget_style_info - Get detailed style information and compatibilityASCII Art Banners:
ascii_art_text - Generate stylized text banners with 322+ fontslist_figlet_fonts - Get all available fonts from R2 storagepreview_figlet_fonts - Preview text in multiple fontsVisit https://mcp.textarttools.com/ for complete API documentation.
Want to run your own instance or contribute?
# Clone the repository
git clone https://github.com/humanjesse/textarttools-mcp.git
cd textarttools-mcp
# Install dependencies
npm install
# Create local environment file
cp .dev.vars.example .dev.vars
# Edit .dev.vars with your development values
# Start development server
npm run dev
# Test locally (server runs at http://localhost:8788)
curl -X POST http://localhost:8788/sse \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
npm run dev # Start development server
npm run build # Build for production
npm run deploy # Deploy to Cloudflare Workers (requires auth)
npm run lint # Check code quality
npm run typecheck # Validate TypeScript