npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@aspicio/mcp

v0.13.0

Published

MCP server exposing DXF and PDF drawings to AI agents: facts, renders, in-chat viewer.

Readme

@aspicio/mcp

An MCP server that lets AI agents open, inspect, and render DXF/CAD drawings and vector PDFs — built on the Aspicio viewer's headless pipeline. Local stdio server, no hosted dependency. A hosted endpoint and docs live at aspicio.frontsail.app/mcp; the interactive viewer at aspicio.frontsail.app.

Tools

Three pairs: one per format, plus one that detects the format from the bytes. Every describe_* returns structured JSON — units, bounds/size, entity and segment counts, layers with the color actually drawn, per-type counts, and what was skipped. Every render_* returns a PNG (width 64–4000, default 1200).

| Tool | Reads | | ----------------------------- | ------------------------------- | | describe_dxf / render_dxf | DXF only | | describe_pdf / render_pdf | PDF only | | describe_doc / render_doc | Either, detected from the bytes |

Use a describe_* for structural questions (layers, counts, dimensions, units) and a render_* for visual ones. Handing a typed tool the wrong format tells you which tool to use instead.

A PDF render shows vector line work and text, not a page facsimile: images, shadings, and transparency are reported as skipped rather than drawn. PDF measurements are in points, because a PDF carries no drawing scale.

All six accept source as an http(s) URL or a local file path; DXF may also be passed as inline text. A PDF is binary, so it needs a path or a URL.

Install

Claude Code / Claude Desktop:

claude mcp add aspicio -- npx -y @aspicio/mcp

Codex:

codex mcp add aspicio -- npx -y @aspicio/mcp

Any other MCP client: register the stdio command npx -y @aspicio/mcp.

Prefer a one-step install with bundled skills? The aspicio plugin wires this server plus usage skills into Claude Code and Codex.

Safety

URL sources are fetched with a private-host guard (loopback, RFC1918, IPv6 local ranges — revalidated on every redirect hop) and an 8 MB cap, so a model acting on untrusted input can't turn the server into a LAN/localhost probe.

Notes

  • PNG rendering uses @resvg/resvg-js (native prebuilds; Node ≥ 18).
  • Unsupported entity types are counted and reported in the summary, never fatal — see the core README for the full support matrix.