← frontsail.app

INDIVIDUAL MCP TOOL

render_dxf

Render a DXF drawing to a PNG image you can look at.

frontsail.appnone authenticationAvailability not checked

LIVE ENDPOINT

https://aspicio-api.frontsail.app/mcp

No auth detected

Connect to this endpoint to inspect the live schema for render_dxf 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

frontsail.app

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.aspicio]
url = "https://aspicio-api.frontsail.app/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "aspicio": {
      "type": "http",
      "url": "https://aspicio-api.frontsail.app/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: aspicio
Remote MCP URL: https://aspicio-api.frontsail.app/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": {
    "aspicio": {
      "url": "https://aspicio-api.frontsail.app/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "aspicio": {
      "type": "http",
      "url": "https://aspicio-api.frontsail.app/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "aspicio",
  "transport": "streamable-http",
  "url": "https://aspicio-api.frontsail.app/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • describe_dxf — Return a structured JSON summary of a DXF drawing — units, bounding box, layers (with the color actually drawn), per-type entity counts, and any skipped/unsupported types.
  • describe_pdf — Return a structured JSON summary of a PDF drawing — units (points), bounding box, layers, per-type entity counts, the text it contains, and what was skipped (images, shadings, transparency).
  • render_pdf — Render a PDF drawing's vector content to a PNG you can look at.
  • describe_doc — Return a structured JSON summary of a drawing in any supported format (DXF or PDF), detected from its bytes rather than its name.
  • render_doc — Render a drawing in any supported format (DXF or PDF) to a PNG you can look at, detected from its bytes rather than its name.
  • view_dxf — Open an interactive viewer the user can pan, zoom, and toggle layers in (renders in-chat on MCP Apps-capable hosts).
  • load_dxf_for_viewer — Internal: returns DXF bytes (base64) for the in-chat viewer.