Integration
Model Context Protocol
de-ASCII exposes tools, resources, and prompts so agents can reconstruct images from ASCII art directly. It speaks JSON-RPC 2.0 over HTTP at /api/mcp and is registered on the PlatPhorm MCP Hub.
Endpoint
https://deascii.platphormnews.com/api/mcpDescriptor
https://deascii.platphormnews.com/.well-known/mcp.jsonClient configuration
Add de-ASCII to any MCP-compatible client (Claude Desktop, Cursor, etc.):
{
"mcpServers": {
"de-ascii": {
"type": "http",
"url": "https://deascii.platphormnews.com/api/mcp"
}
}
}List capabilities
curl -X POST https://deascii.platphormnews.com/api/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
curl -X POST https://deascii.platphormnews.com/api/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"resources/list"}'
curl -X POST https://deascii.platphormnews.com/api/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":3,"method":"prompts/list"}'Available tools
reconstruct_imageReconstruct a bounded PNG image from arbitrary pasted ASCII, ANSI terminal art, Unicode Braille/block/box art, or ASCII converter output. Colored sources reconstruct to color; monochrome sources reconstruct to grayscale or deterministic colorization by glyph density. Hybrid/glyph modes preserve bitmap text, digits, Braille dots, box glyphs, and icon texture.
reconstruct_from_ascii_serviceCall the trusted ASCII converter at ascii.platphormnews.com using JSON or NDJSON streaming transport, then reconstruct the resulting ASCII as a PNG image.
get_healthHealth check with uptime, version, and service status.
get_infoGet info about de-ASCII — features, character sets, endpoints, and network links.
list_charsetsList all available character sets with descriptions.
subscribe_webhookRegister a webhook URL to receive event notifications (reconstruction, health events). Requires PLATPHORM_API_KEY.
list_webhooksList currently registered webhooks.
register_siteRegister this site with the central PlatPhorm MCP Hub. Requires PLATPHORM_API_KEY.
Resources
deascii://service/infode-ASCII service metadata, endpoints, and network links.
deascii://charsetsSupported character ramps and descriptions.
deascii://reconstruction/optionsDeterministic renderer controls, bounds, and defaults.
deascii://ai/statusPublic-safe AI enhancement model and auth readiness.
deascii://network/integrationPlatPhorm root graph, MCP gateway, and ASCII sibling integration endpoints.
Prompts
reconstruct-from-asciiPrepare a high-fidelity de-ASCII reconstruction request.
Call a tool
curl -X POST https://deascii.platphormnews.com/api/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "reconstruct_image",
"arguments": { "ascii": " .:-=+*#%@", "charset": "auto" }
}
}'