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

@tailor-platform/tailor-mcp

v0.0.2

Published

Installer for tailorctl command-line tool

Downloads

50

Readme

@tailor-platform/tailor-mcp

The npm package @tailor-platform/tailor-mcp is a tool for automatically installing the tailorctl command-line utility, with a focus on MCP (Model Context Protocol) server functionality.

What is Tailor Platform?

Tailor Platform is a headless ERP platform that enables building composable applications:

  • Low-code Development: Build applications without extensive coding, with automatic GraphQL interface generation
  • LLM-friendly: Create data models, business logic, and workflows without writing code, leveraging the power of large language models
  • Enterprise-Ready: Build mission-critical core business applications that can scale with your organization
  • Composable Architecture: Develop modular applications that can be assembled and reassembled to meet changing business needs

Getting Started with Tailor Platform

Getting started with Tailor Platform is simple:

  1. Create an account: The only prerequisite is to create an account at console.tailor.tech

  2. Configure applications via MCP: Once you have an account, you can configure your applications through the MCP server

  3. Access via GraphQL: Your applications are accessible via GraphQL - you can use:

    • The GraphQL Playground for testing queries
    • Any GraphQL client for building applications
  4. Monitor via Console: All configuration and application details can be viewed through the web UI at console.tailor.tech

Note: MCP server does not support managing application authentication settings or secrets. Please use the Console, Tailorctl commands, or Terraform to configure these settings.

Installation

npm install @tailor-platform/tailor-mcp

Features

  • Automatically installs the appropriate tailorctl binary for your platform
  • Supports all major platforms:
    • macOS (x86_64, arm64)
    • Linux (x86_64, arm64)
    • Windows (x86_64, arm64)
  • Provides easy access to MCP server functionality

Authentication

Before using the MCP server functionality, you need to authenticate:

npx tailorctl auth login

By default, credentials are stored in the .tailorctl directory in your HOME directory. If you don't want to use these stored credentials, or when using certain MCP clients like Cline that don't support this authentication method, you'll need to use the TAILOR_TOKEN environment variable:

You can obtain a Personal Access Token (PAT) by following the instructions at https://docs.tailor.tech/tailorctl/auth/pat.

MCP Server Configuration

Using with LLM Clients (Claude, Cline, etc.)

Configure MCP servers using a JSON configuration format to connect with LLM clients:

{
  "mcpServers": {
    "tailor": {
      "command": "npx tailorctl",
      "args": [
        "mcp"
      ],
      "env": {
        "TAILOR_TOKEN": "************" // Your Tailor Platform authentication token
      }
    }
  }
}

This configuration:

  • Defines an MCP server named "tailor"
  • Uses the tailorctl command with the mcp argument
  • Authenticates using the TAILOR_TOKEN environment variable

Starting via HTTP Transport

To start an MCP server with HTTP transport:

npx tailorctl mcp --transport=http --listen=0.0.0.0:9000

This command:

  • Starts the MCP server using HTTP protocol
  • Listens on all interfaces (0.0.0.0) on port 9000
  • Makes the server accessible to other machines on your network

License

ISC