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

@textavia/mcp

v0.1.2

Published

MCP server exposing Textavia tools generated from the shared registry.

Readme

Textavia MCP

@textavia/mcp exposes the Textavia developer tool registry through the Model Context Protocol. It lets MCP-capable agents call local Textavia utilities for JSON, Base64, CSV, Markdown tables, regex checks, hashing, text cleanup, case conversion, random values, timestamps, and privacy scrubbing.

The MCP package is a thin stdio server over the same registry and executors used by the textavia / txv CLI. It is designed for agents that need dependable local text and data transformations without copying user data into a web app.

Quick Start

npx @textavia/mcp

Or install it globally:

npm install -g @textavia/mcp
textavia-mcp

Use this MCP server config in clients that accept stdio server definitions:

{
  "mcpServers": {
    "textavia": {
      "command": "npx",
      "args": ["-y", "@textavia/mcp"]
    }
  }
}

If you install globally, you can use the binary directly:

{
  "mcpServers": {
    "textavia": {
      "command": "textavia-mcp"
    }
  }
}

Registry Metadata

MCP Registry server name:

io.github.caravaca-labs/textavia-mcp

Package:

@textavia/mcp

Transport:

stdio

Repository:

https://github.com/Caravaca-Labs/textavia-cli

What It Exposes

MCP tool names are generated from Textavia registry IDs. The package keeps the Textavia namespace and uses underscore-separated operation names:

| MCP tool | Backing registry tool | Typical use | | --- | --- | --- | | textavia.json_format | dev.json.format | Pretty-print JSON from text or a file. | | textavia.json_validate | dev.json.validate | Validate JSON and return diagnostics. | | textavia.json_repair | dev.json.repair | Repair common malformed JSON output. | | textavia.json_to_types | dev.json.to-types | Generate TypeScript types from sample JSON. | | textavia.base64_encode | encoding.base64.encode | Encode text or bytes as Base64. | | textavia.base64_decode | encoding.base64.decode | Decode Base64 to text or bytes. | | textavia.csv_to_json | data.csv.to-json | Convert CSV text to JSON rows. | | textavia.markdown_table_to_json | data.markdown.table-to-json | Convert Markdown tables to JSON. | | textavia.regex_test | dev.regex.test | Test a JavaScript regex against input text. | | textavia.text_clean | text.clean | Collapse whitespace and normalize pasted text. | | textavia.text_privacy_scrub | text.privacy-scrub | Redact emails, phones, URLs, IPs, and similar data. | | textavia.case_slug | case.slug | Create URL slugs from titles or labels. | | textavia.hash_sha256 | dev.hash.sha256 | Compute SHA-256 digests for text or files. | | textavia.random_uuid | random.uuid | Generate UUIDs. |

Each MCP tool accepts the same argument shape:

{
  "input": "text to process",
  "file": "optional/path/to/file.txt",
  "options": {
    "toolSpecificOption": "value"
  }
}

Use input for direct text. Use file when the agent should read from disk. Options are validated against each tool's registry schema.

Example Agent Calls

Format JSON:

{
  "input": "{\"name\":\"Ada\",\"tools\":[\"Textavia\"]}",
  "options": {
    "indent": 2
  }
}

Convert CSV to JSON:

{
  "input": "name,role\nAda,engineer",
  "options": {
    "delimiter": ","
  }
}

Test a regex:

{
  "input": "Textavia 2026",
  "options": {
    "pattern": "\\d+",
    "flags": "g"
  }
}

Scrub private text:

{
  "input": "Email [email protected] or call 555-123-4567"
}

Safety Model

  • Standard tools run locally in the MCP server process.
  • The published stdio command uses local-first defaults.
  • Network-required tools are hidden by default.
  • Tool arguments are parsed with Zod schemas before execution.
  • File input is explicit through the MCP file argument.
  • The package does not include postinstall scripts.
  • The package does not require telemetry to run.

The library API exports createTextaviaMcpServer, buildMcpRegistry, and executeMcpTool for hosts that want tighter filtering, category selection, network gating, filesystem policy, or maximum input size limits.

Online Tools

Prefer a browser UI or want to inspect a matching web tool? Start here:

Repo Docs

Related Packages

  • textavia - CLI package with textavia and txv binaries, plus bundled agent skills.
  • @textavia/mcp - this MCP stdio server package.
  • @textavia/core - registry contracts and shared execution types.
  • @textavia/plugin-standard - built-in local-first tools exposed by the CLI and MCP server.